diff --git a/corpus/commands.txt b/corpus/commands.txt index 0ad5ebf..bf8b322 100644 --- a/corpus/commands.txt +++ b/corpus/commands.txt @@ -90,13 +90,11 @@ cat a b > /dev/null --- (program - (command - (command_name (word)) + (redirected_statement + (command (command_name (word))) (file_redirect (word))) - (command - (command_name (word)) - (word) - (word) + (redirected_statement + (command (command_name (word)) (word) (word)) (file_redirect (word))) (command (file_redirect (file_descriptor) (word)) @@ -117,15 +115,14 @@ JS --- (program - (command - (command_name (word)) - (heredoc_redirect (heredoc_start)) - (heredoc_body)) - (command - (command_name (word)) - (word) - (heredoc_redirect (heredoc_start)) - (heredoc_body))) + (redirected_statement + (command (command_name (word))) + (heredoc_redirect (heredoc_start))) + (heredoc_body) + (redirected_statement + (command (command_name (word)) (word)) + (heredoc_redirect (heredoc_start))) + (heredoc_body)) =============================== Heredocs with variables @@ -140,12 +137,12 @@ exit --- (program - (command - (command_name (word)) - (heredoc_redirect (heredoc_start)) - (heredoc_body - (simple_expansion (variable_name)) - (expansion (variable_name)))) + (redirected_statement + (command (command_name (word))) + (heredoc_redirect (heredoc_start))) + (heredoc_body + (simple_expansion (variable_name)) + (expansion (variable_name))) (command (command_name (word)))) ================================= @@ -161,13 +158,13 @@ wc -l $tmpfile --- (program - (command - (command_name (word)) - (heredoc_redirect (heredoc_start)) - (heredoc_body - (simple_expansion (variable_name)) - (simple_expansion (variable_name)) - (expansion (variable_name)))) + (redirected_statement + (command (command_name (word))) + (heredoc_redirect (heredoc_start))) + (heredoc_body + (simple_expansion (variable_name)) + (simple_expansion (variable_name)) + (expansion (variable_name))) (command (command_name (word)) (word) diff --git a/corpus/literals.txt b/corpus/literals.txt index 36b785b..37fdc53 100644 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -200,9 +200,10 @@ echo abc > >(wc -c) (process_substitution (command (command_name (word)) (word)) (command (command_name (word)) (word)))) - (command - (command_name (word)) - (word) + (redirected_statement + (command + (command_name (word)) + (word)) (file_redirect (process_substitution (command (command_name (word)) (word)))))) diff --git a/corpus/statements.txt b/corpus/statements.txt index eaf15c3..17d6f67 100644 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -64,10 +64,11 @@ done < <(cat file) --- (program - (while_statement - (command (command_name (word)) (word)) - (do_group - (command (command_name (word)) (simple_expansion (variable_name)))) + (redirected_statement + (while_statement + (command (command_name (word)) (word)) + (do_group + (command (command_name (word)) (simple_expansion (variable_name))))) (file_redirect (process_substitution (command (command_name (word)) (word)))))) @@ -312,9 +313,9 @@ function do_yet_another_thing { (function_definition (word) (compound_statement (command (command_name (word)) (word)))) - (function_definition + (redirected_statement (function_definition (word) - (compound_statement (command (command_name (word)) (word))) + (compound_statement (command (command_name (word)) (word)))) (file_redirect (file_descriptor) (word)))) ========================================= @@ -429,3 +430,30 @@ unsetenv -f ONE TWO (unset_command (variable_name)) (unset_command (string (simple_expansion (variable_name)))) (unset_command (word) (variable_name) (variable_name))) + +=========================================== +Compound statements +=========================================== + +a () { + ls || { echo "b"; return 0; } + echo c +} + +{ echo "a" + echo "b" +} >&2 + +--- + +(program + (function_definition (word) (compound_statement + (list + (command (command_name (word))) + (compound_statement + (command (command_name (word)) (string)) + (command (command_name (word)) (word)))) + (command (command_name (word)) (word)))) + (redirected_statement + (compound_statement (command (command_name (word)) (string)) (command (command_name (word)) (string))) + (file_redirect (word)))) diff --git a/grammar.js b/grammar.js index 0076136..f58ca44 100644 --- a/grammar.js +++ b/grammar.js @@ -52,12 +52,14 @@ module.exports = grammar({ _terminated_statement: $ => seq( $._statement, + optional($.heredoc_body), $._terminator ), // Statements _statement: $ => choice( + $.redirected_statement, $.variable_assignment, $.command, $.declaration_command, @@ -72,15 +74,26 @@ module.exports = grammar({ $.pipeline, $.list, $.subshell, + $.compound_statement, $.function_definition ), _statements: $ => seq( repeat($._terminated_statement), $._statement, + optional($.heredoc_body), optional($._terminator) ), + redirected_statement: $ => prec(-1, seq( + $._statement, + repeat1(choice( + $.file_redirect, + $.heredoc_redirect, + $.herestring_redirect + )) + )), + for_statement: $ => seq( 'for', $._simple_variable_name, @@ -111,13 +124,7 @@ module.exports = grammar({ while_statement: $ => seq( 'while', $._terminated_statement, - $.do_group, - repeat(choice( - $.file_redirect, - $.heredoc_redirect, - $.herestring_redirect - )), - optional($.heredoc_body) + $.do_group ), do_group: $ => seq( @@ -188,8 +195,7 @@ module.exports = grammar({ seq('function', $.word, optional(seq('(', ')'))), seq($.word, '(', ')') ), - $.compound_statement, - optional($.file_redirect) + $.compound_statement ), compound_statement: $ => seq( @@ -232,12 +238,7 @@ module.exports = grammar({ seq('[', $._expression, ']'), seq('[[', $._expression, ']]'), seq('((', $._expression, '))') - ), - repeat(choice( - $.file_redirect, - $.heredoc_redirect, - $.herestring_redirect - )) + ) ), declaration_command: $ => prec.left(seq( @@ -269,13 +270,7 @@ module.exports = grammar({ choice('=~', '=='), choice($._literal, $.regex) ) - )), - repeat(choice( - $.file_redirect, - $.heredoc_redirect, - $.herestring_redirect - )), - optional($.heredoc_body) + )) )), command_name: $ => $._literal, diff --git a/script/known-failures.txt b/script/known-failures.txt index ec77d16..8c634a6 100644 --- a/script/known-failures.txt +++ b/script/known-failures.txt @@ -1,28 +1,20 @@ examples/bash-it/plugins/available/git.plugin.bash examples/bash-it/plugins/available/extract.plugin.bash examples/bash-it/plugins/available/go.plugin.bash -examples/bash-it/install.sh examples/bash-it/completion/available/svn.completion.bash examples/bash-it/completion/available/docker-compose.completion.bash -examples/bash-it/completion/available/gh.completion.bash examples/bash-it/completion/available/drush.completion.bash -examples/bash-it/completion/available/hub.completion.bash examples/bash-it/completion/available/docker-machine.completion.bash examples/bash-it/completion/available/git.completion.bash examples/bash-it/completion/available/defaults.completion.bash -examples/bash-it/completion/available/packer.completion.bash examples/bash-it/completion/available/docker.completion.bash examples/bash-it/completion/available/tmux.completion.bash examples/bash-it/lib/preexec.bash examples/bash-it/lib/composure.bash -examples/bash-it/test_lib/bats-support/src/output.bash -examples/bash-it/test_lib/bats-assert/src/assert.bash examples/bash-it/themes/hawaii50/hawaii50.theme.bash -examples/bash-it/themes/dulcie/dulcie.theme.bash examples/bash-it/themes/colors.theme.bash examples/bash-it/themes/morris/morris.theme.bash examples/bash-it/themes/powerline/powerline.base.bash -examples/bash-it/themes/base.theme.bash examples/bash-it/themes/brainy/brainy.theme.bash examples/bash-it/themes/nwinkler_random_colors/nwinkler_random_colors.theme.bash examples/bash-it/themes/kitsune/kitsune.theme.bash diff --git a/src/grammar.json b/src/grammar.json index 61a0bea..43a0dee 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -21,6 +21,18 @@ "type": "SYMBOL", "name": "_statement" }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "heredoc_body" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_terminator" @@ -30,6 +42,10 @@ "_statement": { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "redirected_statement" + }, { "type": "SYMBOL", "name": "variable_assignment" @@ -86,6 +102,10 @@ "type": "SYMBOL", "name": "subshell" }, + { + "type": "SYMBOL", + "name": "compound_statement" + }, { "type": "SYMBOL", "name": "function_definition" @@ -106,6 +126,18 @@ "type": "SYMBOL", "name": "_statement" }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "heredoc_body" + }, + { + "type": "BLANK" + } + ] + }, { "type": "CHOICE", "members": [ @@ -120,6 +152,39 @@ } ] }, + "redirected_statement": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_statement" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "file_redirect" + }, + { + "type": "SYMBOL", + "name": "heredoc_redirect" + }, + { + "type": "SYMBOL", + "name": "herestring_redirect" + } + ] + } + } + ] + } + }, "for_statement": { "type": "SEQ", "members": [ @@ -265,38 +330,6 @@ { "type": "SYMBOL", "name": "do_group" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "file_redirect" - }, - { - "type": "SYMBOL", - "name": "heredoc_redirect" - }, - { - "type": "SYMBOL", - "name": "herestring_redirect" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "heredoc_body" - }, - { - "type": "BLANK" - } - ] } ] }, @@ -681,18 +714,6 @@ { "type": "SYMBOL", "name": "compound_statement" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "file_redirect" - }, - { - "type": "BLANK" - } - ] } ] }, @@ -877,26 +898,6 @@ ] } ] - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "file_redirect" - }, - { - "type": "SYMBOL", - "name": "heredoc_redirect" - }, - { - "type": "SYMBOL", - "name": "herestring_redirect" - } - ] - } } ] }, @@ -1060,38 +1061,6 @@ } ] } - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "file_redirect" - }, - { - "type": "SYMBOL", - "name": "heredoc_redirect" - }, - { - "type": "SYMBOL", - "name": "herestring_redirect" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "heredoc_body" - }, - { - "type": "BLANK" - } - ] } ] } diff --git a/src/parser.c b/src/parser.c index 179f330..81659fd 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,8 +6,8 @@ #endif #define LANGUAGE_VERSION 9 -#define STATE_COUNT 2882 -#define SYMBOL_COUNT 153 +#define STATE_COUNT 2857 +#define SYMBOL_COUNT 154 #define ALIAS_COUNT 2 #define TOKEN_COUNT 97 #define EXTERNAL_TOKEN_COUNT 13 @@ -112,62 +112,63 @@ enum { anon_sym_AMP = 96, sym_program = 97, sym__terminated_statement = 98, - sym_for_statement = 99, - sym_c_style_for_statement = 100, - sym_while_statement = 101, - sym_do_group = 102, - sym_if_statement = 103, - sym_elif_clause = 104, - sym_else_clause = 105, - sym_case_statement = 106, - sym_case_item = 107, - sym_last_case_item = 108, - sym_function_definition = 109, - sym_compound_statement = 110, - sym_subshell = 111, - sym_pipeline = 112, - sym_list = 113, - sym_negated_command = 114, - sym_test_command = 115, - sym_declaration_command = 116, - sym_unset_command = 117, - sym_command = 118, - sym_command_name = 119, - sym_variable_assignment = 120, - sym_subscript = 121, - sym_file_redirect = 122, - sym_heredoc_redirect = 123, - sym_heredoc_body = 124, - sym_herestring_redirect = 125, - sym__expression = 126, - sym_binary_expression = 127, - sym_unary_expression = 128, - sym_postfix_expression = 129, - sym_parenthesized_expression = 130, - sym_concatenation = 131, - sym_string = 132, - sym_array = 133, - sym_simple_expansion = 134, - sym_string_expansion = 135, - sym_expansion = 136, - sym_command_substitution = 137, - sym_process_substitution = 138, - aux_sym__statements_repeat1 = 139, - aux_sym_for_statement_repeat1 = 140, - aux_sym_while_statement_repeat1 = 141, - aux_sym_if_statement_repeat1 = 142, - aux_sym_case_statement_repeat1 = 143, - aux_sym_case_item_repeat1 = 144, - aux_sym_declaration_command_repeat1 = 145, - aux_sym_unset_command_repeat1 = 146, - aux_sym_command_repeat1 = 147, - aux_sym_command_repeat2 = 148, - aux_sym_heredoc_body_repeat1 = 149, - aux_sym_concatenation_repeat1 = 150, - aux_sym_string_repeat1 = 151, - aux_sym_expansion_repeat1 = 152, - alias_sym_special_variable_name = 153, - alias_sym_word = 154, + sym_redirected_statement = 99, + sym_for_statement = 100, + sym_c_style_for_statement = 101, + sym_while_statement = 102, + sym_do_group = 103, + sym_if_statement = 104, + sym_elif_clause = 105, + sym_else_clause = 106, + sym_case_statement = 107, + sym_case_item = 108, + sym_last_case_item = 109, + sym_function_definition = 110, + sym_compound_statement = 111, + sym_subshell = 112, + sym_pipeline = 113, + sym_list = 114, + sym_negated_command = 115, + sym_test_command = 116, + sym_declaration_command = 117, + sym_unset_command = 118, + sym_command = 119, + sym_command_name = 120, + sym_variable_assignment = 121, + sym_subscript = 122, + sym_file_redirect = 123, + sym_heredoc_redirect = 124, + sym_heredoc_body = 125, + sym_herestring_redirect = 126, + sym__expression = 127, + sym_binary_expression = 128, + sym_unary_expression = 129, + sym_postfix_expression = 130, + sym_parenthesized_expression = 131, + sym_concatenation = 132, + sym_string = 133, + sym_array = 134, + sym_simple_expansion = 135, + sym_string_expansion = 136, + sym_expansion = 137, + sym_command_substitution = 138, + sym_process_substitution = 139, + aux_sym__statements_repeat1 = 140, + aux_sym_redirected_statement_repeat1 = 141, + aux_sym_for_statement_repeat1 = 142, + aux_sym_if_statement_repeat1 = 143, + aux_sym_case_statement_repeat1 = 144, + aux_sym_case_item_repeat1 = 145, + aux_sym_declaration_command_repeat1 = 146, + aux_sym_unset_command_repeat1 = 147, + aux_sym_command_repeat1 = 148, + aux_sym_command_repeat2 = 149, + aux_sym_heredoc_body_repeat1 = 150, + aux_sym_concatenation_repeat1 = 151, + aux_sym_string_repeat1 = 152, + aux_sym_expansion_repeat1 = 153, + alias_sym_special_variable_name = 154, + alias_sym_word = 155, }; static const char *ts_symbol_names[] = { @@ -270,6 +271,7 @@ static const char *ts_symbol_names[] = { [anon_sym_AMP] = "&", [sym_program] = "program", [sym__terminated_statement] = "_terminated_statement", + [sym_redirected_statement] = "redirected_statement", [sym_for_statement] = "for_statement", [sym_c_style_for_statement] = "c_style_for_statement", [sym_while_statement] = "while_statement", @@ -311,8 +313,8 @@ static const char *ts_symbol_names[] = { [sym_command_substitution] = "command_substitution", [sym_process_substitution] = "process_substitution", [aux_sym__statements_repeat1] = "_statements_repeat1", + [aux_sym_redirected_statement_repeat1] = "redirected_statement_repeat1", [aux_sym_for_statement_repeat1] = "for_statement_repeat1", - [aux_sym_while_statement_repeat1] = "while_statement_repeat1", [aux_sym_if_statement_repeat1] = "if_statement_repeat1", [aux_sym_case_statement_repeat1] = "case_statement_repeat1", [aux_sym_case_item_repeat1] = "case_item_repeat1", @@ -725,6 +727,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_redirected_statement] = { + .visible = true, + .named = true, + }, [sym_for_statement] = { .visible = true, .named = true, @@ -889,11 +895,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_for_statement_repeat1] = { + [aux_sym_redirected_statement_repeat1] = { .visible = false, .named = false, }, - [aux_sym_while_statement_repeat1] = { + [aux_sym_for_statement_repeat1] = { .visible = false, .named = false, }, @@ -1788,7 +1794,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '`') ADVANCE(59); if (lookahead == '{') - ADVANCE(77); + ADVANCE(66); if (lookahead == '}') ADVANCE(77); if (lookahead == '\t' || @@ -2057,6 +2063,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(5); END_STATE(); case 96: + if (lookahead == '!') + ADVANCE(3); if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') @@ -2082,9 +2090,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '`') ADVANCE(59); if (lookahead == '{') - ADVANCE(77); + ADVANCE(66); if (lookahead == '}') - ADVANCE(77); + ADVANCE(70); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2107,10 +2115,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(5); END_STATE(); case 98: - if (lookahead == 0) - ADVANCE(1); - if (lookahead == '\n') - ADVANCE(2); if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') @@ -2118,46 +2122,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(8); if (lookahead == '&') - ADVANCE(99); + ADVANCE(73); if (lookahead == '\'') ADVANCE(16); - if (lookahead == ';') - ADVANCE(34); + if (lookahead == '(') + ADVANCE(18); if (lookahead == '<') - ADVANCE(91); + ADVANCE(74); if (lookahead == '>') - ADVANCE(92); + ADVANCE(75); if (lookahead == '[') - ADVANCE(77); + ADVANCE(53); if (lookahead == '\\') - ADVANCE(100); + ADVANCE(99); if (lookahead == ']') ADVANCE(77); if (lookahead == '`') ADVANCE(59); if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') - ADVANCE(67); if (lookahead == '}') ADVANCE(77); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(98); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(101); - if ((lookahead < '&' || lookahead > ')')) + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') - ADVANCE(13); - END_STATE(); - case 100: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2166,30 +2164,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(5); END_STATE(); - case 101: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == '\\') - ADVANCE(4); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(101); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < 'A' || lookahead > ']') && - (lookahead < '_' || lookahead > '}')) - ADVANCE(5); - END_STATE(); - case 102: + case 100: if (lookahead == 0) ADVANCE(1); if (lookahead == '\n') @@ -2207,15 +2182,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(34); if (lookahead == '<') - ADVANCE(103); - if (lookahead == '=') - ADVANCE(104); + ADVANCE(101); if (lookahead == '>') ADVANCE(75); if (lookahead == '[') ADVANCE(77); if (lookahead == '\\') - ADVANCE(105); + ADVANCE(102); if (lookahead == ']') ADVANCE(77); if (lookahead == '`') @@ -2229,11 +2202,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(102); + SKIP(100); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(103); if ((lookahead < '&' || lookahead > ')')) ADVANCE(5); END_STATE(); - case 103: + case 101: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') ADVANCE(37); @@ -2242,7 +2219,83 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(39); END_STATE(); + case 102: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(100); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 103: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == '\\') + ADVANCE(4); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(103); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < 'A' || lookahead > ']') && + (lookahead < '_' || lookahead > '}')) + ADVANCE(5); + END_STATE(); case 104: + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(101); + if (lookahead == '=') + ADVANCE(105); + if (lookahead == '>') + ADVANCE(75); + if (lookahead == '[') + ADVANCE(77); + if (lookahead == '\\') + ADVANCE(106); + if (lookahead == ']') + ADVANCE(77); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(77); + if (lookahead == '|') + ADVANCE(67); + if (lookahead == '}') + ADVANCE(77); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(104); + if ((lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 105: ACCEPT_TOKEN(sym_word); if (lookahead == '=') ADVANCE(44); @@ -2263,50 +2316,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '~')) ADVANCE(5); END_STATE(); - case 105: + case 106: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(102); + SKIP(104); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 106: + case 107: if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(107); + ADVANCE(108); if (lookahead == '$') ADVANCE(8); if (lookahead == '\\') - ADVANCE(111); + ADVANCE(112); if (lookahead == '`') ADVANCE(59); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(112); + ADVANCE(113); if (lookahead != 0) - ADVANCE(108); - END_STATE(); - case 107: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') - ADVANCE(108); - if (lookahead == '\\') - ADVANCE(110); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '$' && - lookahead != '`') - ADVANCE(107); + ADVANCE(109); END_STATE(); case 108: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\\') + if (lookahead == '\n') ADVANCE(109); + if (lookahead == '\\') + ADVANCE(111); if (lookahead != 0 && lookahead != '\"' && lookahead != '$' && @@ -2315,40 +2358,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 109: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') - ADVANCE(108); if (lookahead == '\\') + ADVANCE(110); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '$' && + lookahead != '`') ADVANCE(109); - if (lookahead == '\"' || - lookahead == '$' || - lookahead == '`') - ADVANCE(108); - if (lookahead != 0) - ADVANCE(108); END_STATE(); case 110: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(108); + ADVANCE(109); if (lookahead == '\\') ADVANCE(110); if (lookahead == '\"' || lookahead == '$' || lookahead == '`') - ADVANCE(107); + ADVANCE(109); if (lookahead != 0) - ADVANCE(107); + ADVANCE(109); END_STATE(); case 111: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(112); - if (lookahead == '\\') ADVANCE(109); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(112); + if (lookahead == '\\') + ADVANCE(111); if (lookahead == '\"' || lookahead == '$' || lookahead == '`') @@ -2358,68 +2394,85 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 112: ACCEPT_TOKEN(sym__string_content); - if (lookahead == '#') - ADVANCE(107); + if (lookahead == '\n') + ADVANCE(113); if (lookahead == '\\') - ADVANCE(111); + ADVANCE(110); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(113); + if (lookahead == '\"' || + lookahead == '$' || + lookahead == '`') + ADVANCE(109); + if (lookahead != 0) + ADVANCE(109); + END_STATE(); + case 113: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '#') + ADVANCE(108); + if (lookahead == '\\') + ADVANCE(112); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(112); + ADVANCE(113); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && lookahead != '`') - ADVANCE(108); + ADVANCE(109); END_STATE(); - case 113: + case 114: if (lookahead == '!') - ADVANCE(114); + ADVANCE(115); if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') ADVANCE(7); if (lookahead == '$') - ADVANCE(115); + ADVANCE(116); if (lookahead == '\'') ADVANCE(16); if (lookahead == '*') - ADVANCE(116); - if (lookahead == '-') ADVANCE(117); - if (lookahead == '0') + if (lookahead == '-') ADVANCE(118); - if (lookahead == '?') + if (lookahead == '0') ADVANCE(119); - if (lookahead == '@') + if (lookahead == '?') ADVANCE(120); + if (lookahead == '@') + ADVANCE(121); if (lookahead == '\\') - SKIP(121); + SKIP(122); if (lookahead == '_') - ADVANCE(122); + ADVANCE(123); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(113); + SKIP(114); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(87); END_STATE(); - case 114: + case 115: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 115: + case 116: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 116: + case 117: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 117: + case 118: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 118: + case 119: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -2427,20 +2480,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(87); END_STATE(); - case 119: + case 120: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 120: + case 121: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 121: + case 122: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(113); + SKIP(114); END_STATE(); - case 122: + case 123: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -2448,7 +2501,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(87); END_STATE(); - case 123: + case 124: if (lookahead == 0) ADVANCE(1); if (lookahead == '\n') @@ -2468,15 +2521,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(34); if (lookahead == '<') - ADVANCE(103); + ADVANCE(101); if (lookahead == '=') - ADVANCE(104); + ADVANCE(105); if (lookahead == '>') ADVANCE(75); if (lookahead == '[') ADVANCE(77); if (lookahead == '\\') - ADVANCE(124); + ADVANCE(125); if (lookahead == ']') ADVANCE(77); if (lookahead == '`') @@ -2490,40 +2543,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(123); + SKIP(124); if ((lookahead < '&' || lookahead > ')')) ADVANCE(5); END_STATE(); - case 124: + case 125: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(123); + SKIP(124); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 125: + case 126: if (lookahead == 0) ADVANCE(1); if (lookahead == '#') ADVANCE(72); if (lookahead == '\\') + SKIP(127); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(126); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(125); - END_STATE(); - case 126: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(125); END_STATE(); case 127: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(126); + END_STATE(); + case 128: if (lookahead == 0) ADVANCE(1); if (lookahead == '\n') @@ -2531,26 +2584,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(72); if (lookahead == '&') - ADVANCE(99); + ADVANCE(12); if (lookahead == ';') ADVANCE(34); + if (lookahead == '<') + ADVANCE(129); + if (lookahead == '>') + ADVANCE(130); if (lookahead == '\\') - SKIP(128); + SKIP(131); if (lookahead == '|') ADVANCE(67); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(127); + SKIP(128); END_STATE(); - case 128: + case 129: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') + ADVANCE(37); + if (lookahead == '<') + ADVANCE(39); + END_STATE(); + case 130: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '&') + ADVANCE(47); + if (lookahead == '>') + ADVANCE(50); + END_STATE(); + case 131: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(127); + SKIP(128); END_STATE(); - case 129: + case 132: if (lookahead == 0) ADVANCE(1); if (lookahead == '\n') @@ -2568,13 +2639,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(34); if (lookahead == '<') - ADVANCE(74); + ADVANCE(101); if (lookahead == '>') ADVANCE(75); if (lookahead == '[') ADVANCE(77); if (lookahead == '\\') - ADVANCE(130); + ADVANCE(133); if (lookahead == ']') ADVANCE(77); if (lookahead == '`') @@ -2588,20 +2659,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(129); + SKIP(132); if ((lookahead < '&' || lookahead > ')')) ADVANCE(5); END_STATE(); - case 130: + case 133: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(129); + SKIP(132); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 131: + case 134: if (lookahead == 0) ADVANCE(1); if (lookahead == '\n') @@ -2621,15 +2692,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(34); if (lookahead == '<') - ADVANCE(103); + ADVANCE(101); if (lookahead == '=') - ADVANCE(104); + ADVANCE(105); if (lookahead == '>') ADVANCE(75); if (lookahead == '[') ADVANCE(77); if (lookahead == '\\') - ADVANCE(132); + ADVANCE(135); if (lookahead == ']') ADVANCE(77); if (lookahead == '`') @@ -2643,88 +2714,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(131); + SKIP(134); if ((lookahead < '&' || lookahead > ')')) ADVANCE(5); END_STATE(); - case 132: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(131); - if (lookahead != 0) - ADVANCE(5); - END_STATE(); - case 133: - if (lookahead == '\"') - ADVANCE(6); - if (lookahead == '#') - ADVANCE(72); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == '(') - ADVANCE(89); - if (lookahead == '<') - ADVANCE(91); - if (lookahead == '>') - ADVANCE(92); - if (lookahead == '[') - ADVANCE(77); - if (lookahead == '\\') - ADVANCE(134); - if (lookahead == ']') - ADVANCE(77); - if (lookahead == '`') - ADVANCE(59); - if (lookahead == '{') - ADVANCE(77); - if (lookahead == '}') - ADVANCE(77); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(133); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); - END_STATE(); - case 134: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(133); - if (lookahead != 0) - ADVANCE(5); - END_STATE(); case 135: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '!') - ADVANCE(3); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(134); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 136: if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') ADVANCE(72); if (lookahead == '$') ADVANCE(8); - if (lookahead == '&') - ADVANCE(136); if (lookahead == '\'') ADVANCE(16); if (lookahead == '(') ADVANCE(89); - if (lookahead == '-') - ADVANCE(90); - if (lookahead == ';') - ADVANCE(34); if (lookahead == '<') ADVANCE(91); if (lookahead == '>') @@ -2742,198 +2755,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(77); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(135); + SKIP(136); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 136: - ACCEPT_TOKEN(anon_sym_AMP); - END_STATE(); case 137: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(135); + SKIP(136); if (lookahead != 0) ADVANCE(5); END_STATE(); case 138: if (lookahead == '\n') ADVANCE(2); - if (lookahead == '#') - ADVANCE(72); - if (lookahead == '&') - ADVANCE(136); - if (lookahead == ';') - ADVANCE(34); - if (lookahead == '\\') - SKIP(139); - if (lookahead == 'i') - ADVANCE(140); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(138); - END_STATE(); - case 139: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(138); - END_STATE(); - case 140: - if (lookahead == 'n') - ADVANCE(141); - END_STATE(); - case 141: - ACCEPT_TOKEN(anon_sym_in); - END_STATE(); - case 142: if (lookahead == '!') - ADVANCE(143); - if (lookahead == '#') - ADVANCE(72); - if (lookahead == '&') - ADVANCE(145); - if (lookahead == ')') - ADVANCE(146); - if (lookahead == '+') - ADVANCE(148); - if (lookahead == '-') - ADVANCE(150); - if (lookahead == '<') - ADVANCE(154); - if (lookahead == '=') - ADVANCE(155); - if (lookahead == '>') - ADVANCE(158); - if (lookahead == '\\') - SKIP(159); - if (lookahead == '|') - ADVANCE(160); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(142); - END_STATE(); - case 143: - if (lookahead == '=') - ADVANCE(144); - END_STATE(); - case 144: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - END_STATE(); - case 145: - if (lookahead == '&') - ADVANCE(13); - END_STATE(); - case 146: - if (lookahead == ')') - ADVANCE(147); - END_STATE(); - case 147: - ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); - END_STATE(); - case 148: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') - ADVANCE(149); - if (lookahead == '=') - ADVANCE(80); - END_STATE(); - case 149: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - END_STATE(); - case 150: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') - ADVANCE(151); - if (lookahead == '=') - ADVANCE(152); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(153); - END_STATE(); - case 151: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - END_STATE(); - case 152: - ACCEPT_TOKEN(anon_sym_DASH_EQ); - END_STATE(); - case 153: - ACCEPT_TOKEN(sym_test_operator); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(153); - END_STATE(); - case 154: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') - ADVANCE(42); - END_STATE(); - case 155: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') - ADVANCE(156); - if (lookahead == '~') - ADVANCE(157); - END_STATE(); - case 156: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - END_STATE(); - case 157: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); - END_STATE(); - case 158: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') - ADVANCE(49); - END_STATE(); - case 159: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(142); - END_STATE(); - case 160: - if (lookahead == '|') - ADVANCE(69); - END_STATE(); - case 161: - if (lookahead == '#') - ADVANCE(72); - if (lookahead == '(') - ADVANCE(89); - if (lookahead == '\\') - SKIP(162); - if (lookahead == '{') - ADVANCE(66); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(161); - END_STATE(); - case 162: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(161); - END_STATE(); - case 163: - if (lookahead == 0) - ADVANCE(1); - if (lookahead == '\n') - ADVANCE(2); + ADVANCE(3); if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') @@ -2941,11 +2787,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(8); if (lookahead == '&') - ADVANCE(99); + ADVANCE(139); if (lookahead == '\'') ADVANCE(16); + if (lookahead == '(') + ADVANCE(89); if (lookahead == ')') ADVANCE(20); + if (lookahead == '-') + ADVANCE(90); if (lookahead == ';') ADVANCE(34); if (lookahead == '<') @@ -2955,89 +2805,216 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(77); if (lookahead == '\\') - ADVANCE(164); + ADVANCE(140); if (lookahead == ']') ADVANCE(77); if (lookahead == '`') ADVANCE(59); if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') - ADVANCE(67); if (lookahead == '}') ADVANCE(77); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(101); - if ((lookahead < '&' || lookahead > ')')) + SKIP(138); + if (lookahead != 0 && + (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 164: + case 139: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 140: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(163); + SKIP(138); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 165: + case 141: if (lookahead == '\n') ADVANCE(2); - if (lookahead == '\"') - ADVANCE(6); if (lookahead == '#') ADVANCE(72); - if (lookahead == '$') - ADVANCE(8); if (lookahead == '&') - ADVANCE(12); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == '(') - ADVANCE(89); - if (lookahead == ')') - ADVANCE(20); + ADVANCE(139); if (lookahead == ';') ADVANCE(34); - if (lookahead == '<') - ADVANCE(103); - if (lookahead == '=') - ADVANCE(104); - if (lookahead == '>') - ADVANCE(75); - if (lookahead == '[') - ADVANCE(77); if (lookahead == '\\') - ADVANCE(166); - if (lookahead == ']') - ADVANCE(77); - if (lookahead == '`') - ADVANCE(59); - if (lookahead == '{') - ADVANCE(77); - if (lookahead == '|') - ADVANCE(67); - if (lookahead == '}') - ADVANCE(77); + SKIP(142); + if (lookahead == 'i') + ADVANCE(143); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(165); - if (lookahead != 0) + SKIP(141); + END_STATE(); + case 142: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(141); + END_STATE(); + case 143: + if (lookahead == 'n') + ADVANCE(144); + END_STATE(); + case 144: + ACCEPT_TOKEN(anon_sym_in); + END_STATE(); + case 145: + if (lookahead == '!') + ADVANCE(146); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '&') + ADVANCE(148); + if (lookahead == ')') + ADVANCE(149); + if (lookahead == '+') + ADVANCE(151); + if (lookahead == '-') + ADVANCE(153); + if (lookahead == '<') + ADVANCE(157); + if (lookahead == '=') + ADVANCE(158); + if (lookahead == '>') + ADVANCE(161); + if (lookahead == '\\') + SKIP(162); + if (lookahead == '|') + ADVANCE(163); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(145); + END_STATE(); + case 146: + if (lookahead == '=') + ADVANCE(147); + END_STATE(); + case 147: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 148: + if (lookahead == '&') + ADVANCE(13); + END_STATE(); + case 149: + if (lookahead == ')') + ADVANCE(150); + END_STATE(); + case 150: + ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); + END_STATE(); + case 151: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') + ADVANCE(152); + if (lookahead == '=') + ADVANCE(80); + END_STATE(); + case 152: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + END_STATE(); + case 153: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') + ADVANCE(154); + if (lookahead == '=') + ADVANCE(155); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(156); + END_STATE(); + case 154: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + END_STATE(); + case 155: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 156: + ACCEPT_TOKEN(sym_test_operator); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(156); + END_STATE(); + case 157: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') + ADVANCE(42); + END_STATE(); + case 158: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') + ADVANCE(159); + if (lookahead == '~') + ADVANCE(160); + END_STATE(); + case 159: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + END_STATE(); + case 160: + ACCEPT_TOKEN(anon_sym_EQ_TILDE); + END_STATE(); + case 161: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') + ADVANCE(49); + END_STATE(); + case 162: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(145); + END_STATE(); + case 163: + if (lookahead == '|') + ADVANCE(69); + END_STATE(); + case 164: + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '(') + ADVANCE(89); + if (lookahead == ';') + ADVANCE(165); + if (lookahead == '\\') + ADVANCE(166); + if (lookahead == '{') + ADVANCE(66); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(164); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); + case 165: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); case 166: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(165); + SKIP(164); if (lookahead != 0) ADVANCE(5); END_STATE(); @@ -3061,7 +3038,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(34); if (lookahead == '<') - ADVANCE(74); + ADVANCE(101); if (lookahead == '>') ADVANCE(75); if (lookahead == '[') @@ -3082,6 +3059,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(167); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(103); if ((lookahead < '&' || lookahead > ')')) ADVANCE(5); END_STATE(); @@ -3095,30 +3076,50 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(5); END_STATE(); case 169: - if (lookahead == 0) - ADVANCE(1); if (lookahead == '\n') ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); if (lookahead == '#') ADVANCE(72); + if (lookahead == '$') + ADVANCE(8); if (lookahead == '&') - ADVANCE(99); + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '(') + ADVANCE(89); if (lookahead == ')') ADVANCE(20); if (lookahead == ';') ADVANCE(34); + if (lookahead == '<') + ADVANCE(101); + if (lookahead == '=') + ADVANCE(105); + if (lookahead == '>') + ADVANCE(75); + if (lookahead == '[') + ADVANCE(77); if (lookahead == '\\') - SKIP(170); + ADVANCE(170); + if (lookahead == ']') + ADVANCE(77); if (lookahead == '`') ADVANCE(59); - if (lookahead == 'e') - ADVANCE(171); + if (lookahead == '{') + ADVANCE(77); if (lookahead == '|') ADVANCE(67); + if (lookahead == '}') + ADVANCE(77); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(169); + if (lookahead != 0) + ADVANCE(5); END_STATE(); case 170: if (lookahead == '\t' || @@ -3126,49 +3127,121 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(169); + if (lookahead != 0) + ADVANCE(5); END_STATE(); case 171: - if (lookahead == 's') - ADVANCE(172); - END_STATE(); - case 172: - if (lookahead == 'a') - ADVANCE(173); - END_STATE(); - case 173: - if (lookahead == 'c') - ADVANCE(174); - END_STATE(); - case 174: - ACCEPT_TOKEN(anon_sym_esac); - END_STATE(); - case 175: - if (lookahead == '!') - ADVANCE(143); + if (lookahead == '\n') + ADVANCE(2); if (lookahead == '#') ADVANCE(72); if (lookahead == '&') - ADVANCE(145); - if (lookahead == '+') - ADVANCE(148); - if (lookahead == '-') - ADVANCE(150); + ADVANCE(12); + if (lookahead == ')') + ADVANCE(20); + if (lookahead == ';') + ADVANCE(34); if (lookahead == '<') - ADVANCE(154); - if (lookahead == '=') - ADVANCE(155); + ADVANCE(129); if (lookahead == '>') - ADVANCE(158); + ADVANCE(130); if (lookahead == '\\') - SKIP(176); - if (lookahead == ']') - ADVANCE(177); + SKIP(172); if (lookahead == '|') - ADVANCE(160); + ADVANCE(67); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(171); + END_STATE(); + case 172: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') + SKIP(171); + END_STATE(); + case 173: + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ')') + ADVANCE(20); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(101); + if (lookahead == '>') + ADVANCE(75); + if (lookahead == '[') + ADVANCE(77); + if (lookahead == '\\') + ADVANCE(174); + if (lookahead == ']') + ADVANCE(77); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(77); + if (lookahead == '|') + ADVANCE(67); + if (lookahead == '}') + ADVANCE(77); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(173); + if ((lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 174: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(173); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 175: + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == ')') + ADVANCE(20); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(129); + if (lookahead == '>') + ADVANCE(130); + if (lookahead == '\\') + SKIP(176); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'e') + ADVANCE(177); + if (lookahead == '|') + ADVANCE(67); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(175); END_STATE(); case 176: @@ -3179,192 +3252,243 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(175); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_RBRACK); + if (lookahead == 's') + ADVANCE(178); END_STATE(); case 178: + if (lookahead == 'a') + ADVANCE(179); + END_STATE(); + case 179: + if (lookahead == 'c') + ADVANCE(180); + END_STATE(); + case 180: + ACCEPT_TOKEN(anon_sym_esac); + END_STATE(); + case 181: if (lookahead == '!') - ADVANCE(143); + ADVANCE(146); if (lookahead == '#') ADVANCE(72); if (lookahead == '&') - ADVANCE(145); - if (lookahead == '+') ADVANCE(148); + if (lookahead == '+') + ADVANCE(151); if (lookahead == '-') - ADVANCE(150); + ADVANCE(153); if (lookahead == '<') - ADVANCE(154); + ADVANCE(157); if (lookahead == '=') - ADVANCE(155); - if (lookahead == '>') ADVANCE(158); + if (lookahead == '>') + ADVANCE(161); if (lookahead == '\\') - SKIP(179); + SKIP(182); if (lookahead == ']') - ADVANCE(180); + ADVANCE(183); if (lookahead == '|') - ADVANCE(160); + ADVANCE(163); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(178); + SKIP(181); END_STATE(); - case 179: + case 182: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(178); + SKIP(181); END_STATE(); - case 180: + case 183: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 184: + if (lookahead == '!') + ADVANCE(146); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '&') + ADVANCE(148); + if (lookahead == '+') + ADVANCE(151); + if (lookahead == '-') + ADVANCE(153); + if (lookahead == '<') + ADVANCE(157); + if (lookahead == '=') + ADVANCE(158); + if (lookahead == '>') + ADVANCE(161); + if (lookahead == '\\') + SKIP(185); + if (lookahead == ']') + ADVANCE(186); + if (lookahead == '|') + ADVANCE(163); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(184); + END_STATE(); + case 185: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(184); + END_STATE(); + case 186: if (lookahead == ']') ADVANCE(57); END_STATE(); - case 181: + case 187: if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') ADVANCE(7); if (lookahead == '$') - ADVANCE(115); - if (lookahead == '*') ADVANCE(116); - if (lookahead == '-') + if (lookahead == '*') ADVANCE(117); + if (lookahead == '-') + ADVANCE(118); if (lookahead == '0') - ADVANCE(182); + ADVANCE(188); if (lookahead == '?') - ADVANCE(119); - if (lookahead == '@') ADVANCE(120); + if (lookahead == '@') + ADVANCE(121); if (lookahead == '\\') - ADVANCE(184); + ADVANCE(190); if (lookahead == '_') - ADVANCE(186); + ADVANCE(192); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(185); + ADVANCE(191); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(183); + ADVANCE(189); if (lookahead != 0 && (lookahead < '_' || lookahead > 'z')) - ADVANCE(108); + ADVANCE(109); END_STATE(); - case 182: + case 188: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(183); + ADVANCE(189); END_STATE(); - case 183: + case 189: ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(183); + ADVANCE(189); END_STATE(); - case 184: + case 190: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(185); + ADVANCE(191); if (lookahead == '\\') - ADVANCE(109); + ADVANCE(110); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(185); + ADVANCE(191); if (lookahead == '\"' || lookahead == '$' || lookahead == '`') - ADVANCE(108); + ADVANCE(109); if (lookahead != 0) - ADVANCE(108); + ADVANCE(109); END_STATE(); - case 185: + case 191: ACCEPT_TOKEN(sym__string_content); if (lookahead == '#') ADVANCE(7); if (lookahead == '*') - ADVANCE(116); - if (lookahead == '-') ADVANCE(117); + if (lookahead == '-') + ADVANCE(118); if (lookahead == '0') - ADVANCE(182); + ADVANCE(188); if (lookahead == '?') - ADVANCE(119); - if (lookahead == '@') ADVANCE(120); + if (lookahead == '@') + ADVANCE(121); if (lookahead == '\\') - ADVANCE(184); + ADVANCE(190); if (lookahead == '_') - ADVANCE(186); + ADVANCE(192); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(185); + ADVANCE(191); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(183); + ADVANCE(189); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && (lookahead < '_' || lookahead > 'z')) - ADVANCE(108); + ADVANCE(109); END_STATE(); - case 186: + case 192: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(183); + ADVANCE(189); END_STATE(); - case 187: + case 193: if (lookahead == '#') ADVANCE(72); if (lookahead == '$') - ADVANCE(115); - if (lookahead == '*') ADVANCE(116); - if (lookahead == '-') + if (lookahead == '*') ADVANCE(117); - if (lookahead == '0') + if (lookahead == '-') ADVANCE(118); - if (lookahead == '?') + if (lookahead == '0') ADVANCE(119); - if (lookahead == '@') + if (lookahead == '?') ADVANCE(120); + if (lookahead == '@') + ADVANCE(121); if (lookahead == '\\') - SKIP(188); + SKIP(194); if (lookahead == '_') - ADVANCE(122); + ADVANCE(123); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(187); + SKIP(193); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(87); END_STATE(); - case 188: + case 194: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(187); + SKIP(193); END_STATE(); - case 189: + case 195: if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') @@ -3376,7 +3500,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(16); if (lookahead == '-') - ADVANCE(190); + ADVANCE(196); if (lookahead == '/') ADVANCE(29); if (lookahead == ':') @@ -3384,13 +3508,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(91); if (lookahead == '=') - ADVANCE(191); + ADVANCE(197); if (lookahead == '>') ADVANCE(92); if (lookahead == '[') ADVANCE(77); if (lookahead == '\\') - ADVANCE(192); + ADVANCE(198); if (lookahead == ']') ADVANCE(77); if (lookahead == '`') @@ -3403,14 +3527,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(189); + SKIP(195); if (lookahead != 0 && (lookahead < '\"' || lookahead > ')') && (lookahead < ':' || lookahead > '>') && (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 190: + case 196: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '\\') ADVANCE(4); @@ -3429,7 +3553,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 191: + case 197: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '\\') ADVANCE(4); @@ -3448,89 +3572,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 192: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(189); - if (lookahead != 0) - ADVANCE(5); - END_STATE(); - case 193: - if (lookahead == '#') - ADVANCE(72); - if (lookahead == '$') - ADVANCE(194); - if (lookahead == '\\') - SKIP(195); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(193); - END_STATE(); - case 194: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '{') - ADVANCE(10); - END_STATE(); - case 195: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(193); - END_STATE(); - case 196: - if (lookahead == '\"') - ADVANCE(6); - if (lookahead == '#') - ADVANCE(72); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == '<') - ADVANCE(91); - if (lookahead == '>') - ADVANCE(92); - if (lookahead == '[') - ADVANCE(77); - if (lookahead == '\\') - ADVANCE(197); - if (lookahead == ']') - ADVANCE(77); - if (lookahead == '`') - ADVANCE(59); - if (lookahead == '{') - ADVANCE(77); - if (lookahead == '}') - ADVANCE(77); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(196); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); - END_STATE(); - case 197: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(196); - if (lookahead != 0) - ADVANCE(5); - END_STATE(); case 198: - if (lookahead == 0) - ADVANCE(1); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(195); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 199: if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') @@ -3540,158 +3591,94 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(34); if (lookahead == '<') - ADVANCE(199); + ADVANCE(129); if (lookahead == '>') - ADVANCE(200); + ADVANCE(130); if (lookahead == '\\') - SKIP(201); + SKIP(200); + if (lookahead == '`') + ADVANCE(59); if (lookahead == '|') ADVANCE(67); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(198); - END_STATE(); - case 199: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') - ADVANCE(37); - if (lookahead == '<') - ADVANCE(39); + SKIP(199); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') - ADVANCE(47); - if (lookahead == '>') - ADVANCE(50); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(199); END_STATE(); case 201: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(198); - END_STATE(); - case 202: - if (lookahead == '\"') - ADVANCE(6); + if (lookahead == 0) + ADVANCE(1); + if (lookahead == '\n') + ADVANCE(2); if (lookahead == '#') ADVANCE(72); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == '<') - ADVANCE(91); - if (lookahead == '>') - ADVANCE(92); - if (lookahead == '[') - ADVANCE(77); - if (lookahead == '\\') - ADVANCE(203); - if (lookahead == ']') - ADVANCE(177); - if (lookahead == '`') - ADVANCE(59); - if (lookahead == '{') - ADVANCE(77); - if (lookahead == '}') - ADVANCE(77); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(202); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); - END_STATE(); - case 203: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(202); - if (lookahead != 0) - ADVANCE(5); - END_STATE(); - case 204: - if (lookahead == '\"') - ADVANCE(6); - if (lookahead == '#') - ADVANCE(72); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '\'') - ADVANCE(16); + if (lookahead == '&') + ADVANCE(139); if (lookahead == ')') ADVANCE(20); - if (lookahead == '<') - ADVANCE(91); - if (lookahead == '>') - ADVANCE(92); - if (lookahead == '[') - ADVANCE(77); + if (lookahead == ';') + ADVANCE(34); if (lookahead == '\\') - ADVANCE(205); - if (lookahead == ']') - ADVANCE(77); + SKIP(202); if (lookahead == '`') ADVANCE(59); - if (lookahead == '{') - ADVANCE(77); - if (lookahead == '}') - ADVANCE(77); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(201); + END_STATE(); + case 202: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(204); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); + SKIP(201); + END_STATE(); + case 203: + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '$') + ADVANCE(204); + if (lookahead == '\\') + SKIP(205); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(203); + END_STATE(); + case 204: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '{') + ADVANCE(10); END_STATE(); case 205: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(204); - if (lookahead != 0) - ADVANCE(5); + SKIP(203); END_STATE(); case 206: + if (lookahead == 0) + ADVANCE(1); if (lookahead == '\n') ADVANCE(2); - if (lookahead == '!') - ADVANCE(143); if (lookahead == '#') ADVANCE(72); if (lookahead == '&') - ADVANCE(99); - if (lookahead == '+') - ADVANCE(148); - if (lookahead == '-') - ADVANCE(150); + ADVANCE(139); if (lookahead == ';') ADVANCE(34); - if (lookahead == '<') - ADVANCE(154); - if (lookahead == '=') - ADVANCE(155); - if (lookahead == '>') - ADVANCE(158); if (lookahead == '\\') SKIP(207); - if (lookahead == '|') - ADVANCE(160); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') @@ -3705,33 +3692,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(206); END_STATE(); case 208: - if (lookahead == '!') - ADVANCE(143); + if (lookahead == '\"') + ADVANCE(6); if (lookahead == '#') ADVANCE(72); - if (lookahead == '&') - ADVANCE(145); - if (lookahead == ')') - ADVANCE(20); - if (lookahead == '+') - ADVANCE(148); - if (lookahead == '-') - ADVANCE(150); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(16); if (lookahead == '<') - ADVANCE(154); - if (lookahead == '=') - ADVANCE(155); + ADVANCE(91); if (lookahead == '>') - ADVANCE(158); + ADVANCE(92); + if (lookahead == '[') + ADVANCE(77); if (lookahead == '\\') - SKIP(209); - if (lookahead == '|') - ADVANCE(160); + ADVANCE(209); + if (lookahead == ']') + ADVANCE(77); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(77); + if (lookahead == '}') + ADVANCE(77); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(208); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 209: if (lookahead == '\t' || @@ -3739,37 +3734,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(208); + if (lookahead != 0) + ADVANCE(5); END_STATE(); case 210: - if (lookahead == '!') - ADVANCE(143); + if (lookahead == '\"') + ADVANCE(6); if (lookahead == '#') ADVANCE(72); - if (lookahead == '&') - ADVANCE(145); - if (lookahead == ')') - ADVANCE(146); - if (lookahead == '+') - ADVANCE(148); - if (lookahead == '-') - ADVANCE(150); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '\'') + ADVANCE(16); if (lookahead == '<') - ADVANCE(154); - if (lookahead == '=') - ADVANCE(155); + ADVANCE(91); if (lookahead == '>') - ADVANCE(158); + ADVANCE(92); + if (lookahead == '[') + ADVANCE(77); if (lookahead == '\\') - SKIP(211); + ADVANCE(211); if (lookahead == ']') - ADVANCE(180); - if (lookahead == '|') - ADVANCE(160); + ADVANCE(183); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(77); + if (lookahead == '}') + ADVANCE(77); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(210); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 211: if (lookahead == '\t' || @@ -3777,28 +3780,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(210); + if (lookahead != 0) + ADVANCE(5); END_STATE(); case 212: - if (lookahead == '!') - ADVANCE(3); if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') ADVANCE(72); if (lookahead == '$') ADVANCE(8); - if (lookahead == '&') - ADVANCE(73); if (lookahead == '\'') ADVANCE(16); - if (lookahead == '(') - ADVANCE(18); + if (lookahead == ')') + ADVANCE(20); if (lookahead == '<') - ADVANCE(74); + ADVANCE(91); if (lookahead == '>') - ADVANCE(75); + ADVANCE(92); if (lookahead == '[') - ADVANCE(53); + ADVANCE(77); if (lookahead == '\\') ADVANCE(213); if (lookahead == ']') @@ -3808,7 +3809,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(77); if (lookahead == '}') - ADVANCE(70); + ADVANCE(77); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3831,33 +3832,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(5); END_STATE(); case 214: - if (lookahead == 0) - ADVANCE(1); if (lookahead == '\n') ADVANCE(2); + if (lookahead == '!') + ADVANCE(146); if (lookahead == '#') ADVANCE(72); if (lookahead == '&') - ADVANCE(12); + ADVANCE(215); + if (lookahead == '+') + ADVANCE(151); + if (lookahead == '-') + ADVANCE(153); if (lookahead == ';') ADVANCE(34); if (lookahead == '<') - ADVANCE(215); + ADVANCE(157); + if (lookahead == '=') + ADVANCE(158); if (lookahead == '>') - ADVANCE(200); + ADVANCE(161); if (lookahead == '\\') SKIP(216); if (lookahead == '|') - ADVANCE(67); + ADVANCE(163); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(214); END_STATE(); case 215: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') - ADVANCE(37); + ADVANCE(13); END_STATE(); case 216: if (lookahead == '\t' || @@ -3867,6 +3874,80 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(214); END_STATE(); case 217: + if (lookahead == '!') + ADVANCE(146); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '&') + ADVANCE(148); + if (lookahead == ')') + ADVANCE(20); + if (lookahead == '+') + ADVANCE(151); + if (lookahead == '-') + ADVANCE(153); + if (lookahead == '<') + ADVANCE(157); + if (lookahead == '=') + ADVANCE(158); + if (lookahead == '>') + ADVANCE(161); + if (lookahead == '\\') + SKIP(218); + if (lookahead == '|') + ADVANCE(163); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(217); + END_STATE(); + case 218: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(217); + END_STATE(); + case 219: + if (lookahead == '!') + ADVANCE(146); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '&') + ADVANCE(148); + if (lookahead == ')') + ADVANCE(149); + if (lookahead == '+') + ADVANCE(151); + if (lookahead == '-') + ADVANCE(153); + if (lookahead == '<') + ADVANCE(157); + if (lookahead == '=') + ADVANCE(158); + if (lookahead == '>') + ADVANCE(161); + if (lookahead == '\\') + SKIP(220); + if (lookahead == ']') + ADVANCE(186); + if (lookahead == '|') + ADVANCE(163); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(219); + END_STATE(); + case 220: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(219); + END_STATE(); + case 221: if (lookahead == '!') ADVANCE(3); if (lookahead == '\"') @@ -3884,91 +3965,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(20); if (lookahead == ';') - ADVANCE(218); + ADVANCE(222); if (lookahead == '<') ADVANCE(74); if (lookahead == '>') ADVANCE(75); if (lookahead == '[') ADVANCE(53); - if (lookahead == '\\') - ADVANCE(219); - if (lookahead == ']') - ADVANCE(77); - if (lookahead == '`') - ADVANCE(59); - if (lookahead == '{') - ADVANCE(77); - if (lookahead == '}') - ADVANCE(77); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(217); - if (lookahead != 0 && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); - END_STATE(); - case 218: - if (lookahead == ';') - ADVANCE(35); - END_STATE(); - case 219: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(217); - if (lookahead != 0) - ADVANCE(5); - END_STATE(); - case 220: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(72); - if (lookahead == '&') - ADVANCE(12); - if (lookahead == ')') - ADVANCE(20); - if (lookahead == ';') - ADVANCE(34); - if (lookahead == '<') - ADVANCE(199); - if (lookahead == '>') - ADVANCE(200); - if (lookahead == '\\') - SKIP(221); - if (lookahead == '|') - ADVANCE(67); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(220); - END_STATE(); - case 221: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(220); - END_STATE(); - case 222: - if (lookahead == '\"') - ADVANCE(6); - if (lookahead == '#') - ADVANCE(72); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == '<') - ADVANCE(91); - if (lookahead == '>') - ADVANCE(92); - if (lookahead == '[') - ADVANCE(77); if (lookahead == '\\') ADVANCE(223); if (lookahead == ']') @@ -3976,27 +3979,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '`') ADVANCE(59); if (lookahead == '{') - ADVANCE(77); + ADVANCE(66); if (lookahead == '}') - ADVANCE(70); + ADVANCE(77); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(222); + SKIP(221); if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); + case 222: + if (lookahead == ';') + ADVANCE(35); + END_STATE(); case 223: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(222); + SKIP(221); if (lookahead != 0) ADVANCE(5); END_STATE(); @@ -4004,21 +4008,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') - ADVANCE(7); + ADVANCE(72); if (lookahead == '$') ADVANCE(8); - if (lookahead == '%') - ADVANCE(11); if (lookahead == '\'') ADVANCE(16); - if (lookahead == '-') - ADVANCE(190); - if (lookahead == ':') - ADVANCE(31); if (lookahead == '<') ADVANCE(91); - if (lookahead == '=') - ADVANCE(191); if (lookahead == '>') ADVANCE(92); if (lookahead == '[') @@ -4039,8 +4035,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(224); if (lookahead != 0 && - (lookahead < '\"' || lookahead > ')') && - (lookahead < ':' || lookahead > '>') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); @@ -4054,28 +4051,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(5); END_STATE(); case 226: - if (lookahead == '\n') - ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); if (lookahead == '#') - ADVANCE(72); - if (lookahead == '&') - ADVANCE(12); - if (lookahead == ';') - ADVANCE(34); + ADVANCE(7); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '%') + ADVANCE(11); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == '-') + ADVANCE(196); + if (lookahead == ':') + ADVANCE(31); if (lookahead == '<') - ADVANCE(199); + ADVANCE(91); + if (lookahead == '=') + ADVANCE(197); if (lookahead == '>') - ADVANCE(200); + ADVANCE(92); + if (lookahead == '[') + ADVANCE(77); if (lookahead == '\\') - SKIP(227); + ADVANCE(227); + if (lookahead == ']') + ADVANCE(77); if (lookahead == '`') ADVANCE(59); - if (lookahead == '|') - ADVANCE(67); + if (lookahead == '{') + ADVANCE(77); + if (lookahead == '}') + ADVANCE(70); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(226); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > ')') && + (lookahead < ':' || lookahead > '>') && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); END_STATE(); case 227: if (lookahead == '\t' || @@ -4083,33 +4100,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(226); + if (lookahead != 0) + ADVANCE(5); END_STATE(); case 228: - if (lookahead == 0) - ADVANCE(1); - if (lookahead == '\n') - ADVANCE(2); if (lookahead == '#') ADVANCE(72); - if (lookahead == '&') - ADVANCE(12); - if (lookahead == ')') - ADVANCE(20); - if (lookahead == ';') - ADVANCE(34); - if (lookahead == '<') - ADVANCE(199); - if (lookahead == '>') - ADVANCE(200); + if (lookahead == '+') + ADVANCE(79); + if (lookahead == '=') + ADVANCE(81); if (lookahead == '\\') SKIP(229); - if (lookahead == '`') - ADVANCE(59); - if (lookahead == 'e') - ADVANCE(171); - if (lookahead == '|') - ADVANCE(67); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(228); @@ -4122,28 +4126,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(228); END_STATE(); case 230: - if (lookahead == '#') - ADVANCE(72); - if (lookahead == '+') - ADVANCE(79); - if (lookahead == '=') - ADVANCE(81); - if (lookahead == '\\') - SKIP(231); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(230); - END_STATE(); - case 231: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(230); - END_STATE(); - case 232: if (lookahead == '!') ADVANCE(3); if (lookahead == '\"') @@ -4157,7 +4139,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(89); if (lookahead == ')') - ADVANCE(146); + ADVANCE(149); if (lookahead == '-') ADVANCE(90); if (lookahead == '<') @@ -4166,6 +4148,58 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(92); if (lookahead == '[') ADVANCE(77); + if (lookahead == '\\') + ADVANCE(231); + if (lookahead == ']') + ADVANCE(77); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == '{') + ADVANCE(77); + if (lookahead == '}') + ADVANCE(77); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(230); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 231: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(230); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 232: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(139); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(91); + if (lookahead == '>') + ADVANCE(92); + if (lookahead == '[') + ADVANCE(77); if (lookahead == '\\') ADVANCE(233); if (lookahead == ']') @@ -4177,14 +4211,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(77); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(232); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); @@ -4198,33 +4229,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(5); END_STATE(); case 234: - if (lookahead == '\n') - ADVANCE(2); if (lookahead == '!') - ADVANCE(143); + ADVANCE(146); if (lookahead == '#') ADVANCE(72); if (lookahead == '&') - ADVANCE(99); - if (lookahead == '+') ADVANCE(148); + if (lookahead == ')') + ADVANCE(20); + if (lookahead == '+') + ADVANCE(151); if (lookahead == '-') - ADVANCE(150); - if (lookahead == ';') - ADVANCE(34); + ADVANCE(153); if (lookahead == '<') - ADVANCE(154); + ADVANCE(157); if (lookahead == '=') - ADVANCE(155); - if (lookahead == '>') ADVANCE(158); + if (lookahead == '>') + ADVANCE(161); if (lookahead == '\\') SKIP(235); - if (lookahead == 'e') - ADVANCE(171); if (lookahead == '|') - ADVANCE(67); + ADVANCE(236); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(234); @@ -4237,96 +4265,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(234); END_STATE(); case 236: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '\"') - ADVANCE(6); - if (lookahead == '#') - ADVANCE(72); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '&') - ADVANCE(136); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == ';') - ADVANCE(34); - if (lookahead == '<') - ADVANCE(91); - if (lookahead == '>') - ADVANCE(92); - if (lookahead == '[') - ADVANCE(77); - if (lookahead == '\\') - ADVANCE(237); - if (lookahead == ']') - ADVANCE(77); - if (lookahead == '`') - ADVANCE(59); - if (lookahead == '{') - ADVANCE(77); - if (lookahead == '}') - ADVANCE(77); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(236); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); - END_STATE(); - case 237: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(236); - if (lookahead != 0) - ADVANCE(5); - END_STATE(); - case 238: - if (lookahead == '!') - ADVANCE(143); - if (lookahead == '#') - ADVANCE(72); - if (lookahead == '&') - ADVANCE(145); - if (lookahead == ')') - ADVANCE(20); - if (lookahead == '+') - ADVANCE(148); - if (lookahead == '-') - ADVANCE(150); - if (lookahead == '<') - ADVANCE(154); - if (lookahead == '=') - ADVANCE(155); - if (lookahead == '>') - ADVANCE(158); - if (lookahead == '\\') - SKIP(239); - if (lookahead == '|') - ADVANCE(240); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(238); - END_STATE(); - case 239: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(238); - END_STATE(); - case 240: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead == '|') ADVANCE(69); END_STATE(); - case 241: + case 237: if (lookahead == '\"') ADVANCE(6); if (lookahead == '#') @@ -4342,7 +4285,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(77); if (lookahead == '\\') - ADVANCE(242); + ADVANCE(238); if (lookahead == ']') ADVANCE(77); if (lookahead == '`') @@ -4357,7 +4300,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(241); + SKIP(237); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -4365,142 +4308,72 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 242: + case 238: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(241); + SKIP(237); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 243: - if (lookahead == 0) - ADVANCE(1); + case 239: + if (lookahead == '#') + ADVANCE(72); + if (lookahead == ')') + ADVANCE(20); + if (lookahead == '\\') + SKIP(240); + if (lookahead == '|') + ADVANCE(241); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(239); + END_STATE(); + case 240: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(239); + END_STATE(); + case 241: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 242: if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') ADVANCE(72); if (lookahead == '&') ADVANCE(12); - if (lookahead == ')') - ADVANCE(20); if (lookahead == ';') ADVANCE(34); if (lookahead == '<') - ADVANCE(215); + ADVANCE(129); if (lookahead == '>') - ADVANCE(200); + ADVANCE(130); if (lookahead == '\\') - SKIP(244); - if (lookahead == '`') - ADVANCE(59); + SKIP(243); if (lookahead == 'e') - ADVANCE(171); + ADVANCE(177); if (lookahead == '|') ADVANCE(67); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(243); + SKIP(242); + END_STATE(); + case 243: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(242); END_STATE(); case 244: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(243); - END_STATE(); - case 245: - if (lookahead == '#') - ADVANCE(72); - if (lookahead == ';') - ADVANCE(246); - if (lookahead == '\\') - ADVANCE(247); - if (lookahead == '{') - ADVANCE(66); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(245); - if (lookahead != 0 && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(5); - END_STATE(); - case 246: - ACCEPT_TOKEN(anon_sym_SEMI); - END_STATE(); - case 247: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(245); - if (lookahead != 0) - ADVANCE(5); - END_STATE(); - case 248: - if (lookahead == '#') - ADVANCE(72); - if (lookahead == ')') - ADVANCE(20); - if (lookahead == '\\') - SKIP(249); - if (lookahead == '|') - ADVANCE(250); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(248); - END_STATE(); - case 249: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(248); - END_STATE(); - case 250: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 251: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(72); - if (lookahead == '&') - ADVANCE(99); - if (lookahead == ';') - ADVANCE(34); - if (lookahead == '\\') - SKIP(252); - if (lookahead == 'e') - ADVANCE(171); - if (lookahead == '|') - ADVANCE(67); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(251); - END_STATE(); - case 252: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(251); - END_STATE(); - case 253: if (lookahead == '!') ADVANCE(3); if (lookahead == '\"') @@ -4516,7 +4389,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(18); if (lookahead == ';') - ADVANCE(218); + ADVANCE(222); if (lookahead == '<') ADVANCE(74); if (lookahead == '>') @@ -4524,7 +4397,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(53); if (lookahead == '\\') - ADVANCE(254); + ADVANCE(245); if (lookahead == ']') ADVANCE(77); if (lookahead == '`') @@ -4532,237 +4405,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(60); if (lookahead == '{') - ADVANCE(77); + ADVANCE(66); if (lookahead == '}') ADVANCE(77); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(253); + SKIP(244); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && (lookahead < '{' || lookahead > '}')) ADVANCE(5); END_STATE(); - case 254: + case 245: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(253); + SKIP(244); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 255: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(72); - if (lookahead == '&') - ADVANCE(99); - if (lookahead == ')') - ADVANCE(20); - if (lookahead == ';') - ADVANCE(34); - if (lookahead == '\\') - SKIP(256); - if (lookahead == '|') - ADVANCE(67); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(255); - END_STATE(); - case 256: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(255); - END_STATE(); - case 257: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(72); - if (lookahead == '&') - ADVANCE(99); - if (lookahead == ';') - ADVANCE(34); - if (lookahead == '\\') - SKIP(258); - if (lookahead == '`') - ADVANCE(59); - if (lookahead == '|') - ADVANCE(67); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(257); - END_STATE(); - case 258: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(257); - END_STATE(); - case 259: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '\"') - ADVANCE(6); - if (lookahead == '#') - ADVANCE(72); - if (lookahead == '$') - ADVANCE(8); - if (lookahead == '&') - ADVANCE(99); - if (lookahead == '\'') - ADVANCE(16); - if (lookahead == ';') - ADVANCE(34); - if (lookahead == '<') - ADVANCE(91); - if (lookahead == '>') - ADVANCE(92); - if (lookahead == '[') - ADVANCE(77); - if (lookahead == '\\') - ADVANCE(260); - if (lookahead == ']') - ADVANCE(77); - if (lookahead == '`') - ADVANCE(59); - if (lookahead == 'e') - ADVANCE(261); - if (lookahead == '{') - ADVANCE(77); - if (lookahead == '|') - ADVANCE(67); - if (lookahead == '}') - ADVANCE(77); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(259); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(101); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')')) - ADVANCE(5); - END_STATE(); - case 260: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(259); - if (lookahead != 0) - ADVANCE(5); - END_STATE(); - case 261: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == '\\') - ADVANCE(4); - if (lookahead == 's') - ADVANCE(262); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(101); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < 'A' || lookahead > ']') && - (lookahead < '_' || lookahead > '}')) - ADVANCE(5); - END_STATE(); - case 262: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == '\\') - ADVANCE(4); - if (lookahead == 'a') - ADVANCE(263); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(101); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < 'A' || lookahead > ']') && - (lookahead < '_' || lookahead > '}')) - ADVANCE(5); - END_STATE(); - case 263: - ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); - if (lookahead == '\\') - ADVANCE(4); - if (lookahead == 'c') - ADVANCE(264); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(101); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < 'A' || lookahead > ']') && - (lookahead < '_' || lookahead > '}')) - ADVANCE(5); - END_STATE(); - case 264: - ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') - ADVANCE(4); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(101); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < 'A' || lookahead > ']') && - (lookahead < '_' || lookahead > '}')) - ADVANCE(5); - END_STATE(); - case 265: + case 246: if (lookahead == '\n') ADVANCE(2); if (lookahead == '\"') @@ -4778,15 +4443,169 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(34); if (lookahead == '<') - ADVANCE(103); - if (lookahead == '=') - ADVANCE(104); + ADVANCE(101); if (lookahead == '>') ADVANCE(75); if (lookahead == '[') ADVANCE(77); if (lookahead == '\\') - ADVANCE(266); + ADVANCE(247); + if (lookahead == ']') + ADVANCE(77); + if (lookahead == '`') + ADVANCE(59); + if (lookahead == 'e') + ADVANCE(248); + if (lookahead == '{') + ADVANCE(77); + if (lookahead == '|') + ADVANCE(67); + if (lookahead == '}') + ADVANCE(77); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(103); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(5); + END_STATE(); + case 247: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(246); + if (lookahead != 0) + ADVANCE(5); + END_STATE(); + case 248: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 's') + ADVANCE(249); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(103); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < 'A' || lookahead > ']') && + (lookahead < '_' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 249: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'a') + ADVANCE(250); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) + ADVANCE(103); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < 'A' || lookahead > ']') && + (lookahead < '_' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 250: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == '\\') + ADVANCE(4); + if (lookahead == 'c') + ADVANCE(251); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(103); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < 'A' || lookahead > ']') && + (lookahead < '_' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 251: + ACCEPT_TOKEN(anon_sym_esac); + if (lookahead == '\\') + ADVANCE(4); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(103); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < 'A' || lookahead > ']') && + (lookahead < '_' || lookahead > '}')) + ADVANCE(5); + END_STATE(); + case 252: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(6); + if (lookahead == '#') + ADVANCE(72); + if (lookahead == '$') + ADVANCE(8); + if (lookahead == '&') + ADVANCE(12); + if (lookahead == '\'') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(34); + if (lookahead == '<') + ADVANCE(101); + if (lookahead == '=') + ADVANCE(105); + if (lookahead == '>') + ADVANCE(75); + if (lookahead == '[') + ADVANCE(77); + if (lookahead == '\\') + ADVANCE(253); if (lookahead == ']') ADVANCE(77); if (lookahead == '`') @@ -4802,21 +4621,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(265); + SKIP(252); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(5); END_STATE(); - case 266: + case 253: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(265); + SKIP(252); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 267: + case 254: if (lookahead == '\n') ADVANCE(2); if (lookahead == '\"') @@ -4834,15 +4653,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(34); if (lookahead == '<') - ADVANCE(103); + ADVANCE(101); if (lookahead == '=') - ADVANCE(104); + ADVANCE(105); if (lookahead == '>') ADVANCE(75); if (lookahead == '[') ADVANCE(77); if (lookahead == '\\') - ADVANCE(268); + ADVANCE(255); if (lookahead == ']') ADVANCE(77); if (lookahead == '`') @@ -4858,21 +4677,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(267); + SKIP(254); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(5); END_STATE(); - case 268: + case 255: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(267); + SKIP(254); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 269: + case 256: if (lookahead == '\n') ADVANCE(2); if (lookahead == '\"') @@ -4888,13 +4707,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(34); if (lookahead == '<') - ADVANCE(74); + ADVANCE(101); if (lookahead == '>') ADVANCE(75); if (lookahead == '[') ADVANCE(77); if (lookahead == '\\') - ADVANCE(270); + ADVANCE(257); if (lookahead == ']') ADVANCE(77); if (lookahead == '`') @@ -4910,82 +4729,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(269); + SKIP(256); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(5); END_STATE(); - case 270: + case 257: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(269); + SKIP(256); if (lookahead != 0) ADVANCE(5); END_STATE(); - case 271: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(72); - if (lookahead == '&') - ADVANCE(12); - if (lookahead == ';') - ADVANCE(34); - if (lookahead == '<') - ADVANCE(199); - if (lookahead == '>') - ADVANCE(200); - if (lookahead == '\\') - SKIP(272); - if (lookahead == 'e') - ADVANCE(171); - if (lookahead == '|') - ADVANCE(67); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(271); - END_STATE(); - case 272: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(271); - END_STATE(); - case 273: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(72); - if (lookahead == '&') - ADVANCE(12); - if (lookahead == ';') - ADVANCE(34); - if (lookahead == '<') - ADVANCE(215); - if (lookahead == '>') - ADVANCE(200); - if (lookahead == '\\') - SKIP(274); - if (lookahead == 'e') - ADVANCE(171); - if (lookahead == '|') - ADVANCE(67); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(273); - END_STATE(); - case 274: - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(273); - END_STATE(); default: return false; } @@ -5327,2877 +5084,2852 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [8] = {.lex_state = 94}, [9] = {.lex_state = 94}, [10] = {.lex_state = 71, .external_lex_state = 2}, - [11] = {.lex_state = 96, .external_lex_state = 2}, - [12] = {.lex_state = 88}, + [11] = {.lex_state = 96, .external_lex_state = 3}, + [12] = {.lex_state = 98, .external_lex_state = 2}, [13] = {.lex_state = 88}, - [14] = {.lex_state = 98, .external_lex_state = 3}, - [15] = {.lex_state = 98, .external_lex_state = 4}, - [16] = {.lex_state = 94}, - [17] = {.lex_state = 102, .external_lex_state = 5}, - [18] = {.lex_state = 106}, - [19] = {.lex_state = 113}, - [20] = {.lex_state = 102, .external_lex_state = 5}, - [21] = {.lex_state = 113, .external_lex_state = 6}, - [22] = {.lex_state = 71, .external_lex_state = 2}, + [14] = {.lex_state = 88}, + [15] = {.lex_state = 100, .external_lex_state = 4}, + [16] = {.lex_state = 100, .external_lex_state = 5}, + [17] = {.lex_state = 94}, + [18] = {.lex_state = 104, .external_lex_state = 6}, + [19] = {.lex_state = 107}, + [20] = {.lex_state = 114}, + [21] = {.lex_state = 104, .external_lex_state = 6}, + [22] = {.lex_state = 114, .external_lex_state = 7}, [23] = {.lex_state = 71, .external_lex_state = 2}, [24] = {.lex_state = 71, .external_lex_state = 2}, - [25] = {.lex_state = 123, .external_lex_state = 5}, - [26] = {.lex_state = 125}, - [27] = {.lex_state = 127, .external_lex_state = 4}, - [28] = {.lex_state = 102, .external_lex_state = 7}, - [29] = {.lex_state = 129, .external_lex_state = 8}, - [30] = {.lex_state = 78}, - [31] = {.lex_state = 131, .external_lex_state = 7}, - [32] = {.lex_state = 71, .external_lex_state = 2}, - [33] = {.lex_state = 94, .external_lex_state = 2}, - [34] = {.lex_state = 94}, + [25] = {.lex_state = 71, .external_lex_state = 2}, + [26] = {.lex_state = 124, .external_lex_state = 6}, + [27] = {.lex_state = 126}, + [28] = {.lex_state = 128, .external_lex_state = 5}, + [29] = {.lex_state = 104, .external_lex_state = 5}, + [30] = {.lex_state = 132, .external_lex_state = 4}, + [31] = {.lex_state = 78}, + [32] = {.lex_state = 134, .external_lex_state = 5}, + [33] = {.lex_state = 71, .external_lex_state = 2}, + [34] = {.lex_state = 94, .external_lex_state = 2}, [35] = {.lex_state = 94}, - [36] = {.lex_state = 133, .external_lex_state = 9}, - [37] = {.lex_state = 135, .external_lex_state = 4}, - [38] = {.lex_state = 138, .external_lex_state = 4}, - [39] = {.lex_state = 88}, + [36] = {.lex_state = 94}, + [37] = {.lex_state = 136, .external_lex_state = 8}, + [38] = {.lex_state = 138, .external_lex_state = 9}, + [39] = {.lex_state = 141, .external_lex_state = 9}, [40] = {.lex_state = 88}, - [41] = {.lex_state = 142, .external_lex_state = 10}, - [42] = {.lex_state = 106}, - [43] = {.lex_state = 113}, - [44] = {.lex_state = 142, .external_lex_state = 10}, - [45] = {.lex_state = 113, .external_lex_state = 6}, - [46] = {.lex_state = 71, .external_lex_state = 2}, + [41] = {.lex_state = 88}, + [42] = {.lex_state = 145, .external_lex_state = 10}, + [43] = {.lex_state = 107}, + [44] = {.lex_state = 114}, + [45] = {.lex_state = 145, .external_lex_state = 10}, + [46] = {.lex_state = 114, .external_lex_state = 7}, [47] = {.lex_state = 71, .external_lex_state = 2}, [48] = {.lex_state = 71, .external_lex_state = 2}, - [49] = {.lex_state = 142}, - [50] = {.lex_state = 78}, - [51] = {.lex_state = 88}, - [52] = {.lex_state = 71, .external_lex_state = 2}, - [53] = {.lex_state = 94}, - [54] = {.lex_state = 96, .external_lex_state = 2}, - [55] = {.lex_state = 88}, - [56] = {.lex_state = 88}, - [57] = {.lex_state = 98, .external_lex_state = 3}, - [58] = {.lex_state = 98, .external_lex_state = 4}, - [59] = {.lex_state = 102, .external_lex_state = 5}, - [60] = {.lex_state = 102, .external_lex_state = 5}, - [61] = {.lex_state = 123, .external_lex_state = 5}, - [62] = {.lex_state = 94}, - [63] = {.lex_state = 98, .external_lex_state = 4}, - [64] = {.lex_state = 102, .external_lex_state = 7}, - [65] = {.lex_state = 129, .external_lex_state = 8}, - [66] = {.lex_state = 78}, - [67] = {.lex_state = 94, .external_lex_state = 2}, - [68] = {.lex_state = 94}, - [69] = {.lex_state = 138, .external_lex_state = 11}, - [70] = {.lex_state = 106}, - [71] = {.lex_state = 113}, - [72] = {.lex_state = 138, .external_lex_state = 11}, - [73] = {.lex_state = 113, .external_lex_state = 6}, - [74] = {.lex_state = 71, .external_lex_state = 2}, - [75] = {.lex_state = 71, .external_lex_state = 2}, - [76] = {.lex_state = 71, .external_lex_state = 2}, - [77] = {.lex_state = 138, .external_lex_state = 4}, - [78] = {.lex_state = 161}, - [79] = {.lex_state = 78}, - [80] = {.lex_state = 88}, - [81] = {.lex_state = 71, .external_lex_state = 2}, - [82] = {.lex_state = 94}, - [83] = {.lex_state = 96, .external_lex_state = 2}, - [84] = {.lex_state = 88}, - [85] = {.lex_state = 88}, - [86] = {.lex_state = 163, .external_lex_state = 3}, - [87] = {.lex_state = 163, .external_lex_state = 4}, - [88] = {.lex_state = 131, .external_lex_state = 5}, - [89] = {.lex_state = 131, .external_lex_state = 5}, - [90] = {.lex_state = 165, .external_lex_state = 5}, - [91] = {.lex_state = 163, .external_lex_state = 4}, - [92] = {.lex_state = 131, .external_lex_state = 7}, - [93] = {.lex_state = 167, .external_lex_state = 8}, + [49] = {.lex_state = 71, .external_lex_state = 2}, + [50] = {.lex_state = 145}, + [51] = {.lex_state = 78}, + [52] = {.lex_state = 98, .external_lex_state = 2}, + [53] = {.lex_state = 100, .external_lex_state = 4}, + [54] = {.lex_state = 100, .external_lex_state = 5}, + [55] = {.lex_state = 104, .external_lex_state = 6}, + [56] = {.lex_state = 104, .external_lex_state = 6}, + [57] = {.lex_state = 124, .external_lex_state = 6}, + [58] = {.lex_state = 94}, + [59] = {.lex_state = 128, .external_lex_state = 5}, + [60] = {.lex_state = 104, .external_lex_state = 5}, + [61] = {.lex_state = 132, .external_lex_state = 4}, + [62] = {.lex_state = 78}, + [63] = {.lex_state = 94, .external_lex_state = 2}, + [64] = {.lex_state = 94}, + [65] = {.lex_state = 141, .external_lex_state = 11}, + [66] = {.lex_state = 107}, + [67] = {.lex_state = 114}, + [68] = {.lex_state = 141, .external_lex_state = 11}, + [69] = {.lex_state = 114, .external_lex_state = 7}, + [70] = {.lex_state = 71, .external_lex_state = 2}, + [71] = {.lex_state = 71, .external_lex_state = 2}, + [72] = {.lex_state = 71, .external_lex_state = 2}, + [73] = {.lex_state = 141, .external_lex_state = 9}, + [74] = {.lex_state = 164}, + [75] = {.lex_state = 78}, + [76] = {.lex_state = 98, .external_lex_state = 2}, + [77] = {.lex_state = 167, .external_lex_state = 4}, + [78] = {.lex_state = 167, .external_lex_state = 5}, + [79] = {.lex_state = 134, .external_lex_state = 6}, + [80] = {.lex_state = 134, .external_lex_state = 6}, + [81] = {.lex_state = 169, .external_lex_state = 6}, + [82] = {.lex_state = 171, .external_lex_state = 5}, + [83] = {.lex_state = 134, .external_lex_state = 5}, + [84] = {.lex_state = 173, .external_lex_state = 4}, + [85] = {.lex_state = 78}, + [86] = {.lex_state = 71, .external_lex_state = 2}, + [87] = {.lex_state = 94, .external_lex_state = 2}, + [88] = {.lex_state = 175, .external_lex_state = 5}, + [89] = {.lex_state = 128, .external_lex_state = 5}, + [90] = {.lex_state = 132, .external_lex_state = 4}, + [91] = {.lex_state = 96, .external_lex_state = 3}, + [92] = {.lex_state = 78}, + [93] = {.lex_state = 175, .external_lex_state = 5}, [94] = {.lex_state = 78}, - [95] = {.lex_state = 71, .external_lex_state = 2}, - [96] = {.lex_state = 94, .external_lex_state = 2}, - [97] = {.lex_state = 78}, - [98] = {.lex_state = 169, .external_lex_state = 4}, - [99] = {.lex_state = 78}, - [100] = {.lex_state = 88}, - [101] = {.lex_state = 88}, - [102] = {.lex_state = 175, .external_lex_state = 12}, - [103] = {.lex_state = 106}, - [104] = {.lex_state = 113}, - [105] = {.lex_state = 175, .external_lex_state = 12}, - [106] = {.lex_state = 113, .external_lex_state = 6}, - [107] = {.lex_state = 71, .external_lex_state = 2}, - [108] = {.lex_state = 71, .external_lex_state = 2}, - [109] = {.lex_state = 71, .external_lex_state = 2}, - [110] = {.lex_state = 175, .external_lex_state = 13}, - [111] = {.lex_state = 88}, - [112] = {.lex_state = 178, .external_lex_state = 10}, - [113] = {.lex_state = 178, .external_lex_state = 10}, - [114] = {.lex_state = 178}, - [115] = {.lex_state = 78}, - [116] = {.lex_state = 98, .external_lex_state = 14}, - [117] = {.lex_state = 106}, - [118] = {.lex_state = 113}, - [119] = {.lex_state = 98, .external_lex_state = 14}, - [120] = {.lex_state = 113, .external_lex_state = 6}, - [121] = {.lex_state = 71, .external_lex_state = 2}, - [122] = {.lex_state = 71, .external_lex_state = 2}, - [123] = {.lex_state = 71, .external_lex_state = 2}, - [124] = {.lex_state = 78}, - [125] = {.lex_state = 98, .external_lex_state = 3}, - [126] = {.lex_state = 98, .external_lex_state = 11}, - [127] = {.lex_state = 106}, - [128] = {.lex_state = 113}, - [129] = {.lex_state = 98, .external_lex_state = 11}, - [130] = {.lex_state = 113, .external_lex_state = 6}, - [131] = {.lex_state = 71, .external_lex_state = 2}, - [132] = {.lex_state = 71, .external_lex_state = 2}, - [133] = {.lex_state = 71, .external_lex_state = 2}, - [134] = {.lex_state = 98, .external_lex_state = 4}, - [135] = {.lex_state = 94, .external_lex_state = 15}, - [136] = {.lex_state = 106}, - [137] = {.lex_state = 113}, - [138] = {.lex_state = 94, .external_lex_state = 15}, - [139] = {.lex_state = 113, .external_lex_state = 6}, - [140] = {.lex_state = 71, .external_lex_state = 2}, - [141] = {.lex_state = 71, .external_lex_state = 2}, - [142] = {.lex_state = 71, .external_lex_state = 2}, - [143] = {.lex_state = 94, .external_lex_state = 2}, - [144] = {.lex_state = 94}, - [145] = {.lex_state = 102, .external_lex_state = 5}, - [146] = {.lex_state = 131, .external_lex_state = 5}, - [147] = {.lex_state = 181}, - [148] = {.lex_state = 106, .external_lex_state = 10}, - [149] = {.lex_state = 113, .external_lex_state = 6}, - [150] = {.lex_state = 71, .external_lex_state = 2}, - [151] = {.lex_state = 71, .external_lex_state = 2}, - [152] = {.lex_state = 106}, - [153] = {.lex_state = 131, .external_lex_state = 5}, - [154] = {.lex_state = 131, .external_lex_state = 5}, - [155] = {.lex_state = 131, .external_lex_state = 5}, - [156] = {.lex_state = 78}, - [157] = {.lex_state = 187, .external_lex_state = 6}, - [158] = {.lex_state = 189, .external_lex_state = 16}, - [159] = {.lex_state = 189, .external_lex_state = 16}, - [160] = {.lex_state = 163, .external_lex_state = 4}, - [161] = {.lex_state = 167, .external_lex_state = 8}, - [162] = {.lex_state = 71, .external_lex_state = 2}, - [163] = {.lex_state = 88}, + [95] = {.lex_state = 88}, + [96] = {.lex_state = 88}, + [97] = {.lex_state = 181, .external_lex_state = 12}, + [98] = {.lex_state = 107}, + [99] = {.lex_state = 114}, + [100] = {.lex_state = 181, .external_lex_state = 12}, + [101] = {.lex_state = 114, .external_lex_state = 7}, + [102] = {.lex_state = 71, .external_lex_state = 2}, + [103] = {.lex_state = 71, .external_lex_state = 2}, + [104] = {.lex_state = 71, .external_lex_state = 2}, + [105] = {.lex_state = 181, .external_lex_state = 13}, + [106] = {.lex_state = 88}, + [107] = {.lex_state = 184, .external_lex_state = 10}, + [108] = {.lex_state = 184, .external_lex_state = 10}, + [109] = {.lex_state = 184}, + [110] = {.lex_state = 78}, + [111] = {.lex_state = 100, .external_lex_state = 14}, + [112] = {.lex_state = 107}, + [113] = {.lex_state = 114}, + [114] = {.lex_state = 100, .external_lex_state = 14}, + [115] = {.lex_state = 114, .external_lex_state = 7}, + [116] = {.lex_state = 71, .external_lex_state = 2}, + [117] = {.lex_state = 71, .external_lex_state = 2}, + [118] = {.lex_state = 71, .external_lex_state = 2}, + [119] = {.lex_state = 78}, + [120] = {.lex_state = 100, .external_lex_state = 4}, + [121] = {.lex_state = 100, .external_lex_state = 6}, + [122] = {.lex_state = 107}, + [123] = {.lex_state = 114}, + [124] = {.lex_state = 100, .external_lex_state = 6}, + [125] = {.lex_state = 114, .external_lex_state = 7}, + [126] = {.lex_state = 71, .external_lex_state = 2}, + [127] = {.lex_state = 71, .external_lex_state = 2}, + [128] = {.lex_state = 71, .external_lex_state = 2}, + [129] = {.lex_state = 100, .external_lex_state = 5}, + [130] = {.lex_state = 94, .external_lex_state = 15}, + [131] = {.lex_state = 107}, + [132] = {.lex_state = 114}, + [133] = {.lex_state = 94, .external_lex_state = 15}, + [134] = {.lex_state = 114, .external_lex_state = 7}, + [135] = {.lex_state = 71, .external_lex_state = 2}, + [136] = {.lex_state = 71, .external_lex_state = 2}, + [137] = {.lex_state = 71, .external_lex_state = 2}, + [138] = {.lex_state = 94, .external_lex_state = 2}, + [139] = {.lex_state = 94}, + [140] = {.lex_state = 104, .external_lex_state = 6}, + [141] = {.lex_state = 134, .external_lex_state = 6}, + [142] = {.lex_state = 187}, + [143] = {.lex_state = 107, .external_lex_state = 10}, + [144] = {.lex_state = 114, .external_lex_state = 7}, + [145] = {.lex_state = 71, .external_lex_state = 2}, + [146] = {.lex_state = 71, .external_lex_state = 2}, + [147] = {.lex_state = 107}, + [148] = {.lex_state = 134, .external_lex_state = 6}, + [149] = {.lex_state = 134, .external_lex_state = 6}, + [150] = {.lex_state = 134, .external_lex_state = 6}, + [151] = {.lex_state = 78}, + [152] = {.lex_state = 193, .external_lex_state = 7}, + [153] = {.lex_state = 195, .external_lex_state = 16}, + [154] = {.lex_state = 195, .external_lex_state = 16}, + [155] = {.lex_state = 171, .external_lex_state = 5}, + [156] = {.lex_state = 173, .external_lex_state = 4}, + [157] = {.lex_state = 71, .external_lex_state = 2}, + [158] = {.lex_state = 98, .external_lex_state = 2}, + [159] = {.lex_state = 100, .external_lex_state = 4}, + [160] = {.lex_state = 100, .external_lex_state = 5}, + [161] = {.lex_state = 199, .external_lex_state = 5}, + [162] = {.lex_state = 104, .external_lex_state = 5}, + [163] = {.lex_state = 132, .external_lex_state = 4}, [164] = {.lex_state = 71, .external_lex_state = 2}, - [165] = {.lex_state = 94}, - [166] = {.lex_state = 96, .external_lex_state = 2}, - [167] = {.lex_state = 88}, - [168] = {.lex_state = 88}, - [169] = {.lex_state = 98, .external_lex_state = 3}, - [170] = {.lex_state = 98, .external_lex_state = 4}, - [171] = {.lex_state = 123, .external_lex_state = 5}, - [172] = {.lex_state = 98, .external_lex_state = 4}, - [173] = {.lex_state = 102, .external_lex_state = 7}, - [174] = {.lex_state = 129, .external_lex_state = 8}, + [165] = {.lex_state = 94, .external_lex_state = 2}, + [166] = {.lex_state = 171, .external_lex_state = 5}, + [167] = {.lex_state = 173, .external_lex_state = 4}, + [168] = {.lex_state = 71, .external_lex_state = 2}, + [169] = {.lex_state = 78}, + [170] = {.lex_state = 201, .external_lex_state = 9}, + [171] = {.lex_state = 203, .external_lex_state = 17}, + [172] = {.lex_state = 71}, + [173] = {.lex_state = 71, .external_lex_state = 2}, + [174] = {.lex_state = 71, .external_lex_state = 2}, [175] = {.lex_state = 71, .external_lex_state = 2}, - [176] = {.lex_state = 94, .external_lex_state = 2}, - [177] = {.lex_state = 163, .external_lex_state = 4}, - [178] = {.lex_state = 167, .external_lex_state = 8}, - [179] = {.lex_state = 71, .external_lex_state = 2}, - [180] = {.lex_state = 78}, - [181] = {.lex_state = 71, .external_lex_state = 2}, - [182] = {.lex_state = 71, .external_lex_state = 2}, - [183] = {.lex_state = 71, .external_lex_state = 2}, - [184] = {.lex_state = 169, .external_lex_state = 4}, - [185] = {.lex_state = 193, .external_lex_state = 17}, - [186] = {.lex_state = 71}, - [187] = {.lex_state = 196, .external_lex_state = 18}, - [188] = {.lex_state = 94}, - [189] = {.lex_state = 71, .external_lex_state = 19}, - [190] = {.lex_state = 94}, - [191] = {.lex_state = 102, .external_lex_state = 5}, - [192] = {.lex_state = 102, .external_lex_state = 5}, - [193] = {.lex_state = 169, .external_lex_state = 4}, - [194] = {.lex_state = 198, .external_lex_state = 7}, - [195] = {.lex_state = 102, .external_lex_state = 7}, - [196] = {.lex_state = 127, .external_lex_state = 4}, - [197] = {.lex_state = 129, .external_lex_state = 8}, - [198] = {.lex_state = 71, .external_lex_state = 2}, - [199] = {.lex_state = 102, .external_lex_state = 7}, - [200] = {.lex_state = 94, .external_lex_state = 2}, - [201] = {.lex_state = 94, .external_lex_state = 15}, - [202] = {.lex_state = 94, .external_lex_state = 15}, - [203] = {.lex_state = 94, .external_lex_state = 2}, - [204] = {.lex_state = 202, .external_lex_state = 12}, - [205] = {.lex_state = 202, .external_lex_state = 12}, - [206] = {.lex_state = 202, .external_lex_state = 12}, - [207] = {.lex_state = 167, .external_lex_state = 8}, - [208] = {.lex_state = 204}, - [209] = {.lex_state = 129, .external_lex_state = 20}, - [210] = {.lex_state = 106}, - [211] = {.lex_state = 113}, - [212] = {.lex_state = 129, .external_lex_state = 20}, - [213] = {.lex_state = 113, .external_lex_state = 6}, + [176] = {.lex_state = 94}, + [177] = {.lex_state = 71, .external_lex_state = 18}, + [178] = {.lex_state = 94}, + [179] = {.lex_state = 206, .external_lex_state = 9}, + [180] = {.lex_state = 128, .external_lex_state = 5}, + [181] = {.lex_state = 208, .external_lex_state = 19}, + [182] = {.lex_state = 104, .external_lex_state = 6}, + [183] = {.lex_state = 104, .external_lex_state = 6}, + [184] = {.lex_state = 104, .external_lex_state = 5}, + [185] = {.lex_state = 128, .external_lex_state = 5}, + [186] = {.lex_state = 132, .external_lex_state = 4}, + [187] = {.lex_state = 71, .external_lex_state = 2}, + [188] = {.lex_state = 104, .external_lex_state = 5}, + [189] = {.lex_state = 94, .external_lex_state = 2}, + [190] = {.lex_state = 94, .external_lex_state = 15}, + [191] = {.lex_state = 94, .external_lex_state = 15}, + [192] = {.lex_state = 94, .external_lex_state = 2}, + [193] = {.lex_state = 210, .external_lex_state = 12}, + [194] = {.lex_state = 210, .external_lex_state = 12}, + [195] = {.lex_state = 210, .external_lex_state = 12}, + [196] = {.lex_state = 173, .external_lex_state = 4}, + [197] = {.lex_state = 212}, + [198] = {.lex_state = 132, .external_lex_state = 14}, + [199] = {.lex_state = 107}, + [200] = {.lex_state = 114}, + [201] = {.lex_state = 132, .external_lex_state = 14}, + [202] = {.lex_state = 114, .external_lex_state = 7}, + [203] = {.lex_state = 71, .external_lex_state = 2}, + [204] = {.lex_state = 71, .external_lex_state = 2}, + [205] = {.lex_state = 71, .external_lex_state = 2}, + [206] = {.lex_state = 138, .external_lex_state = 9}, + [207] = {.lex_state = 88}, + [208] = {.lex_state = 88}, + [209] = {.lex_state = 214, .external_lex_state = 11}, + [210] = {.lex_state = 107}, + [211] = {.lex_state = 114}, + [212] = {.lex_state = 214, .external_lex_state = 11}, + [213] = {.lex_state = 114, .external_lex_state = 7}, [214] = {.lex_state = 71, .external_lex_state = 2}, [215] = {.lex_state = 71, .external_lex_state = 2}, [216] = {.lex_state = 71, .external_lex_state = 2}, - [217] = {.lex_state = 135, .external_lex_state = 4}, - [218] = {.lex_state = 88}, - [219] = {.lex_state = 88}, - [220] = {.lex_state = 206, .external_lex_state = 11}, - [221] = {.lex_state = 106}, - [222] = {.lex_state = 113}, - [223] = {.lex_state = 206, .external_lex_state = 11}, - [224] = {.lex_state = 113, .external_lex_state = 6}, - [225] = {.lex_state = 71, .external_lex_state = 2}, - [226] = {.lex_state = 71, .external_lex_state = 2}, + [217] = {.lex_state = 214, .external_lex_state = 9}, + [218] = {.lex_state = 94}, + [219] = {.lex_state = 94}, + [220] = {.lex_state = 88}, + [221] = {.lex_state = 88}, + [222] = {.lex_state = 217, .external_lex_state = 10}, + [223] = {.lex_state = 107}, + [224] = {.lex_state = 114}, + [225] = {.lex_state = 217, .external_lex_state = 10}, + [226] = {.lex_state = 114, .external_lex_state = 7}, [227] = {.lex_state = 71, .external_lex_state = 2}, - [228] = {.lex_state = 206, .external_lex_state = 4}, - [229] = {.lex_state = 94}, - [230] = {.lex_state = 94}, - [231] = {.lex_state = 88}, - [232] = {.lex_state = 88}, - [233] = {.lex_state = 208, .external_lex_state = 10}, - [234] = {.lex_state = 106}, - [235] = {.lex_state = 113}, - [236] = {.lex_state = 208, .external_lex_state = 10}, - [237] = {.lex_state = 113, .external_lex_state = 6}, - [238] = {.lex_state = 71, .external_lex_state = 2}, - [239] = {.lex_state = 71, .external_lex_state = 2}, - [240] = {.lex_state = 71, .external_lex_state = 2}, - [241] = {.lex_state = 208}, - [242] = {.lex_state = 142}, - [243] = {.lex_state = 94}, - [244] = {.lex_state = 142, .external_lex_state = 10}, - [245] = {.lex_state = 210, .external_lex_state = 10}, - [246] = {.lex_state = 181}, - [247] = {.lex_state = 106}, - [248] = {.lex_state = 210, .external_lex_state = 10}, - [249] = {.lex_state = 210, .external_lex_state = 10}, - [250] = {.lex_state = 210, .external_lex_state = 10}, - [251] = {.lex_state = 78}, - [252] = {.lex_state = 187, .external_lex_state = 6}, - [253] = {.lex_state = 189, .external_lex_state = 16}, - [254] = {.lex_state = 189, .external_lex_state = 16}, - [255] = {.lex_state = 163, .external_lex_state = 4}, - [256] = {.lex_state = 167, .external_lex_state = 8}, - [257] = {.lex_state = 71, .external_lex_state = 2}, - [258] = {.lex_state = 98, .external_lex_state = 4}, - [259] = {.lex_state = 129, .external_lex_state = 8}, - [260] = {.lex_state = 71, .external_lex_state = 2}, - [261] = {.lex_state = 163, .external_lex_state = 4}, - [262] = {.lex_state = 167, .external_lex_state = 8}, - [263] = {.lex_state = 71, .external_lex_state = 2}, - [264] = {.lex_state = 198, .external_lex_state = 21}, - [265] = {.lex_state = 88}, - [266] = {.lex_state = 88, .external_lex_state = 18}, - [267] = {.lex_state = 210}, - [268] = {.lex_state = 133, .external_lex_state = 9}, - [269] = {.lex_state = 142}, + [228] = {.lex_state = 71, .external_lex_state = 2}, + [229] = {.lex_state = 71, .external_lex_state = 2}, + [230] = {.lex_state = 217}, + [231] = {.lex_state = 145}, + [232] = {.lex_state = 94}, + [233] = {.lex_state = 145, .external_lex_state = 10}, + [234] = {.lex_state = 219, .external_lex_state = 10}, + [235] = {.lex_state = 187}, + [236] = {.lex_state = 107}, + [237] = {.lex_state = 219, .external_lex_state = 10}, + [238] = {.lex_state = 219, .external_lex_state = 10}, + [239] = {.lex_state = 219, .external_lex_state = 10}, + [240] = {.lex_state = 78}, + [241] = {.lex_state = 193, .external_lex_state = 7}, + [242] = {.lex_state = 195, .external_lex_state = 16}, + [243] = {.lex_state = 195, .external_lex_state = 16}, + [244] = {.lex_state = 171, .external_lex_state = 5}, + [245] = {.lex_state = 173, .external_lex_state = 4}, + [246] = {.lex_state = 71, .external_lex_state = 2}, + [247] = {.lex_state = 199, .external_lex_state = 5}, + [248] = {.lex_state = 132, .external_lex_state = 4}, + [249] = {.lex_state = 71, .external_lex_state = 2}, + [250] = {.lex_state = 171, .external_lex_state = 5}, + [251] = {.lex_state = 173, .external_lex_state = 4}, + [252] = {.lex_state = 71, .external_lex_state = 2}, + [253] = {.lex_state = 175, .external_lex_state = 5}, + [254] = {.lex_state = 88}, + [255] = {.lex_state = 88, .external_lex_state = 19}, + [256] = {.lex_state = 219}, + [257] = {.lex_state = 136, .external_lex_state = 8}, + [258] = {.lex_state = 78}, + [259] = {.lex_state = 100, .external_lex_state = 14}, + [260] = {.lex_state = 100, .external_lex_state = 14}, + [261] = {.lex_state = 78}, + [262] = {.lex_state = 100, .external_lex_state = 4}, + [263] = {.lex_state = 100, .external_lex_state = 6}, + [264] = {.lex_state = 100, .external_lex_state = 6}, + [265] = {.lex_state = 100, .external_lex_state = 5}, + [266] = {.lex_state = 104, .external_lex_state = 6}, + [267] = {.lex_state = 71, .external_lex_state = 2}, + [268] = {.lex_state = 175, .external_lex_state = 5}, + [269] = {.lex_state = 71}, [270] = {.lex_state = 94}, - [271] = {.lex_state = 161}, - [272] = {.lex_state = 175, .external_lex_state = 13}, - [273] = {.lex_state = 178}, - [274] = {.lex_state = 78}, - [275] = {.lex_state = 98, .external_lex_state = 14}, - [276] = {.lex_state = 98, .external_lex_state = 14}, - [277] = {.lex_state = 78}, - [278] = {.lex_state = 98, .external_lex_state = 3}, - [279] = {.lex_state = 98, .external_lex_state = 11}, - [280] = {.lex_state = 98, .external_lex_state = 11}, - [281] = {.lex_state = 98, .external_lex_state = 4}, - [282] = {.lex_state = 102, .external_lex_state = 5}, - [283] = {.lex_state = 78}, - [284] = {.lex_state = 71, .external_lex_state = 2}, - [285] = {.lex_state = 198, .external_lex_state = 7}, - [286] = {.lex_state = 94}, - [287] = {.lex_state = 71, .external_lex_state = 2}, - [288] = {.lex_state = 71, .external_lex_state = 2}, - [289] = {.lex_state = 71}, - [290] = {.lex_state = 196, .external_lex_state = 18}, - [291] = {.lex_state = 94}, - [292] = {.lex_state = 94}, - [293] = {.lex_state = 102, .external_lex_state = 5}, - [294] = {.lex_state = 102, .external_lex_state = 5}, - [295] = {.lex_state = 198, .external_lex_state = 7}, - [296] = {.lex_state = 102, .external_lex_state = 7}, - [297] = {.lex_state = 102, .external_lex_state = 7}, - [298] = {.lex_state = 71, .external_lex_state = 2}, - [299] = {.lex_state = 94}, - [300] = {.lex_state = 135, .external_lex_state = 4}, - [301] = {.lex_state = 138}, - [302] = {.lex_state = 138, .external_lex_state = 11}, - [303] = {.lex_state = 138, .external_lex_state = 11}, - [304] = {.lex_state = 181}, - [305] = {.lex_state = 106}, - [306] = {.lex_state = 138, .external_lex_state = 11}, - [307] = {.lex_state = 138, .external_lex_state = 11}, - [308] = {.lex_state = 138, .external_lex_state = 11}, - [309] = {.lex_state = 135, .external_lex_state = 4}, - [310] = {.lex_state = 138}, + [271] = {.lex_state = 71, .external_lex_state = 2}, + [272] = {.lex_state = 71, .external_lex_state = 2}, + [273] = {.lex_state = 94}, + [274] = {.lex_state = 94}, + [275] = {.lex_state = 138, .external_lex_state = 9}, + [276] = {.lex_state = 128, .external_lex_state = 5}, + [277] = {.lex_state = 208, .external_lex_state = 19}, + [278] = {.lex_state = 104, .external_lex_state = 6}, + [279] = {.lex_state = 104, .external_lex_state = 6}, + [280] = {.lex_state = 104, .external_lex_state = 5}, + [281] = {.lex_state = 104, .external_lex_state = 5}, + [282] = {.lex_state = 71, .external_lex_state = 2}, + [283] = {.lex_state = 94}, + [284] = {.lex_state = 138, .external_lex_state = 9}, + [285] = {.lex_state = 141}, + [286] = {.lex_state = 141, .external_lex_state = 11}, + [287] = {.lex_state = 141, .external_lex_state = 11}, + [288] = {.lex_state = 187}, + [289] = {.lex_state = 107}, + [290] = {.lex_state = 141, .external_lex_state = 11}, + [291] = {.lex_state = 141, .external_lex_state = 11}, + [292] = {.lex_state = 141, .external_lex_state = 11}, + [293] = {.lex_state = 138, .external_lex_state = 9}, + [294] = {.lex_state = 141}, + [295] = {.lex_state = 78}, + [296] = {.lex_state = 193, .external_lex_state = 7}, + [297] = {.lex_state = 195, .external_lex_state = 16}, + [298] = {.lex_state = 195, .external_lex_state = 16}, + [299] = {.lex_state = 171, .external_lex_state = 5}, + [300] = {.lex_state = 173, .external_lex_state = 4}, + [301] = {.lex_state = 71, .external_lex_state = 2}, + [302] = {.lex_state = 199, .external_lex_state = 5}, + [303] = {.lex_state = 132, .external_lex_state = 4}, + [304] = {.lex_state = 71, .external_lex_state = 2}, + [305] = {.lex_state = 171, .external_lex_state = 5}, + [306] = {.lex_state = 173, .external_lex_state = 4}, + [307] = {.lex_state = 71, .external_lex_state = 2}, + [308] = {.lex_state = 78}, + [309] = {.lex_state = 175, .external_lex_state = 5}, + [310] = {.lex_state = 136, .external_lex_state = 8}, [311] = {.lex_state = 78}, - [312] = {.lex_state = 187, .external_lex_state = 6}, - [313] = {.lex_state = 189, .external_lex_state = 16}, - [314] = {.lex_state = 189, .external_lex_state = 16}, - [315] = {.lex_state = 163, .external_lex_state = 4}, - [316] = {.lex_state = 167, .external_lex_state = 8}, - [317] = {.lex_state = 71, .external_lex_state = 2}, - [318] = {.lex_state = 98, .external_lex_state = 4}, - [319] = {.lex_state = 129, .external_lex_state = 8}, - [320] = {.lex_state = 71, .external_lex_state = 2}, - [321] = {.lex_state = 163, .external_lex_state = 4}, - [322] = {.lex_state = 167, .external_lex_state = 8}, - [323] = {.lex_state = 71, .external_lex_state = 2}, - [324] = {.lex_state = 78}, - [325] = {.lex_state = 212, .external_lex_state = 22}, - [326] = {.lex_state = 214, .external_lex_state = 21}, - [327] = {.lex_state = 133, .external_lex_state = 9}, - [328] = {.lex_state = 142}, - [329] = {.lex_state = 94}, - [330] = {.lex_state = 161}, - [331] = {.lex_state = 175, .external_lex_state = 13}, - [332] = {.lex_state = 178}, - [333] = {.lex_state = 78}, - [334] = {.lex_state = 163, .external_lex_state = 14}, - [335] = {.lex_state = 163, .external_lex_state = 14}, - [336] = {.lex_state = 78}, - [337] = {.lex_state = 163, .external_lex_state = 3}, - [338] = {.lex_state = 163, .external_lex_state = 11}, - [339] = {.lex_state = 163, .external_lex_state = 11}, - [340] = {.lex_state = 163, .external_lex_state = 4}, - [341] = {.lex_state = 131, .external_lex_state = 5}, - [342] = {.lex_state = 78}, - [343] = {.lex_state = 217, .external_lex_state = 2}, - [344] = {.lex_state = 71, .external_lex_state = 2}, - [345] = {.lex_state = 169, .external_lex_state = 4}, - [346] = {.lex_state = 71, .external_lex_state = 2}, - [347] = {.lex_state = 71}, - [348] = {.lex_state = 196, .external_lex_state = 18}, - [349] = {.lex_state = 94}, - [350] = {.lex_state = 94}, - [351] = {.lex_state = 131, .external_lex_state = 5}, - [352] = {.lex_state = 131, .external_lex_state = 5}, - [353] = {.lex_state = 220, .external_lex_state = 7}, - [354] = {.lex_state = 131, .external_lex_state = 7}, - [355] = {.lex_state = 163, .external_lex_state = 4}, - [356] = {.lex_state = 167, .external_lex_state = 8}, - [357] = {.lex_state = 131, .external_lex_state = 7}, - [358] = {.lex_state = 133, .external_lex_state = 9}, - [359] = {.lex_state = 208}, - [360] = {.lex_state = 175, .external_lex_state = 13}, - [361] = {.lex_state = 94}, - [362] = {.lex_state = 175, .external_lex_state = 12}, - [363] = {.lex_state = 175, .external_lex_state = 12}, - [364] = {.lex_state = 181}, - [365] = {.lex_state = 106}, - [366] = {.lex_state = 175, .external_lex_state = 12}, - [367] = {.lex_state = 175, .external_lex_state = 12}, - [368] = {.lex_state = 175, .external_lex_state = 12}, - [369] = {.lex_state = 78}, - [370] = {.lex_state = 187, .external_lex_state = 6}, - [371] = {.lex_state = 189, .external_lex_state = 16}, - [372] = {.lex_state = 189, .external_lex_state = 16}, - [373] = {.lex_state = 163, .external_lex_state = 4}, - [374] = {.lex_state = 167, .external_lex_state = 8}, - [375] = {.lex_state = 71, .external_lex_state = 2}, - [376] = {.lex_state = 98, .external_lex_state = 4}, - [377] = {.lex_state = 129, .external_lex_state = 8}, - [378] = {.lex_state = 71, .external_lex_state = 2}, - [379] = {.lex_state = 163, .external_lex_state = 4}, - [380] = {.lex_state = 167, .external_lex_state = 8}, - [381] = {.lex_state = 71, .external_lex_state = 2}, - [382] = {.lex_state = 88}, - [383] = {.lex_state = 88, .external_lex_state = 18}, - [384] = {.lex_state = 175, .external_lex_state = 13}, - [385] = {.lex_state = 178}, - [386] = {.lex_state = 178, .external_lex_state = 10}, - [387] = {.lex_state = 88}, - [388] = {.lex_state = 88, .external_lex_state = 18}, - [389] = {.lex_state = 133, .external_lex_state = 9}, - [390] = {.lex_state = 94}, - [391] = {.lex_state = 98, .external_lex_state = 14}, - [392] = {.lex_state = 163, .external_lex_state = 14}, - [393] = {.lex_state = 181}, - [394] = {.lex_state = 106}, - [395] = {.lex_state = 163, .external_lex_state = 14}, - [396] = {.lex_state = 163, .external_lex_state = 14}, - [397] = {.lex_state = 163, .external_lex_state = 14}, - [398] = {.lex_state = 78}, - [399] = {.lex_state = 187, .external_lex_state = 6}, - [400] = {.lex_state = 189, .external_lex_state = 16}, - [401] = {.lex_state = 189, .external_lex_state = 16}, - [402] = {.lex_state = 163, .external_lex_state = 4}, - [403] = {.lex_state = 167, .external_lex_state = 8}, - [404] = {.lex_state = 71, .external_lex_state = 2}, - [405] = {.lex_state = 98, .external_lex_state = 4}, - [406] = {.lex_state = 129, .external_lex_state = 8}, - [407] = {.lex_state = 71, .external_lex_state = 2}, - [408] = {.lex_state = 163, .external_lex_state = 4}, - [409] = {.lex_state = 167, .external_lex_state = 8}, - [410] = {.lex_state = 71, .external_lex_state = 2}, - [411] = {.lex_state = 98, .external_lex_state = 3}, - [412] = {.lex_state = 94}, - [413] = {.lex_state = 98, .external_lex_state = 11}, - [414] = {.lex_state = 163, .external_lex_state = 11}, - [415] = {.lex_state = 181}, - [416] = {.lex_state = 106}, - [417] = {.lex_state = 163, .external_lex_state = 11}, - [418] = {.lex_state = 163, .external_lex_state = 11}, - [419] = {.lex_state = 163, .external_lex_state = 11}, - [420] = {.lex_state = 78}, - [421] = {.lex_state = 187, .external_lex_state = 6}, - [422] = {.lex_state = 189, .external_lex_state = 16}, - [423] = {.lex_state = 189, .external_lex_state = 16}, - [424] = {.lex_state = 163, .external_lex_state = 4}, - [425] = {.lex_state = 167, .external_lex_state = 8}, - [426] = {.lex_state = 71, .external_lex_state = 2}, - [427] = {.lex_state = 98, .external_lex_state = 4}, - [428] = {.lex_state = 129, .external_lex_state = 8}, - [429] = {.lex_state = 71, .external_lex_state = 2}, - [430] = {.lex_state = 163, .external_lex_state = 4}, - [431] = {.lex_state = 167, .external_lex_state = 8}, - [432] = {.lex_state = 71, .external_lex_state = 2}, - [433] = {.lex_state = 98, .external_lex_state = 4}, - [434] = {.lex_state = 94}, - [435] = {.lex_state = 94, .external_lex_state = 15}, - [436] = {.lex_state = 94, .external_lex_state = 15}, - [437] = {.lex_state = 181}, - [438] = {.lex_state = 106}, - [439] = {.lex_state = 94, .external_lex_state = 15}, - [440] = {.lex_state = 94, .external_lex_state = 15}, - [441] = {.lex_state = 94, .external_lex_state = 15}, - [442] = {.lex_state = 78}, - [443] = {.lex_state = 187, .external_lex_state = 6}, - [444] = {.lex_state = 189, .external_lex_state = 16}, - [445] = {.lex_state = 189, .external_lex_state = 16}, - [446] = {.lex_state = 163, .external_lex_state = 4}, - [447] = {.lex_state = 167, .external_lex_state = 8}, - [448] = {.lex_state = 71, .external_lex_state = 2}, - [449] = {.lex_state = 98, .external_lex_state = 4}, - [450] = {.lex_state = 129, .external_lex_state = 8}, - [451] = {.lex_state = 71, .external_lex_state = 2}, - [452] = {.lex_state = 163, .external_lex_state = 4}, - [453] = {.lex_state = 167, .external_lex_state = 8}, - [454] = {.lex_state = 71, .external_lex_state = 2}, - [455] = {.lex_state = 131, .external_lex_state = 5}, - [456] = {.lex_state = 102, .external_lex_state = 5}, - [457] = {.lex_state = 106, .external_lex_state = 10}, - [458] = {.lex_state = 131, .external_lex_state = 5}, - [459] = {.lex_state = 106, .external_lex_state = 10}, - [460] = {.lex_state = 106, .external_lex_state = 10}, - [461] = {.lex_state = 106}, - [462] = {.lex_state = 78}, - [463] = {.lex_state = 187, .external_lex_state = 6}, - [464] = {.lex_state = 189, .external_lex_state = 16}, - [465] = {.lex_state = 189, .external_lex_state = 16}, - [466] = {.lex_state = 163, .external_lex_state = 4}, - [467] = {.lex_state = 167, .external_lex_state = 8}, + [312] = {.lex_state = 167, .external_lex_state = 14}, + [313] = {.lex_state = 167, .external_lex_state = 14}, + [314] = {.lex_state = 78}, + [315] = {.lex_state = 167, .external_lex_state = 4}, + [316] = {.lex_state = 167, .external_lex_state = 6}, + [317] = {.lex_state = 167, .external_lex_state = 6}, + [318] = {.lex_state = 167, .external_lex_state = 5}, + [319] = {.lex_state = 134, .external_lex_state = 6}, + [320] = {.lex_state = 71}, + [321] = {.lex_state = 221, .external_lex_state = 2}, + [322] = {.lex_state = 71, .external_lex_state = 2}, + [323] = {.lex_state = 175, .external_lex_state = 5}, + [324] = {.lex_state = 71, .external_lex_state = 2}, + [325] = {.lex_state = 94}, + [326] = {.lex_state = 94}, + [327] = {.lex_state = 138, .external_lex_state = 9}, + [328] = {.lex_state = 171, .external_lex_state = 5}, + [329] = {.lex_state = 208, .external_lex_state = 19}, + [330] = {.lex_state = 134, .external_lex_state = 6}, + [331] = {.lex_state = 134, .external_lex_state = 6}, + [332] = {.lex_state = 134, .external_lex_state = 5}, + [333] = {.lex_state = 171, .external_lex_state = 5}, + [334] = {.lex_state = 173, .external_lex_state = 4}, + [335] = {.lex_state = 134, .external_lex_state = 5}, + [336] = {.lex_state = 96, .external_lex_state = 3}, + [337] = {.lex_state = 138, .external_lex_state = 9}, + [338] = {.lex_state = 175, .external_lex_state = 5}, + [339] = {.lex_state = 96, .external_lex_state = 3}, + [340] = {.lex_state = 136, .external_lex_state = 8}, + [341] = {.lex_state = 217}, + [342] = {.lex_state = 181, .external_lex_state = 13}, + [343] = {.lex_state = 94}, + [344] = {.lex_state = 181, .external_lex_state = 12}, + [345] = {.lex_state = 181, .external_lex_state = 12}, + [346] = {.lex_state = 187}, + [347] = {.lex_state = 107}, + [348] = {.lex_state = 181, .external_lex_state = 12}, + [349] = {.lex_state = 181, .external_lex_state = 12}, + [350] = {.lex_state = 181, .external_lex_state = 12}, + [351] = {.lex_state = 78}, + [352] = {.lex_state = 193, .external_lex_state = 7}, + [353] = {.lex_state = 195, .external_lex_state = 16}, + [354] = {.lex_state = 195, .external_lex_state = 16}, + [355] = {.lex_state = 171, .external_lex_state = 5}, + [356] = {.lex_state = 173, .external_lex_state = 4}, + [357] = {.lex_state = 71, .external_lex_state = 2}, + [358] = {.lex_state = 199, .external_lex_state = 5}, + [359] = {.lex_state = 132, .external_lex_state = 4}, + [360] = {.lex_state = 71, .external_lex_state = 2}, + [361] = {.lex_state = 171, .external_lex_state = 5}, + [362] = {.lex_state = 173, .external_lex_state = 4}, + [363] = {.lex_state = 71, .external_lex_state = 2}, + [364] = {.lex_state = 88}, + [365] = {.lex_state = 88, .external_lex_state = 19}, + [366] = {.lex_state = 181, .external_lex_state = 13}, + [367] = {.lex_state = 184}, + [368] = {.lex_state = 184, .external_lex_state = 10}, + [369] = {.lex_state = 88}, + [370] = {.lex_state = 88, .external_lex_state = 19}, + [371] = {.lex_state = 136, .external_lex_state = 8}, + [372] = {.lex_state = 94}, + [373] = {.lex_state = 100, .external_lex_state = 14}, + [374] = {.lex_state = 167, .external_lex_state = 14}, + [375] = {.lex_state = 187}, + [376] = {.lex_state = 107}, + [377] = {.lex_state = 167, .external_lex_state = 14}, + [378] = {.lex_state = 167, .external_lex_state = 14}, + [379] = {.lex_state = 167, .external_lex_state = 14}, + [380] = {.lex_state = 78}, + [381] = {.lex_state = 193, .external_lex_state = 7}, + [382] = {.lex_state = 195, .external_lex_state = 16}, + [383] = {.lex_state = 195, .external_lex_state = 16}, + [384] = {.lex_state = 171, .external_lex_state = 5}, + [385] = {.lex_state = 173, .external_lex_state = 4}, + [386] = {.lex_state = 71, .external_lex_state = 2}, + [387] = {.lex_state = 199, .external_lex_state = 5}, + [388] = {.lex_state = 132, .external_lex_state = 4}, + [389] = {.lex_state = 71, .external_lex_state = 2}, + [390] = {.lex_state = 171, .external_lex_state = 5}, + [391] = {.lex_state = 173, .external_lex_state = 4}, + [392] = {.lex_state = 71, .external_lex_state = 2}, + [393] = {.lex_state = 100, .external_lex_state = 4}, + [394] = {.lex_state = 94}, + [395] = {.lex_state = 100, .external_lex_state = 6}, + [396] = {.lex_state = 167, .external_lex_state = 6}, + [397] = {.lex_state = 187}, + [398] = {.lex_state = 107}, + [399] = {.lex_state = 167, .external_lex_state = 6}, + [400] = {.lex_state = 167, .external_lex_state = 6}, + [401] = {.lex_state = 167, .external_lex_state = 6}, + [402] = {.lex_state = 78}, + [403] = {.lex_state = 193, .external_lex_state = 7}, + [404] = {.lex_state = 195, .external_lex_state = 16}, + [405] = {.lex_state = 195, .external_lex_state = 16}, + [406] = {.lex_state = 171, .external_lex_state = 5}, + [407] = {.lex_state = 173, .external_lex_state = 4}, + [408] = {.lex_state = 71, .external_lex_state = 2}, + [409] = {.lex_state = 199, .external_lex_state = 5}, + [410] = {.lex_state = 132, .external_lex_state = 4}, + [411] = {.lex_state = 71, .external_lex_state = 2}, + [412] = {.lex_state = 171, .external_lex_state = 5}, + [413] = {.lex_state = 173, .external_lex_state = 4}, + [414] = {.lex_state = 71, .external_lex_state = 2}, + [415] = {.lex_state = 100, .external_lex_state = 5}, + [416] = {.lex_state = 94}, + [417] = {.lex_state = 94, .external_lex_state = 15}, + [418] = {.lex_state = 94, .external_lex_state = 15}, + [419] = {.lex_state = 187}, + [420] = {.lex_state = 107}, + [421] = {.lex_state = 94, .external_lex_state = 15}, + [422] = {.lex_state = 94, .external_lex_state = 15}, + [423] = {.lex_state = 94, .external_lex_state = 15}, + [424] = {.lex_state = 78}, + [425] = {.lex_state = 193, .external_lex_state = 7}, + [426] = {.lex_state = 195, .external_lex_state = 16}, + [427] = {.lex_state = 195, .external_lex_state = 16}, + [428] = {.lex_state = 171, .external_lex_state = 5}, + [429] = {.lex_state = 173, .external_lex_state = 4}, + [430] = {.lex_state = 71, .external_lex_state = 2}, + [431] = {.lex_state = 199, .external_lex_state = 5}, + [432] = {.lex_state = 132, .external_lex_state = 4}, + [433] = {.lex_state = 71, .external_lex_state = 2}, + [434] = {.lex_state = 171, .external_lex_state = 5}, + [435] = {.lex_state = 173, .external_lex_state = 4}, + [436] = {.lex_state = 71, .external_lex_state = 2}, + [437] = {.lex_state = 134, .external_lex_state = 6}, + [438] = {.lex_state = 104, .external_lex_state = 6}, + [439] = {.lex_state = 107, .external_lex_state = 10}, + [440] = {.lex_state = 134, .external_lex_state = 6}, + [441] = {.lex_state = 107, .external_lex_state = 10}, + [442] = {.lex_state = 107, .external_lex_state = 10}, + [443] = {.lex_state = 107}, + [444] = {.lex_state = 78}, + [445] = {.lex_state = 193, .external_lex_state = 7}, + [446] = {.lex_state = 195, .external_lex_state = 16}, + [447] = {.lex_state = 195, .external_lex_state = 16}, + [448] = {.lex_state = 171, .external_lex_state = 5}, + [449] = {.lex_state = 173, .external_lex_state = 4}, + [450] = {.lex_state = 71, .external_lex_state = 2}, + [451] = {.lex_state = 199, .external_lex_state = 5}, + [452] = {.lex_state = 132, .external_lex_state = 4}, + [453] = {.lex_state = 71, .external_lex_state = 2}, + [454] = {.lex_state = 187}, + [455] = {.lex_state = 107}, + [456] = {.lex_state = 94}, + [457] = {.lex_state = 224, .external_lex_state = 16}, + [458] = {.lex_state = 78}, + [459] = {.lex_state = 195, .external_lex_state = 16}, + [460] = {.lex_state = 195, .external_lex_state = 16}, + [461] = {.lex_state = 134, .external_lex_state = 6}, + [462] = {.lex_state = 226, .external_lex_state = 20}, + [463] = {.lex_state = 107}, + [464] = {.lex_state = 114}, + [465] = {.lex_state = 226, .external_lex_state = 20}, + [466] = {.lex_state = 114, .external_lex_state = 7}, + [467] = {.lex_state = 226, .external_lex_state = 21}, [468] = {.lex_state = 71, .external_lex_state = 2}, - [469] = {.lex_state = 98, .external_lex_state = 4}, - [470] = {.lex_state = 129, .external_lex_state = 8}, - [471] = {.lex_state = 71, .external_lex_state = 2}, - [472] = {.lex_state = 181}, - [473] = {.lex_state = 106}, - [474] = {.lex_state = 94}, - [475] = {.lex_state = 222, .external_lex_state = 16}, - [476] = {.lex_state = 78}, - [477] = {.lex_state = 189, .external_lex_state = 16}, - [478] = {.lex_state = 189, .external_lex_state = 16}, - [479] = {.lex_state = 131, .external_lex_state = 5}, - [480] = {.lex_state = 224, .external_lex_state = 23}, - [481] = {.lex_state = 106}, - [482] = {.lex_state = 113}, - [483] = {.lex_state = 224, .external_lex_state = 23}, - [484] = {.lex_state = 113, .external_lex_state = 6}, - [485] = {.lex_state = 224, .external_lex_state = 24}, - [486] = {.lex_state = 71, .external_lex_state = 2}, - [487] = {.lex_state = 71, .external_lex_state = 2}, - [488] = {.lex_state = 71, .external_lex_state = 2}, - [489] = {.lex_state = 224, .external_lex_state = 16}, - [490] = {.lex_state = 131, .external_lex_state = 5}, - [491] = {.lex_state = 224, .external_lex_state = 24}, - [492] = {.lex_state = 224, .external_lex_state = 16}, - [493] = {.lex_state = 217, .external_lex_state = 2}, - [494] = {.lex_state = 131, .external_lex_state = 5}, - [495] = {.lex_state = 163, .external_lex_state = 4}, - [496] = {.lex_state = 167, .external_lex_state = 8}, - [497] = {.lex_state = 142}, - [498] = {.lex_state = 94}, - [499] = {.lex_state = 161}, - [500] = {.lex_state = 175, .external_lex_state = 13}, - [501] = {.lex_state = 178}, - [502] = {.lex_state = 98, .external_lex_state = 3}, - [503] = {.lex_state = 98, .external_lex_state = 4}, - [504] = {.lex_state = 78}, - [505] = {.lex_state = 71, .external_lex_state = 2}, - [506] = {.lex_state = 71, .external_lex_state = 2}, - [507] = {.lex_state = 71, .external_lex_state = 2}, - [508] = {.lex_state = 71}, - [509] = {.lex_state = 94}, - [510] = {.lex_state = 94}, - [511] = {.lex_state = 226, .external_lex_state = 7}, - [512] = {.lex_state = 102, .external_lex_state = 7}, - [513] = {.lex_state = 98, .external_lex_state = 4}, - [514] = {.lex_state = 129, .external_lex_state = 8}, - [515] = {.lex_state = 102, .external_lex_state = 7}, - [516] = {.lex_state = 217, .external_lex_state = 2}, - [517] = {.lex_state = 131, .external_lex_state = 5}, - [518] = {.lex_state = 163, .external_lex_state = 4}, - [519] = {.lex_state = 167, .external_lex_state = 8}, - [520] = {.lex_state = 161}, - [521] = {.lex_state = 169, .external_lex_state = 4}, - [522] = {.lex_state = 167, .external_lex_state = 8}, - [523] = {.lex_state = 127, .external_lex_state = 4}, - [524] = {.lex_state = 129, .external_lex_state = 8}, - [525] = {.lex_state = 169, .external_lex_state = 4}, - [526] = {.lex_state = 113}, - [527] = {.lex_state = 113, .external_lex_state = 6}, - [528] = {.lex_state = 193, .external_lex_state = 17}, - [529] = {.lex_state = 94}, - [530] = {.lex_state = 131, .external_lex_state = 7}, - [531] = {.lex_state = 102, .external_lex_state = 5}, - [532] = {.lex_state = 102, .external_lex_state = 5}, - [533] = {.lex_state = 198, .external_lex_state = 5}, - [534] = {.lex_state = 198, .external_lex_state = 5}, - [535] = {.lex_state = 228, .external_lex_state = 7}, - [536] = {.lex_state = 228, .external_lex_state = 7}, - [537] = {.lex_state = 198, .external_lex_state = 5}, - [538] = {.lex_state = 198, .external_lex_state = 5}, - [539] = {.lex_state = 228, .external_lex_state = 7}, - [540] = {.lex_state = 169, .external_lex_state = 4}, - [541] = {.lex_state = 198, .external_lex_state = 7}, - [542] = {.lex_state = 198, .external_lex_state = 7}, - [543] = {.lex_state = 102, .external_lex_state = 7}, - [544] = {.lex_state = 71, .external_lex_state = 2}, - [545] = {.lex_state = 98, .external_lex_state = 4}, - [546] = {.lex_state = 129, .external_lex_state = 8}, - [547] = {.lex_state = 102, .external_lex_state = 7}, - [548] = {.lex_state = 202, .external_lex_state = 13}, - [549] = {.lex_state = 230, .external_lex_state = 10}, - [550] = {.lex_state = 202, .external_lex_state = 12}, - [551] = {.lex_state = 202, .external_lex_state = 13}, - [552] = {.lex_state = 230, .external_lex_state = 10}, - [553] = {.lex_state = 175, .external_lex_state = 13}, - [554] = {.lex_state = 167, .external_lex_state = 8}, - [555] = {.lex_state = 204, .external_lex_state = 10}, - [556] = {.lex_state = 106}, - [557] = {.lex_state = 113}, - [558] = {.lex_state = 204, .external_lex_state = 10}, - [559] = {.lex_state = 113, .external_lex_state = 6}, + [469] = {.lex_state = 71, .external_lex_state = 2}, + [470] = {.lex_state = 71, .external_lex_state = 2}, + [471] = {.lex_state = 226, .external_lex_state = 16}, + [472] = {.lex_state = 134, .external_lex_state = 6}, + [473] = {.lex_state = 226, .external_lex_state = 21}, + [474] = {.lex_state = 226, .external_lex_state = 16}, + [475] = {.lex_state = 221, .external_lex_state = 2}, + [476] = {.lex_state = 134, .external_lex_state = 6}, + [477] = {.lex_state = 138, .external_lex_state = 9}, + [478] = {.lex_state = 171, .external_lex_state = 5}, + [479] = {.lex_state = 173, .external_lex_state = 4}, + [480] = {.lex_state = 100, .external_lex_state = 4}, + [481] = {.lex_state = 100, .external_lex_state = 5}, + [482] = {.lex_state = 71}, + [483] = {.lex_state = 71, .external_lex_state = 2}, + [484] = {.lex_state = 71, .external_lex_state = 2}, + [485] = {.lex_state = 71, .external_lex_state = 2}, + [486] = {.lex_state = 94}, + [487] = {.lex_state = 94}, + [488] = {.lex_state = 138, .external_lex_state = 9}, + [489] = {.lex_state = 199, .external_lex_state = 5}, + [490] = {.lex_state = 104, .external_lex_state = 5}, + [491] = {.lex_state = 199, .external_lex_state = 5}, + [492] = {.lex_state = 132, .external_lex_state = 4}, + [493] = {.lex_state = 104, .external_lex_state = 5}, + [494] = {.lex_state = 221, .external_lex_state = 2}, + [495] = {.lex_state = 134, .external_lex_state = 6}, + [496] = {.lex_state = 138, .external_lex_state = 9}, + [497] = {.lex_state = 171, .external_lex_state = 5}, + [498] = {.lex_state = 173, .external_lex_state = 4}, + [499] = {.lex_state = 71}, + [500] = {.lex_state = 201, .external_lex_state = 9}, + [501] = {.lex_state = 114}, + [502] = {.lex_state = 114, .external_lex_state = 7}, + [503] = {.lex_state = 203, .external_lex_state = 17}, + [504] = {.lex_state = 94}, + [505] = {.lex_state = 128, .external_lex_state = 5}, + [506] = {.lex_state = 132, .external_lex_state = 4}, + [507] = {.lex_state = 128, .external_lex_state = 5}, + [508] = {.lex_state = 132, .external_lex_state = 4}, + [509] = {.lex_state = 128, .external_lex_state = 6}, + [510] = {.lex_state = 128, .external_lex_state = 6}, + [511] = {.lex_state = 175, .external_lex_state = 5}, + [512] = {.lex_state = 175, .external_lex_state = 5}, + [513] = {.lex_state = 128, .external_lex_state = 6}, + [514] = {.lex_state = 128, .external_lex_state = 6}, + [515] = {.lex_state = 175, .external_lex_state = 5}, + [516] = {.lex_state = 71, .external_lex_state = 2}, + [517] = {.lex_state = 128, .external_lex_state = 5}, + [518] = {.lex_state = 134, .external_lex_state = 5}, + [519] = {.lex_state = 104, .external_lex_state = 6}, + [520] = {.lex_state = 104, .external_lex_state = 6}, + [521] = {.lex_state = 104, .external_lex_state = 5}, + [522] = {.lex_state = 71, .external_lex_state = 2}, + [523] = {.lex_state = 206, .external_lex_state = 9}, + [524] = {.lex_state = 128, .external_lex_state = 5}, + [525] = {.lex_state = 132, .external_lex_state = 4}, + [526] = {.lex_state = 104, .external_lex_state = 5}, + [527] = {.lex_state = 210, .external_lex_state = 13}, + [528] = {.lex_state = 228, .external_lex_state = 10}, + [529] = {.lex_state = 210, .external_lex_state = 12}, + [530] = {.lex_state = 210, .external_lex_state = 13}, + [531] = {.lex_state = 228, .external_lex_state = 10}, + [532] = {.lex_state = 181, .external_lex_state = 13}, + [533] = {.lex_state = 173, .external_lex_state = 4}, + [534] = {.lex_state = 212, .external_lex_state = 10}, + [535] = {.lex_state = 107}, + [536] = {.lex_state = 114}, + [537] = {.lex_state = 212, .external_lex_state = 10}, + [538] = {.lex_state = 114, .external_lex_state = 7}, + [539] = {.lex_state = 71, .external_lex_state = 2}, + [540] = {.lex_state = 71, .external_lex_state = 2}, + [541] = {.lex_state = 71, .external_lex_state = 2}, + [542] = {.lex_state = 212}, + [543] = {.lex_state = 94}, + [544] = {.lex_state = 132, .external_lex_state = 14}, + [545] = {.lex_state = 173, .external_lex_state = 14}, + [546] = {.lex_state = 187}, + [547] = {.lex_state = 107}, + [548] = {.lex_state = 173, .external_lex_state = 14}, + [549] = {.lex_state = 173, .external_lex_state = 14}, + [550] = {.lex_state = 173, .external_lex_state = 14}, + [551] = {.lex_state = 78}, + [552] = {.lex_state = 193, .external_lex_state = 7}, + [553] = {.lex_state = 195, .external_lex_state = 16}, + [554] = {.lex_state = 195, .external_lex_state = 16}, + [555] = {.lex_state = 171, .external_lex_state = 5}, + [556] = {.lex_state = 173, .external_lex_state = 4}, + [557] = {.lex_state = 71, .external_lex_state = 2}, + [558] = {.lex_state = 199, .external_lex_state = 5}, + [559] = {.lex_state = 132, .external_lex_state = 4}, [560] = {.lex_state = 71, .external_lex_state = 2}, - [561] = {.lex_state = 71, .external_lex_state = 2}, - [562] = {.lex_state = 71, .external_lex_state = 2}, - [563] = {.lex_state = 204}, - [564] = {.lex_state = 94}, - [565] = {.lex_state = 129, .external_lex_state = 20}, - [566] = {.lex_state = 167, .external_lex_state = 20}, - [567] = {.lex_state = 181}, - [568] = {.lex_state = 106}, - [569] = {.lex_state = 167, .external_lex_state = 20}, - [570] = {.lex_state = 167, .external_lex_state = 20}, - [571] = {.lex_state = 167, .external_lex_state = 20}, - [572] = {.lex_state = 78}, - [573] = {.lex_state = 187, .external_lex_state = 6}, - [574] = {.lex_state = 189, .external_lex_state = 16}, - [575] = {.lex_state = 189, .external_lex_state = 16}, - [576] = {.lex_state = 163, .external_lex_state = 4}, - [577] = {.lex_state = 167, .external_lex_state = 8}, - [578] = {.lex_state = 71, .external_lex_state = 2}, - [579] = {.lex_state = 98, .external_lex_state = 4}, - [580] = {.lex_state = 129, .external_lex_state = 8}, - [581] = {.lex_state = 71, .external_lex_state = 2}, - [582] = {.lex_state = 163, .external_lex_state = 4}, - [583] = {.lex_state = 167, .external_lex_state = 8}, - [584] = {.lex_state = 71, .external_lex_state = 2}, - [585] = {.lex_state = 232}, - [586] = {.lex_state = 206, .external_lex_state = 4}, - [587] = {.lex_state = 208}, - [588] = {.lex_state = 206, .external_lex_state = 4}, - [589] = {.lex_state = 94}, - [590] = {.lex_state = 206, .external_lex_state = 11}, - [591] = {.lex_state = 234, .external_lex_state = 11}, - [592] = {.lex_state = 181}, - [593] = {.lex_state = 106}, - [594] = {.lex_state = 234, .external_lex_state = 11}, - [595] = {.lex_state = 234, .external_lex_state = 11}, - [596] = {.lex_state = 234, .external_lex_state = 11}, - [597] = {.lex_state = 78}, - [598] = {.lex_state = 187, .external_lex_state = 6}, - [599] = {.lex_state = 189, .external_lex_state = 16}, - [600] = {.lex_state = 189, .external_lex_state = 16}, - [601] = {.lex_state = 163, .external_lex_state = 4}, - [602] = {.lex_state = 167, .external_lex_state = 8}, - [603] = {.lex_state = 71, .external_lex_state = 2}, - [604] = {.lex_state = 98, .external_lex_state = 4}, - [605] = {.lex_state = 129, .external_lex_state = 8}, - [606] = {.lex_state = 71, .external_lex_state = 2}, - [607] = {.lex_state = 163, .external_lex_state = 4}, - [608] = {.lex_state = 167, .external_lex_state = 8}, - [609] = {.lex_state = 71, .external_lex_state = 2}, - [610] = {.lex_state = 135, .external_lex_state = 4}, - [611] = {.lex_state = 88}, - [612] = {.lex_state = 88, .external_lex_state = 18}, - [613] = {.lex_state = 206, .external_lex_state = 4}, - [614] = {.lex_state = 236, .external_lex_state = 11}, - [615] = {.lex_state = 106}, - [616] = {.lex_state = 113}, - [617] = {.lex_state = 236, .external_lex_state = 11}, - [618] = {.lex_state = 113, .external_lex_state = 6}, + [561] = {.lex_state = 171, .external_lex_state = 5}, + [562] = {.lex_state = 173, .external_lex_state = 4}, + [563] = {.lex_state = 71, .external_lex_state = 2}, + [564] = {.lex_state = 230}, + [565] = {.lex_state = 214, .external_lex_state = 9}, + [566] = {.lex_state = 217}, + [567] = {.lex_state = 214, .external_lex_state = 9}, + [568] = {.lex_state = 94}, + [569] = {.lex_state = 214, .external_lex_state = 11}, + [570] = {.lex_state = 214, .external_lex_state = 11}, + [571] = {.lex_state = 187}, + [572] = {.lex_state = 107}, + [573] = {.lex_state = 214, .external_lex_state = 11}, + [574] = {.lex_state = 214, .external_lex_state = 11}, + [575] = {.lex_state = 214, .external_lex_state = 11}, + [576] = {.lex_state = 78}, + [577] = {.lex_state = 193, .external_lex_state = 7}, + [578] = {.lex_state = 195, .external_lex_state = 16}, + [579] = {.lex_state = 195, .external_lex_state = 16}, + [580] = {.lex_state = 171, .external_lex_state = 5}, + [581] = {.lex_state = 173, .external_lex_state = 4}, + [582] = {.lex_state = 71, .external_lex_state = 2}, + [583] = {.lex_state = 199, .external_lex_state = 5}, + [584] = {.lex_state = 132, .external_lex_state = 4}, + [585] = {.lex_state = 71, .external_lex_state = 2}, + [586] = {.lex_state = 171, .external_lex_state = 5}, + [587] = {.lex_state = 173, .external_lex_state = 4}, + [588] = {.lex_state = 71, .external_lex_state = 2}, + [589] = {.lex_state = 138, .external_lex_state = 9}, + [590] = {.lex_state = 88}, + [591] = {.lex_state = 88, .external_lex_state = 19}, + [592] = {.lex_state = 214, .external_lex_state = 9}, + [593] = {.lex_state = 232, .external_lex_state = 11}, + [594] = {.lex_state = 107}, + [595] = {.lex_state = 114}, + [596] = {.lex_state = 232, .external_lex_state = 11}, + [597] = {.lex_state = 114, .external_lex_state = 7}, + [598] = {.lex_state = 71, .external_lex_state = 2}, + [599] = {.lex_state = 71, .external_lex_state = 2}, + [600] = {.lex_state = 71, .external_lex_state = 2}, + [601] = {.lex_state = 232, .external_lex_state = 9}, + [602] = {.lex_state = 175, .external_lex_state = 5}, + [603] = {.lex_state = 217}, + [604] = {.lex_state = 217}, + [605] = {.lex_state = 94}, + [606] = {.lex_state = 217, .external_lex_state = 10}, + [607] = {.lex_state = 234, .external_lex_state = 10}, + [608] = {.lex_state = 187}, + [609] = {.lex_state = 107}, + [610] = {.lex_state = 234, .external_lex_state = 10}, + [611] = {.lex_state = 234, .external_lex_state = 10}, + [612] = {.lex_state = 234, .external_lex_state = 10}, + [613] = {.lex_state = 78}, + [614] = {.lex_state = 193, .external_lex_state = 7}, + [615] = {.lex_state = 195, .external_lex_state = 16}, + [616] = {.lex_state = 195, .external_lex_state = 16}, + [617] = {.lex_state = 171, .external_lex_state = 5}, + [618] = {.lex_state = 173, .external_lex_state = 4}, [619] = {.lex_state = 71, .external_lex_state = 2}, - [620] = {.lex_state = 71, .external_lex_state = 2}, - [621] = {.lex_state = 71, .external_lex_state = 2}, - [622] = {.lex_state = 236, .external_lex_state = 4}, - [623] = {.lex_state = 71, .external_lex_state = 2}, - [624] = {.lex_state = 169, .external_lex_state = 4}, - [625] = {.lex_state = 208}, - [626] = {.lex_state = 208}, - [627] = {.lex_state = 94}, - [628] = {.lex_state = 208, .external_lex_state = 10}, - [629] = {.lex_state = 238, .external_lex_state = 10}, - [630] = {.lex_state = 181}, - [631] = {.lex_state = 106}, - [632] = {.lex_state = 238, .external_lex_state = 10}, - [633] = {.lex_state = 238, .external_lex_state = 10}, - [634] = {.lex_state = 238, .external_lex_state = 10}, + [620] = {.lex_state = 199, .external_lex_state = 5}, + [621] = {.lex_state = 132, .external_lex_state = 4}, + [622] = {.lex_state = 71, .external_lex_state = 2}, + [623] = {.lex_state = 171, .external_lex_state = 5}, + [624] = {.lex_state = 173, .external_lex_state = 4}, + [625] = {.lex_state = 71, .external_lex_state = 2}, + [626] = {.lex_state = 219}, + [627] = {.lex_state = 88}, + [628] = {.lex_state = 88, .external_lex_state = 19}, + [629] = {.lex_state = 217}, + [630] = {.lex_state = 219, .external_lex_state = 10}, + [631] = {.lex_state = 145, .external_lex_state = 10}, + [632] = {.lex_state = 219, .external_lex_state = 10}, + [633] = {.lex_state = 187}, + [634] = {.lex_state = 224, .external_lex_state = 16}, [635] = {.lex_state = 78}, - [636] = {.lex_state = 187, .external_lex_state = 6}, - [637] = {.lex_state = 189, .external_lex_state = 16}, - [638] = {.lex_state = 189, .external_lex_state = 16}, - [639] = {.lex_state = 163, .external_lex_state = 4}, - [640] = {.lex_state = 167, .external_lex_state = 8}, - [641] = {.lex_state = 71, .external_lex_state = 2}, - [642] = {.lex_state = 98, .external_lex_state = 4}, - [643] = {.lex_state = 129, .external_lex_state = 8}, - [644] = {.lex_state = 71, .external_lex_state = 2}, - [645] = {.lex_state = 163, .external_lex_state = 4}, - [646] = {.lex_state = 167, .external_lex_state = 8}, - [647] = {.lex_state = 71, .external_lex_state = 2}, - [648] = {.lex_state = 210}, - [649] = {.lex_state = 88}, - [650] = {.lex_state = 88, .external_lex_state = 18}, - [651] = {.lex_state = 208}, - [652] = {.lex_state = 210, .external_lex_state = 10}, - [653] = {.lex_state = 142, .external_lex_state = 10}, - [654] = {.lex_state = 210, .external_lex_state = 10}, - [655] = {.lex_state = 181}, - [656] = {.lex_state = 222, .external_lex_state = 16}, - [657] = {.lex_state = 78}, - [658] = {.lex_state = 189, .external_lex_state = 16}, - [659] = {.lex_state = 189, .external_lex_state = 16}, - [660] = {.lex_state = 210, .external_lex_state = 10}, - [661] = {.lex_state = 224, .external_lex_state = 24}, - [662] = {.lex_state = 224, .external_lex_state = 16}, - [663] = {.lex_state = 210, .external_lex_state = 10}, - [664] = {.lex_state = 224, .external_lex_state = 24}, - [665] = {.lex_state = 224, .external_lex_state = 16}, - [666] = {.lex_state = 217, .external_lex_state = 2}, - [667] = {.lex_state = 210, .external_lex_state = 10}, - [668] = {.lex_state = 163, .external_lex_state = 4}, - [669] = {.lex_state = 167, .external_lex_state = 8}, - [670] = {.lex_state = 71, .external_lex_state = 2}, - [671] = {.lex_state = 98, .external_lex_state = 4}, - [672] = {.lex_state = 129, .external_lex_state = 8}, - [673] = {.lex_state = 217, .external_lex_state = 2}, - [674] = {.lex_state = 210, .external_lex_state = 10}, - [675] = {.lex_state = 163, .external_lex_state = 4}, - [676] = {.lex_state = 167, .external_lex_state = 8}, - [677] = {.lex_state = 71}, - [678] = {.lex_state = 94}, - [679] = {.lex_state = 71, .external_lex_state = 19}, - [680] = {.lex_state = 94}, - [681] = {.lex_state = 198, .external_lex_state = 21}, - [682] = {.lex_state = 210}, - [683] = {.lex_state = 210}, - [684] = {.lex_state = 129, .external_lex_state = 20}, - [685] = {.lex_state = 129, .external_lex_state = 20}, - [686] = {.lex_state = 198, .external_lex_state = 21}, - [687] = {.lex_state = 198, .external_lex_state = 7}, - [688] = {.lex_state = 78}, - [689] = {.lex_state = 129, .external_lex_state = 21}, - [690] = {.lex_state = 133, .external_lex_state = 9}, - [691] = {.lex_state = 98, .external_lex_state = 14}, - [692] = {.lex_state = 98, .external_lex_state = 3}, - [693] = {.lex_state = 98, .external_lex_state = 11}, - [694] = {.lex_state = 98, .external_lex_state = 4}, - [695] = {.lex_state = 102, .external_lex_state = 5}, - [696] = {.lex_state = 161}, - [697] = {.lex_state = 228, .external_lex_state = 7}, - [698] = {.lex_state = 71, .external_lex_state = 2}, - [699] = {.lex_state = 169, .external_lex_state = 4}, - [700] = {.lex_state = 198, .external_lex_state = 7}, - [701] = {.lex_state = 98, .external_lex_state = 4}, - [702] = {.lex_state = 129, .external_lex_state = 8}, - [703] = {.lex_state = 94}, - [704] = {.lex_state = 102, .external_lex_state = 5}, - [705] = {.lex_state = 102, .external_lex_state = 5}, - [706] = {.lex_state = 198, .external_lex_state = 5}, - [707] = {.lex_state = 198, .external_lex_state = 5}, - [708] = {.lex_state = 198, .external_lex_state = 5}, - [709] = {.lex_state = 198, .external_lex_state = 5}, - [710] = {.lex_state = 198, .external_lex_state = 7}, - [711] = {.lex_state = 198, .external_lex_state = 7}, - [712] = {.lex_state = 102, .external_lex_state = 7}, - [713] = {.lex_state = 102, .external_lex_state = 7}, - [714] = {.lex_state = 169, .external_lex_state = 4}, - [715] = {.lex_state = 71, .external_lex_state = 2}, - [716] = {.lex_state = 71, .external_lex_state = 2}, - [717] = {.lex_state = 94}, - [718] = {.lex_state = 71, .external_lex_state = 2}, - [719] = {.lex_state = 94}, - [720] = {.lex_state = 138, .external_lex_state = 11}, - [721] = {.lex_state = 241}, - [722] = {.lex_state = 135, .external_lex_state = 4}, - [723] = {.lex_state = 138, .external_lex_state = 11}, - [724] = {.lex_state = 138, .external_lex_state = 11}, - [725] = {.lex_state = 181}, - [726] = {.lex_state = 241}, - [727] = {.lex_state = 135, .external_lex_state = 4}, - [728] = {.lex_state = 222, .external_lex_state = 16}, - [729] = {.lex_state = 78}, - [730] = {.lex_state = 189, .external_lex_state = 16}, - [731] = {.lex_state = 189, .external_lex_state = 16}, - [732] = {.lex_state = 138, .external_lex_state = 11}, - [733] = {.lex_state = 224, .external_lex_state = 24}, - [734] = {.lex_state = 224, .external_lex_state = 16}, - [735] = {.lex_state = 138, .external_lex_state = 11}, - [736] = {.lex_state = 224, .external_lex_state = 24}, - [737] = {.lex_state = 224, .external_lex_state = 16}, - [738] = {.lex_state = 217, .external_lex_state = 2}, - [739] = {.lex_state = 138, .external_lex_state = 11}, - [740] = {.lex_state = 163, .external_lex_state = 4}, - [741] = {.lex_state = 167, .external_lex_state = 8}, - [742] = {.lex_state = 71, .external_lex_state = 2}, - [743] = {.lex_state = 98, .external_lex_state = 4}, - [744] = {.lex_state = 129, .external_lex_state = 8}, - [745] = {.lex_state = 217, .external_lex_state = 2}, - [746] = {.lex_state = 138, .external_lex_state = 11}, - [747] = {.lex_state = 163, .external_lex_state = 4}, - [748] = {.lex_state = 167, .external_lex_state = 8}, - [749] = {.lex_state = 161}, - [750] = {.lex_state = 243, .external_lex_state = 21}, - [751] = {.lex_state = 98, .external_lex_state = 4}, - [752] = {.lex_state = 129, .external_lex_state = 8}, - [753] = {.lex_state = 212, .external_lex_state = 22}, - [754] = {.lex_state = 71}, - [755] = {.lex_state = 94}, - [756] = {.lex_state = 169, .external_lex_state = 4}, - [757] = {.lex_state = 167, .external_lex_state = 20}, - [758] = {.lex_state = 167, .external_lex_state = 20}, - [759] = {.lex_state = 220, .external_lex_state = 21}, - [760] = {.lex_state = 220, .external_lex_state = 7}, + [636] = {.lex_state = 195, .external_lex_state = 16}, + [637] = {.lex_state = 195, .external_lex_state = 16}, + [638] = {.lex_state = 219, .external_lex_state = 10}, + [639] = {.lex_state = 226, .external_lex_state = 21}, + [640] = {.lex_state = 226, .external_lex_state = 16}, + [641] = {.lex_state = 219, .external_lex_state = 10}, + [642] = {.lex_state = 226, .external_lex_state = 21}, + [643] = {.lex_state = 226, .external_lex_state = 16}, + [644] = {.lex_state = 221, .external_lex_state = 2}, + [645] = {.lex_state = 219, .external_lex_state = 10}, + [646] = {.lex_state = 138, .external_lex_state = 9}, + [647] = {.lex_state = 171, .external_lex_state = 5}, + [648] = {.lex_state = 173, .external_lex_state = 4}, + [649] = {.lex_state = 71, .external_lex_state = 2}, + [650] = {.lex_state = 138, .external_lex_state = 9}, + [651] = {.lex_state = 199, .external_lex_state = 5}, + [652] = {.lex_state = 132, .external_lex_state = 4}, + [653] = {.lex_state = 221, .external_lex_state = 2}, + [654] = {.lex_state = 219, .external_lex_state = 10}, + [655] = {.lex_state = 138, .external_lex_state = 9}, + [656] = {.lex_state = 171, .external_lex_state = 5}, + [657] = {.lex_state = 173, .external_lex_state = 4}, + [658] = {.lex_state = 219}, + [659] = {.lex_state = 219}, + [660] = {.lex_state = 132, .external_lex_state = 14}, + [661] = {.lex_state = 132, .external_lex_state = 14}, + [662] = {.lex_state = 136, .external_lex_state = 8}, + [663] = {.lex_state = 100, .external_lex_state = 14}, + [664] = {.lex_state = 100, .external_lex_state = 4}, + [665] = {.lex_state = 100, .external_lex_state = 6}, + [666] = {.lex_state = 100, .external_lex_state = 5}, + [667] = {.lex_state = 104, .external_lex_state = 6}, + [668] = {.lex_state = 175, .external_lex_state = 5}, + [669] = {.lex_state = 71, .external_lex_state = 2}, + [670] = {.lex_state = 94}, + [671] = {.lex_state = 128, .external_lex_state = 5}, + [672] = {.lex_state = 132, .external_lex_state = 4}, + [673] = {.lex_state = 128, .external_lex_state = 5}, + [674] = {.lex_state = 132, .external_lex_state = 4}, + [675] = {.lex_state = 128, .external_lex_state = 6}, + [676] = {.lex_state = 128, .external_lex_state = 6}, + [677] = {.lex_state = 128, .external_lex_state = 6}, + [678] = {.lex_state = 128, .external_lex_state = 6}, + [679] = {.lex_state = 94}, + [680] = {.lex_state = 128, .external_lex_state = 5}, + [681] = {.lex_state = 104, .external_lex_state = 6}, + [682] = {.lex_state = 104, .external_lex_state = 6}, + [683] = {.lex_state = 104, .external_lex_state = 5}, + [684] = {.lex_state = 104, .external_lex_state = 5}, + [685] = {.lex_state = 175, .external_lex_state = 5}, + [686] = {.lex_state = 71, .external_lex_state = 2}, + [687] = {.lex_state = 71, .external_lex_state = 2}, + [688] = {.lex_state = 94}, + [689] = {.lex_state = 71, .external_lex_state = 2}, + [690] = {.lex_state = 94}, + [691] = {.lex_state = 141, .external_lex_state = 11}, + [692] = {.lex_state = 237}, + [693] = {.lex_state = 138, .external_lex_state = 9}, + [694] = {.lex_state = 141, .external_lex_state = 11}, + [695] = {.lex_state = 141, .external_lex_state = 11}, + [696] = {.lex_state = 187}, + [697] = {.lex_state = 237}, + [698] = {.lex_state = 138, .external_lex_state = 9}, + [699] = {.lex_state = 224, .external_lex_state = 16}, + [700] = {.lex_state = 78}, + [701] = {.lex_state = 195, .external_lex_state = 16}, + [702] = {.lex_state = 195, .external_lex_state = 16}, + [703] = {.lex_state = 141, .external_lex_state = 11}, + [704] = {.lex_state = 226, .external_lex_state = 21}, + [705] = {.lex_state = 226, .external_lex_state = 16}, + [706] = {.lex_state = 141, .external_lex_state = 11}, + [707] = {.lex_state = 226, .external_lex_state = 21}, + [708] = {.lex_state = 226, .external_lex_state = 16}, + [709] = {.lex_state = 221, .external_lex_state = 2}, + [710] = {.lex_state = 141, .external_lex_state = 11}, + [711] = {.lex_state = 138, .external_lex_state = 9}, + [712] = {.lex_state = 171, .external_lex_state = 5}, + [713] = {.lex_state = 173, .external_lex_state = 4}, + [714] = {.lex_state = 71, .external_lex_state = 2}, + [715] = {.lex_state = 138, .external_lex_state = 9}, + [716] = {.lex_state = 199, .external_lex_state = 5}, + [717] = {.lex_state = 132, .external_lex_state = 4}, + [718] = {.lex_state = 221, .external_lex_state = 2}, + [719] = {.lex_state = 141, .external_lex_state = 11}, + [720] = {.lex_state = 138, .external_lex_state = 9}, + [721] = {.lex_state = 171, .external_lex_state = 5}, + [722] = {.lex_state = 173, .external_lex_state = 4}, + [723] = {.lex_state = 71}, + [724] = {.lex_state = 173, .external_lex_state = 14}, + [725] = {.lex_state = 173, .external_lex_state = 14}, + [726] = {.lex_state = 136, .external_lex_state = 8}, + [727] = {.lex_state = 167, .external_lex_state = 14}, + [728] = {.lex_state = 167, .external_lex_state = 4}, + [729] = {.lex_state = 167, .external_lex_state = 6}, + [730] = {.lex_state = 167, .external_lex_state = 5}, + [731] = {.lex_state = 134, .external_lex_state = 6}, + [732] = {.lex_state = 94}, + [733] = {.lex_state = 175, .external_lex_state = 5}, + [734] = {.lex_state = 171, .external_lex_state = 5}, + [735] = {.lex_state = 173, .external_lex_state = 4}, + [736] = {.lex_state = 171, .external_lex_state = 5}, + [737] = {.lex_state = 173, .external_lex_state = 4}, + [738] = {.lex_state = 171, .external_lex_state = 6}, + [739] = {.lex_state = 171, .external_lex_state = 6}, + [740] = {.lex_state = 171, .external_lex_state = 6}, + [741] = {.lex_state = 171, .external_lex_state = 6}, + [742] = {.lex_state = 221, .external_lex_state = 2}, + [743] = {.lex_state = 171, .external_lex_state = 5}, + [744] = {.lex_state = 134, .external_lex_state = 6}, + [745] = {.lex_state = 134, .external_lex_state = 6}, + [746] = {.lex_state = 134, .external_lex_state = 5}, + [747] = {.lex_state = 221, .external_lex_state = 2}, + [748] = {.lex_state = 138, .external_lex_state = 9}, + [749] = {.lex_state = 134, .external_lex_state = 5}, + [750] = {.lex_state = 96, .external_lex_state = 3}, + [751] = {.lex_state = 94, .external_lex_state = 2}, + [752] = {.lex_state = 212}, + [753] = {.lex_state = 94, .external_lex_state = 15}, + [754] = {.lex_state = 94, .external_lex_state = 15}, + [755] = {.lex_state = 181, .external_lex_state = 13}, + [756] = {.lex_state = 181, .external_lex_state = 12}, + [757] = {.lex_state = 181, .external_lex_state = 12}, + [758] = {.lex_state = 181, .external_lex_state = 12}, + [759] = {.lex_state = 187}, + [760] = {.lex_state = 224, .external_lex_state = 16}, [761] = {.lex_state = 78}, - [762] = {.lex_state = 167, .external_lex_state = 21}, - [763] = {.lex_state = 133, .external_lex_state = 9}, - [764] = {.lex_state = 163, .external_lex_state = 14}, - [765] = {.lex_state = 163, .external_lex_state = 3}, - [766] = {.lex_state = 163, .external_lex_state = 11}, - [767] = {.lex_state = 163, .external_lex_state = 4}, - [768] = {.lex_state = 131, .external_lex_state = 5}, - [769] = {.lex_state = 161}, - [770] = {.lex_state = 169, .external_lex_state = 4}, - [771] = {.lex_state = 163, .external_lex_state = 4}, - [772] = {.lex_state = 167, .external_lex_state = 8}, - [773] = {.lex_state = 94}, - [774] = {.lex_state = 131, .external_lex_state = 5}, - [775] = {.lex_state = 131, .external_lex_state = 5}, - [776] = {.lex_state = 220, .external_lex_state = 5}, - [777] = {.lex_state = 220, .external_lex_state = 5}, - [778] = {.lex_state = 220, .external_lex_state = 5}, - [779] = {.lex_state = 220, .external_lex_state = 5}, - [780] = {.lex_state = 220, .external_lex_state = 7}, - [781] = {.lex_state = 220, .external_lex_state = 7}, - [782] = {.lex_state = 131, .external_lex_state = 7}, - [783] = {.lex_state = 217, .external_lex_state = 2}, - [784] = {.lex_state = 131, .external_lex_state = 7}, - [785] = {.lex_state = 94, .external_lex_state = 2}, - [786] = {.lex_state = 204}, - [787] = {.lex_state = 94, .external_lex_state = 15}, - [788] = {.lex_state = 94, .external_lex_state = 15}, - [789] = {.lex_state = 175, .external_lex_state = 13}, - [790] = {.lex_state = 175, .external_lex_state = 12}, - [791] = {.lex_state = 175, .external_lex_state = 12}, - [792] = {.lex_state = 175, .external_lex_state = 12}, - [793] = {.lex_state = 181}, - [794] = {.lex_state = 222, .external_lex_state = 16}, - [795] = {.lex_state = 78}, - [796] = {.lex_state = 189, .external_lex_state = 16}, - [797] = {.lex_state = 189, .external_lex_state = 16}, - [798] = {.lex_state = 175, .external_lex_state = 12}, - [799] = {.lex_state = 224, .external_lex_state = 24}, - [800] = {.lex_state = 224, .external_lex_state = 16}, - [801] = {.lex_state = 175, .external_lex_state = 12}, - [802] = {.lex_state = 224, .external_lex_state = 24}, - [803] = {.lex_state = 224, .external_lex_state = 16}, - [804] = {.lex_state = 217, .external_lex_state = 2}, - [805] = {.lex_state = 175, .external_lex_state = 12}, - [806] = {.lex_state = 163, .external_lex_state = 4}, - [807] = {.lex_state = 167, .external_lex_state = 8}, - [808] = {.lex_state = 71, .external_lex_state = 2}, - [809] = {.lex_state = 98, .external_lex_state = 4}, - [810] = {.lex_state = 129, .external_lex_state = 8}, - [811] = {.lex_state = 217, .external_lex_state = 2}, - [812] = {.lex_state = 175, .external_lex_state = 12}, - [813] = {.lex_state = 163, .external_lex_state = 4}, - [814] = {.lex_state = 167, .external_lex_state = 8}, - [815] = {.lex_state = 175, .external_lex_state = 13}, - [816] = {.lex_state = 175, .external_lex_state = 13}, - [817] = {.lex_state = 178, .external_lex_state = 10}, - [818] = {.lex_state = 163, .external_lex_state = 3}, - [819] = {.lex_state = 204}, - [820] = {.lex_state = 98, .external_lex_state = 14}, - [821] = {.lex_state = 98, .external_lex_state = 14}, - [822] = {.lex_state = 163, .external_lex_state = 14}, - [823] = {.lex_state = 98, .external_lex_state = 14}, - [824] = {.lex_state = 163, .external_lex_state = 14}, - [825] = {.lex_state = 181}, - [826] = {.lex_state = 222, .external_lex_state = 16}, - [827] = {.lex_state = 78}, - [828] = {.lex_state = 189, .external_lex_state = 16}, - [829] = {.lex_state = 189, .external_lex_state = 16}, - [830] = {.lex_state = 163, .external_lex_state = 14}, - [831] = {.lex_state = 224, .external_lex_state = 24}, - [832] = {.lex_state = 224, .external_lex_state = 16}, - [833] = {.lex_state = 163, .external_lex_state = 14}, - [834] = {.lex_state = 224, .external_lex_state = 24}, - [835] = {.lex_state = 224, .external_lex_state = 16}, - [836] = {.lex_state = 217, .external_lex_state = 2}, - [837] = {.lex_state = 163, .external_lex_state = 14}, - [838] = {.lex_state = 163, .external_lex_state = 4}, - [839] = {.lex_state = 167, .external_lex_state = 8}, - [840] = {.lex_state = 71, .external_lex_state = 2}, - [841] = {.lex_state = 98, .external_lex_state = 4}, - [842] = {.lex_state = 129, .external_lex_state = 8}, - [843] = {.lex_state = 217, .external_lex_state = 2}, - [844] = {.lex_state = 163, .external_lex_state = 14}, - [845] = {.lex_state = 163, .external_lex_state = 4}, - [846] = {.lex_state = 167, .external_lex_state = 8}, - [847] = {.lex_state = 163, .external_lex_state = 11}, - [848] = {.lex_state = 98, .external_lex_state = 11}, - [849] = {.lex_state = 163, .external_lex_state = 11}, - [850] = {.lex_state = 181}, - [851] = {.lex_state = 222, .external_lex_state = 16}, + [762] = {.lex_state = 195, .external_lex_state = 16}, + [763] = {.lex_state = 195, .external_lex_state = 16}, + [764] = {.lex_state = 181, .external_lex_state = 12}, + [765] = {.lex_state = 226, .external_lex_state = 21}, + [766] = {.lex_state = 226, .external_lex_state = 16}, + [767] = {.lex_state = 181, .external_lex_state = 12}, + [768] = {.lex_state = 226, .external_lex_state = 21}, + [769] = {.lex_state = 226, .external_lex_state = 16}, + [770] = {.lex_state = 221, .external_lex_state = 2}, + [771] = {.lex_state = 181, .external_lex_state = 12}, + [772] = {.lex_state = 138, .external_lex_state = 9}, + [773] = {.lex_state = 171, .external_lex_state = 5}, + [774] = {.lex_state = 173, .external_lex_state = 4}, + [775] = {.lex_state = 71, .external_lex_state = 2}, + [776] = {.lex_state = 138, .external_lex_state = 9}, + [777] = {.lex_state = 199, .external_lex_state = 5}, + [778] = {.lex_state = 132, .external_lex_state = 4}, + [779] = {.lex_state = 221, .external_lex_state = 2}, + [780] = {.lex_state = 181, .external_lex_state = 12}, + [781] = {.lex_state = 138, .external_lex_state = 9}, + [782] = {.lex_state = 171, .external_lex_state = 5}, + [783] = {.lex_state = 173, .external_lex_state = 4}, + [784] = {.lex_state = 181, .external_lex_state = 13}, + [785] = {.lex_state = 181, .external_lex_state = 13}, + [786] = {.lex_state = 184, .external_lex_state = 10}, + [787] = {.lex_state = 167, .external_lex_state = 4}, + [788] = {.lex_state = 212}, + [789] = {.lex_state = 100, .external_lex_state = 14}, + [790] = {.lex_state = 100, .external_lex_state = 14}, + [791] = {.lex_state = 167, .external_lex_state = 14}, + [792] = {.lex_state = 100, .external_lex_state = 14}, + [793] = {.lex_state = 167, .external_lex_state = 14}, + [794] = {.lex_state = 187}, + [795] = {.lex_state = 224, .external_lex_state = 16}, + [796] = {.lex_state = 78}, + [797] = {.lex_state = 195, .external_lex_state = 16}, + [798] = {.lex_state = 195, .external_lex_state = 16}, + [799] = {.lex_state = 167, .external_lex_state = 14}, + [800] = {.lex_state = 226, .external_lex_state = 21}, + [801] = {.lex_state = 226, .external_lex_state = 16}, + [802] = {.lex_state = 167, .external_lex_state = 14}, + [803] = {.lex_state = 226, .external_lex_state = 21}, + [804] = {.lex_state = 226, .external_lex_state = 16}, + [805] = {.lex_state = 221, .external_lex_state = 2}, + [806] = {.lex_state = 167, .external_lex_state = 14}, + [807] = {.lex_state = 138, .external_lex_state = 9}, + [808] = {.lex_state = 171, .external_lex_state = 5}, + [809] = {.lex_state = 173, .external_lex_state = 4}, + [810] = {.lex_state = 71, .external_lex_state = 2}, + [811] = {.lex_state = 138, .external_lex_state = 9}, + [812] = {.lex_state = 199, .external_lex_state = 5}, + [813] = {.lex_state = 132, .external_lex_state = 4}, + [814] = {.lex_state = 221, .external_lex_state = 2}, + [815] = {.lex_state = 167, .external_lex_state = 14}, + [816] = {.lex_state = 138, .external_lex_state = 9}, + [817] = {.lex_state = 171, .external_lex_state = 5}, + [818] = {.lex_state = 173, .external_lex_state = 4}, + [819] = {.lex_state = 167, .external_lex_state = 6}, + [820] = {.lex_state = 100, .external_lex_state = 6}, + [821] = {.lex_state = 167, .external_lex_state = 6}, + [822] = {.lex_state = 187}, + [823] = {.lex_state = 224, .external_lex_state = 16}, + [824] = {.lex_state = 78}, + [825] = {.lex_state = 195, .external_lex_state = 16}, + [826] = {.lex_state = 195, .external_lex_state = 16}, + [827] = {.lex_state = 167, .external_lex_state = 6}, + [828] = {.lex_state = 226, .external_lex_state = 21}, + [829] = {.lex_state = 226, .external_lex_state = 16}, + [830] = {.lex_state = 167, .external_lex_state = 6}, + [831] = {.lex_state = 226, .external_lex_state = 21}, + [832] = {.lex_state = 226, .external_lex_state = 16}, + [833] = {.lex_state = 221, .external_lex_state = 2}, + [834] = {.lex_state = 167, .external_lex_state = 6}, + [835] = {.lex_state = 138, .external_lex_state = 9}, + [836] = {.lex_state = 171, .external_lex_state = 5}, + [837] = {.lex_state = 173, .external_lex_state = 4}, + [838] = {.lex_state = 71, .external_lex_state = 2}, + [839] = {.lex_state = 138, .external_lex_state = 9}, + [840] = {.lex_state = 199, .external_lex_state = 5}, + [841] = {.lex_state = 132, .external_lex_state = 4}, + [842] = {.lex_state = 221, .external_lex_state = 2}, + [843] = {.lex_state = 167, .external_lex_state = 6}, + [844] = {.lex_state = 138, .external_lex_state = 9}, + [845] = {.lex_state = 171, .external_lex_state = 5}, + [846] = {.lex_state = 173, .external_lex_state = 4}, + [847] = {.lex_state = 94, .external_lex_state = 15}, + [848] = {.lex_state = 94, .external_lex_state = 15}, + [849] = {.lex_state = 94, .external_lex_state = 15}, + [850] = {.lex_state = 187}, + [851] = {.lex_state = 224, .external_lex_state = 16}, [852] = {.lex_state = 78}, - [853] = {.lex_state = 189, .external_lex_state = 16}, - [854] = {.lex_state = 189, .external_lex_state = 16}, - [855] = {.lex_state = 163, .external_lex_state = 11}, - [856] = {.lex_state = 224, .external_lex_state = 24}, - [857] = {.lex_state = 224, .external_lex_state = 16}, - [858] = {.lex_state = 163, .external_lex_state = 11}, - [859] = {.lex_state = 224, .external_lex_state = 24}, - [860] = {.lex_state = 224, .external_lex_state = 16}, - [861] = {.lex_state = 217, .external_lex_state = 2}, - [862] = {.lex_state = 163, .external_lex_state = 11}, - [863] = {.lex_state = 163, .external_lex_state = 4}, - [864] = {.lex_state = 167, .external_lex_state = 8}, - [865] = {.lex_state = 71, .external_lex_state = 2}, - [866] = {.lex_state = 98, .external_lex_state = 4}, - [867] = {.lex_state = 129, .external_lex_state = 8}, - [868] = {.lex_state = 217, .external_lex_state = 2}, - [869] = {.lex_state = 163, .external_lex_state = 11}, - [870] = {.lex_state = 163, .external_lex_state = 4}, - [871] = {.lex_state = 167, .external_lex_state = 8}, - [872] = {.lex_state = 94, .external_lex_state = 15}, - [873] = {.lex_state = 94, .external_lex_state = 15}, - [874] = {.lex_state = 94, .external_lex_state = 15}, - [875] = {.lex_state = 181}, - [876] = {.lex_state = 222, .external_lex_state = 16}, + [853] = {.lex_state = 195, .external_lex_state = 16}, + [854] = {.lex_state = 195, .external_lex_state = 16}, + [855] = {.lex_state = 94, .external_lex_state = 15}, + [856] = {.lex_state = 226, .external_lex_state = 21}, + [857] = {.lex_state = 226, .external_lex_state = 16}, + [858] = {.lex_state = 94, .external_lex_state = 15}, + [859] = {.lex_state = 226, .external_lex_state = 21}, + [860] = {.lex_state = 226, .external_lex_state = 16}, + [861] = {.lex_state = 221, .external_lex_state = 2}, + [862] = {.lex_state = 94, .external_lex_state = 15}, + [863] = {.lex_state = 138, .external_lex_state = 9}, + [864] = {.lex_state = 171, .external_lex_state = 5}, + [865] = {.lex_state = 173, .external_lex_state = 4}, + [866] = {.lex_state = 71, .external_lex_state = 2}, + [867] = {.lex_state = 138, .external_lex_state = 9}, + [868] = {.lex_state = 199, .external_lex_state = 5}, + [869] = {.lex_state = 132, .external_lex_state = 4}, + [870] = {.lex_state = 221, .external_lex_state = 2}, + [871] = {.lex_state = 94, .external_lex_state = 15}, + [872] = {.lex_state = 138, .external_lex_state = 9}, + [873] = {.lex_state = 171, .external_lex_state = 5}, + [874] = {.lex_state = 173, .external_lex_state = 4}, + [875] = {.lex_state = 107}, + [876] = {.lex_state = 224, .external_lex_state = 16}, [877] = {.lex_state = 78}, - [878] = {.lex_state = 189, .external_lex_state = 16}, - [879] = {.lex_state = 189, .external_lex_state = 16}, - [880] = {.lex_state = 94, .external_lex_state = 15}, - [881] = {.lex_state = 224, .external_lex_state = 24}, - [882] = {.lex_state = 224, .external_lex_state = 16}, - [883] = {.lex_state = 94, .external_lex_state = 15}, - [884] = {.lex_state = 224, .external_lex_state = 24}, - [885] = {.lex_state = 224, .external_lex_state = 16}, - [886] = {.lex_state = 217, .external_lex_state = 2}, - [887] = {.lex_state = 94, .external_lex_state = 15}, - [888] = {.lex_state = 163, .external_lex_state = 4}, - [889] = {.lex_state = 167, .external_lex_state = 8}, - [890] = {.lex_state = 71, .external_lex_state = 2}, - [891] = {.lex_state = 98, .external_lex_state = 4}, - [892] = {.lex_state = 129, .external_lex_state = 8}, - [893] = {.lex_state = 217, .external_lex_state = 2}, - [894] = {.lex_state = 94, .external_lex_state = 15}, - [895] = {.lex_state = 163, .external_lex_state = 4}, - [896] = {.lex_state = 167, .external_lex_state = 8}, - [897] = {.lex_state = 106}, - [898] = {.lex_state = 222, .external_lex_state = 16}, - [899] = {.lex_state = 78}, - [900] = {.lex_state = 189, .external_lex_state = 16}, - [901] = {.lex_state = 189, .external_lex_state = 16}, - [902] = {.lex_state = 106, .external_lex_state = 10}, - [903] = {.lex_state = 224, .external_lex_state = 24}, - [904] = {.lex_state = 224, .external_lex_state = 16}, - [905] = {.lex_state = 106, .external_lex_state = 10}, - [906] = {.lex_state = 224, .external_lex_state = 24}, - [907] = {.lex_state = 224, .external_lex_state = 16}, - [908] = {.lex_state = 217, .external_lex_state = 2}, - [909] = {.lex_state = 106, .external_lex_state = 10}, - [910] = {.lex_state = 163, .external_lex_state = 4}, - [911] = {.lex_state = 167, .external_lex_state = 8}, - [912] = {.lex_state = 71, .external_lex_state = 2}, - [913] = {.lex_state = 98, .external_lex_state = 4}, - [914] = {.lex_state = 129, .external_lex_state = 8}, - [915] = {.lex_state = 131, .external_lex_state = 5}, - [916] = {.lex_state = 181}, - [917] = {.lex_state = 202, .external_lex_state = 12}, - [918] = {.lex_state = 202, .external_lex_state = 12}, - [919] = {.lex_state = 202, .external_lex_state = 12}, - [920] = {.lex_state = 131, .external_lex_state = 5}, - [921] = {.lex_state = 212, .external_lex_state = 23}, - [922] = {.lex_state = 106}, - [923] = {.lex_state = 113}, - [924] = {.lex_state = 212, .external_lex_state = 23}, - [925] = {.lex_state = 113, .external_lex_state = 6}, - [926] = {.lex_state = 71, .external_lex_state = 2}, - [927] = {.lex_state = 71, .external_lex_state = 2}, - [928] = {.lex_state = 71, .external_lex_state = 2}, - [929] = {.lex_state = 212, .external_lex_state = 16}, - [930] = {.lex_state = 222, .external_lex_state = 16}, - [931] = {.lex_state = 131, .external_lex_state = 5}, - [932] = {.lex_state = 224, .external_lex_state = 24}, - [933] = {.lex_state = 224, .external_lex_state = 16}, - [934] = {.lex_state = 224, .external_lex_state = 24}, - [935] = {.lex_state = 224, .external_lex_state = 16}, - [936] = {.lex_state = 94}, - [937] = {.lex_state = 224, .external_lex_state = 23}, - [938] = {.lex_state = 224, .external_lex_state = 23}, - [939] = {.lex_state = 181}, - [940] = {.lex_state = 106}, - [941] = {.lex_state = 224, .external_lex_state = 23}, - [942] = {.lex_state = 224, .external_lex_state = 23}, - [943] = {.lex_state = 224, .external_lex_state = 23}, - [944] = {.lex_state = 78}, - [945] = {.lex_state = 187, .external_lex_state = 6}, - [946] = {.lex_state = 189, .external_lex_state = 16}, - [947] = {.lex_state = 189, .external_lex_state = 16}, - [948] = {.lex_state = 224, .external_lex_state = 16}, - [949] = {.lex_state = 131, .external_lex_state = 5}, - [950] = {.lex_state = 224, .external_lex_state = 16}, - [951] = {.lex_state = 163, .external_lex_state = 4}, - [952] = {.lex_state = 167, .external_lex_state = 8}, - [953] = {.lex_state = 71, .external_lex_state = 2}, - [954] = {.lex_state = 98, .external_lex_state = 4}, - [955] = {.lex_state = 129, .external_lex_state = 8}, - [956] = {.lex_state = 71, .external_lex_state = 2}, - [957] = {.lex_state = 163, .external_lex_state = 4}, - [958] = {.lex_state = 167, .external_lex_state = 8}, - [959] = {.lex_state = 71, .external_lex_state = 2}, - [960] = {.lex_state = 224, .external_lex_state = 16}, - [961] = {.lex_state = 224, .external_lex_state = 16}, - [962] = {.lex_state = 131, .external_lex_state = 5}, - [963] = {.lex_state = 217, .external_lex_state = 2}, - [964] = {.lex_state = 226, .external_lex_state = 21}, - [965] = {.lex_state = 226, .external_lex_state = 7}, - [966] = {.lex_state = 78}, - [967] = {.lex_state = 129, .external_lex_state = 21}, - [968] = {.lex_state = 161}, - [969] = {.lex_state = 129, .external_lex_state = 8}, - [970] = {.lex_state = 98, .external_lex_state = 4}, - [971] = {.lex_state = 129, .external_lex_state = 8}, - [972] = {.lex_state = 94}, - [973] = {.lex_state = 226, .external_lex_state = 5}, - [974] = {.lex_state = 226, .external_lex_state = 5}, - [975] = {.lex_state = 226, .external_lex_state = 5}, - [976] = {.lex_state = 226, .external_lex_state = 5}, - [977] = {.lex_state = 226, .external_lex_state = 7}, - [978] = {.lex_state = 226, .external_lex_state = 7}, - [979] = {.lex_state = 71, .external_lex_state = 2}, - [980] = {.lex_state = 102, .external_lex_state = 7}, - [981] = {.lex_state = 131, .external_lex_state = 5}, - [982] = {.lex_state = 217, .external_lex_state = 2}, - [983] = {.lex_state = 214, .external_lex_state = 21}, - [984] = {.lex_state = 193, .external_lex_state = 17}, - [985] = {.lex_state = 193, .external_lex_state = 17}, - [986] = {.lex_state = 78}, - [987] = {.lex_state = 187, .external_lex_state = 6}, - [988] = {.lex_state = 189, .external_lex_state = 16}, - [989] = {.lex_state = 189, .external_lex_state = 16}, - [990] = {.lex_state = 169, .external_lex_state = 4}, - [991] = {.lex_state = 193, .external_lex_state = 17}, - [992] = {.lex_state = 198, .external_lex_state = 5}, - [993] = {.lex_state = 198, .external_lex_state = 5}, - [994] = {.lex_state = 228, .external_lex_state = 7}, - [995] = {.lex_state = 198, .external_lex_state = 5}, - [996] = {.lex_state = 169, .external_lex_state = 4}, - [997] = {.lex_state = 217, .external_lex_state = 2}, - [998] = {.lex_state = 198, .external_lex_state = 7}, - [999] = {.lex_state = 230, .external_lex_state = 10}, - [1000] = {.lex_state = 78}, - [1001] = {.lex_state = 202, .external_lex_state = 12}, - [1002] = {.lex_state = 230, .external_lex_state = 10}, - [1003] = {.lex_state = 78}, - [1004] = {.lex_state = 94}, - [1005] = {.lex_state = 204, .external_lex_state = 10}, - [1006] = {.lex_state = 204, .external_lex_state = 10}, - [1007] = {.lex_state = 181}, - [1008] = {.lex_state = 106}, - [1009] = {.lex_state = 204, .external_lex_state = 10}, - [1010] = {.lex_state = 204, .external_lex_state = 10}, - [1011] = {.lex_state = 204, .external_lex_state = 10}, - [1012] = {.lex_state = 78}, - [1013] = {.lex_state = 187, .external_lex_state = 6}, - [1014] = {.lex_state = 189, .external_lex_state = 16}, - [1015] = {.lex_state = 189, .external_lex_state = 16}, - [1016] = {.lex_state = 163, .external_lex_state = 4}, - [1017] = {.lex_state = 167, .external_lex_state = 8}, - [1018] = {.lex_state = 71, .external_lex_state = 2}, - [1019] = {.lex_state = 98, .external_lex_state = 4}, - [1020] = {.lex_state = 129, .external_lex_state = 8}, - [1021] = {.lex_state = 71, .external_lex_state = 2}, - [1022] = {.lex_state = 163, .external_lex_state = 4}, - [1023] = {.lex_state = 167, .external_lex_state = 8}, - [1024] = {.lex_state = 71, .external_lex_state = 2}, - [1025] = {.lex_state = 167, .external_lex_state = 8}, - [1026] = {.lex_state = 204}, - [1027] = {.lex_state = 167, .external_lex_state = 20}, - [1028] = {.lex_state = 129, .external_lex_state = 20}, - [1029] = {.lex_state = 167, .external_lex_state = 20}, - [1030] = {.lex_state = 181}, - [1031] = {.lex_state = 222, .external_lex_state = 16}, - [1032] = {.lex_state = 78}, - [1033] = {.lex_state = 189, .external_lex_state = 16}, - [1034] = {.lex_state = 189, .external_lex_state = 16}, - [1035] = {.lex_state = 167, .external_lex_state = 20}, - [1036] = {.lex_state = 224, .external_lex_state = 24}, - [1037] = {.lex_state = 224, .external_lex_state = 16}, - [1038] = {.lex_state = 167, .external_lex_state = 20}, - [1039] = {.lex_state = 224, .external_lex_state = 24}, - [1040] = {.lex_state = 224, .external_lex_state = 16}, - [1041] = {.lex_state = 217, .external_lex_state = 2}, - [1042] = {.lex_state = 167, .external_lex_state = 20}, - [1043] = {.lex_state = 163, .external_lex_state = 4}, - [1044] = {.lex_state = 167, .external_lex_state = 8}, - [1045] = {.lex_state = 71, .external_lex_state = 2}, - [1046] = {.lex_state = 98, .external_lex_state = 4}, - [1047] = {.lex_state = 129, .external_lex_state = 8}, - [1048] = {.lex_state = 217, .external_lex_state = 2}, - [1049] = {.lex_state = 167, .external_lex_state = 20}, - [1050] = {.lex_state = 163, .external_lex_state = 4}, - [1051] = {.lex_state = 167, .external_lex_state = 8}, - [1052] = {.lex_state = 245}, - [1053] = {.lex_state = 142}, - [1054] = {.lex_state = 232}, - [1055] = {.lex_state = 206, .external_lex_state = 4}, - [1056] = {.lex_state = 234, .external_lex_state = 11}, - [1057] = {.lex_state = 206, .external_lex_state = 11}, - [1058] = {.lex_state = 234, .external_lex_state = 11}, - [1059] = {.lex_state = 181}, - [1060] = {.lex_state = 222, .external_lex_state = 16}, - [1061] = {.lex_state = 78}, - [1062] = {.lex_state = 189, .external_lex_state = 16}, - [1063] = {.lex_state = 189, .external_lex_state = 16}, - [1064] = {.lex_state = 234, .external_lex_state = 11}, - [1065] = {.lex_state = 224, .external_lex_state = 24}, - [1066] = {.lex_state = 224, .external_lex_state = 16}, - [1067] = {.lex_state = 234, .external_lex_state = 11}, - [1068] = {.lex_state = 224, .external_lex_state = 24}, - [1069] = {.lex_state = 224, .external_lex_state = 16}, - [1070] = {.lex_state = 217, .external_lex_state = 2}, - [1071] = {.lex_state = 234, .external_lex_state = 11}, - [1072] = {.lex_state = 163, .external_lex_state = 4}, - [1073] = {.lex_state = 167, .external_lex_state = 8}, - [1074] = {.lex_state = 71, .external_lex_state = 2}, - [1075] = {.lex_state = 98, .external_lex_state = 4}, - [1076] = {.lex_state = 129, .external_lex_state = 8}, - [1077] = {.lex_state = 217, .external_lex_state = 2}, - [1078] = {.lex_state = 234, .external_lex_state = 11}, - [1079] = {.lex_state = 163, .external_lex_state = 4}, - [1080] = {.lex_state = 167, .external_lex_state = 8}, - [1081] = {.lex_state = 206, .external_lex_state = 4}, - [1082] = {.lex_state = 206, .external_lex_state = 4}, - [1083] = {.lex_state = 206, .external_lex_state = 4}, - [1084] = {.lex_state = 94}, - [1085] = {.lex_state = 236, .external_lex_state = 11}, - [1086] = {.lex_state = 236, .external_lex_state = 11}, - [1087] = {.lex_state = 181}, - [1088] = {.lex_state = 106}, - [1089] = {.lex_state = 236, .external_lex_state = 11}, - [1090] = {.lex_state = 236, .external_lex_state = 11}, - [1091] = {.lex_state = 236, .external_lex_state = 11}, - [1092] = {.lex_state = 78}, - [1093] = {.lex_state = 187, .external_lex_state = 6}, - [1094] = {.lex_state = 189, .external_lex_state = 16}, - [1095] = {.lex_state = 189, .external_lex_state = 16}, - [1096] = {.lex_state = 163, .external_lex_state = 4}, - [1097] = {.lex_state = 167, .external_lex_state = 8}, - [1098] = {.lex_state = 71, .external_lex_state = 2}, - [1099] = {.lex_state = 98, .external_lex_state = 4}, - [1100] = {.lex_state = 129, .external_lex_state = 8}, - [1101] = {.lex_state = 71, .external_lex_state = 2}, - [1102] = {.lex_state = 163, .external_lex_state = 4}, - [1103] = {.lex_state = 167, .external_lex_state = 8}, - [1104] = {.lex_state = 71, .external_lex_state = 2}, - [1105] = {.lex_state = 94}, - [1106] = {.lex_state = 236, .external_lex_state = 4}, - [1107] = {.lex_state = 169, .external_lex_state = 4}, - [1108] = {.lex_state = 71, .external_lex_state = 2}, - [1109] = {.lex_state = 208}, - [1110] = {.lex_state = 238, .external_lex_state = 10}, - [1111] = {.lex_state = 208, .external_lex_state = 10}, - [1112] = {.lex_state = 238, .external_lex_state = 10}, - [1113] = {.lex_state = 181}, - [1114] = {.lex_state = 222, .external_lex_state = 16}, - [1115] = {.lex_state = 78}, - [1116] = {.lex_state = 189, .external_lex_state = 16}, - [1117] = {.lex_state = 189, .external_lex_state = 16}, - [1118] = {.lex_state = 238, .external_lex_state = 10}, - [1119] = {.lex_state = 224, .external_lex_state = 24}, - [1120] = {.lex_state = 224, .external_lex_state = 16}, - [1121] = {.lex_state = 238, .external_lex_state = 10}, - [1122] = {.lex_state = 224, .external_lex_state = 24}, - [1123] = {.lex_state = 224, .external_lex_state = 16}, - [1124] = {.lex_state = 217, .external_lex_state = 2}, - [1125] = {.lex_state = 238, .external_lex_state = 10}, - [1126] = {.lex_state = 163, .external_lex_state = 4}, - [1127] = {.lex_state = 167, .external_lex_state = 8}, - [1128] = {.lex_state = 71, .external_lex_state = 2}, - [1129] = {.lex_state = 98, .external_lex_state = 4}, - [1130] = {.lex_state = 129, .external_lex_state = 8}, - [1131] = {.lex_state = 217, .external_lex_state = 2}, - [1132] = {.lex_state = 238, .external_lex_state = 10}, - [1133] = {.lex_state = 163, .external_lex_state = 4}, - [1134] = {.lex_state = 167, .external_lex_state = 8}, - [1135] = {.lex_state = 208}, - [1136] = {.lex_state = 208}, - [1137] = {.lex_state = 210, .external_lex_state = 10}, - [1138] = {.lex_state = 210, .external_lex_state = 10}, - [1139] = {.lex_state = 212, .external_lex_state = 23}, - [1140] = {.lex_state = 212, .external_lex_state = 23}, - [1141] = {.lex_state = 212, .external_lex_state = 16}, - [1142] = {.lex_state = 222, .external_lex_state = 16}, - [1143] = {.lex_state = 210, .external_lex_state = 10}, - [1144] = {.lex_state = 224, .external_lex_state = 24}, - [1145] = {.lex_state = 224, .external_lex_state = 16}, - [1146] = {.lex_state = 224, .external_lex_state = 24}, - [1147] = {.lex_state = 224, .external_lex_state = 16}, - [1148] = {.lex_state = 224, .external_lex_state = 16}, - [1149] = {.lex_state = 210, .external_lex_state = 10}, - [1150] = {.lex_state = 224, .external_lex_state = 16}, - [1151] = {.lex_state = 224, .external_lex_state = 16}, - [1152] = {.lex_state = 210, .external_lex_state = 10}, - [1153] = {.lex_state = 217, .external_lex_state = 2}, - [1154] = {.lex_state = 71, .external_lex_state = 2}, - [1155] = {.lex_state = 210, .external_lex_state = 10}, - [1156] = {.lex_state = 217, .external_lex_state = 2}, - [1157] = {.lex_state = 94}, - [1158] = {.lex_state = 198, .external_lex_state = 25}, - [1159] = {.lex_state = 106}, - [1160] = {.lex_state = 113}, - [1161] = {.lex_state = 198, .external_lex_state = 25}, - [1162] = {.lex_state = 113, .external_lex_state = 6}, - [1163] = {.lex_state = 71, .external_lex_state = 2}, - [1164] = {.lex_state = 71, .external_lex_state = 2}, + [878] = {.lex_state = 195, .external_lex_state = 16}, + [879] = {.lex_state = 195, .external_lex_state = 16}, + [880] = {.lex_state = 107, .external_lex_state = 10}, + [881] = {.lex_state = 226, .external_lex_state = 21}, + [882] = {.lex_state = 226, .external_lex_state = 16}, + [883] = {.lex_state = 107, .external_lex_state = 10}, + [884] = {.lex_state = 226, .external_lex_state = 21}, + [885] = {.lex_state = 226, .external_lex_state = 16}, + [886] = {.lex_state = 221, .external_lex_state = 2}, + [887] = {.lex_state = 107, .external_lex_state = 10}, + [888] = {.lex_state = 138, .external_lex_state = 9}, + [889] = {.lex_state = 171, .external_lex_state = 5}, + [890] = {.lex_state = 173, .external_lex_state = 4}, + [891] = {.lex_state = 71, .external_lex_state = 2}, + [892] = {.lex_state = 138, .external_lex_state = 9}, + [893] = {.lex_state = 199, .external_lex_state = 5}, + [894] = {.lex_state = 132, .external_lex_state = 4}, + [895] = {.lex_state = 134, .external_lex_state = 6}, + [896] = {.lex_state = 187}, + [897] = {.lex_state = 210, .external_lex_state = 12}, + [898] = {.lex_state = 210, .external_lex_state = 12}, + [899] = {.lex_state = 210, .external_lex_state = 12}, + [900] = {.lex_state = 134, .external_lex_state = 6}, + [901] = {.lex_state = 96, .external_lex_state = 20}, + [902] = {.lex_state = 107}, + [903] = {.lex_state = 114}, + [904] = {.lex_state = 96, .external_lex_state = 20}, + [905] = {.lex_state = 114, .external_lex_state = 7}, + [906] = {.lex_state = 71, .external_lex_state = 2}, + [907] = {.lex_state = 71, .external_lex_state = 2}, + [908] = {.lex_state = 71, .external_lex_state = 2}, + [909] = {.lex_state = 96, .external_lex_state = 16}, + [910] = {.lex_state = 224, .external_lex_state = 16}, + [911] = {.lex_state = 134, .external_lex_state = 6}, + [912] = {.lex_state = 226, .external_lex_state = 21}, + [913] = {.lex_state = 226, .external_lex_state = 16}, + [914] = {.lex_state = 226, .external_lex_state = 21}, + [915] = {.lex_state = 226, .external_lex_state = 16}, + [916] = {.lex_state = 94}, + [917] = {.lex_state = 226, .external_lex_state = 20}, + [918] = {.lex_state = 226, .external_lex_state = 20}, + [919] = {.lex_state = 187}, + [920] = {.lex_state = 107}, + [921] = {.lex_state = 226, .external_lex_state = 20}, + [922] = {.lex_state = 226, .external_lex_state = 20}, + [923] = {.lex_state = 226, .external_lex_state = 20}, + [924] = {.lex_state = 78}, + [925] = {.lex_state = 193, .external_lex_state = 7}, + [926] = {.lex_state = 195, .external_lex_state = 16}, + [927] = {.lex_state = 195, .external_lex_state = 16}, + [928] = {.lex_state = 226, .external_lex_state = 16}, + [929] = {.lex_state = 134, .external_lex_state = 6}, + [930] = {.lex_state = 226, .external_lex_state = 16}, + [931] = {.lex_state = 171, .external_lex_state = 5}, + [932] = {.lex_state = 173, .external_lex_state = 4}, + [933] = {.lex_state = 71, .external_lex_state = 2}, + [934] = {.lex_state = 199, .external_lex_state = 5}, + [935] = {.lex_state = 132, .external_lex_state = 4}, + [936] = {.lex_state = 71, .external_lex_state = 2}, + [937] = {.lex_state = 171, .external_lex_state = 5}, + [938] = {.lex_state = 173, .external_lex_state = 4}, + [939] = {.lex_state = 71, .external_lex_state = 2}, + [940] = {.lex_state = 226, .external_lex_state = 16}, + [941] = {.lex_state = 226, .external_lex_state = 16}, + [942] = {.lex_state = 134, .external_lex_state = 6}, + [943] = {.lex_state = 221, .external_lex_state = 2}, + [944] = {.lex_state = 221, .external_lex_state = 2}, + [945] = {.lex_state = 138, .external_lex_state = 9}, + [946] = {.lex_state = 94}, + [947] = {.lex_state = 199, .external_lex_state = 5}, + [948] = {.lex_state = 132, .external_lex_state = 4}, + [949] = {.lex_state = 199, .external_lex_state = 5}, + [950] = {.lex_state = 132, .external_lex_state = 4}, + [951] = {.lex_state = 199, .external_lex_state = 6}, + [952] = {.lex_state = 199, .external_lex_state = 6}, + [953] = {.lex_state = 199, .external_lex_state = 6}, + [954] = {.lex_state = 199, .external_lex_state = 6}, + [955] = {.lex_state = 71, .external_lex_state = 2}, + [956] = {.lex_state = 199, .external_lex_state = 5}, + [957] = {.lex_state = 71, .external_lex_state = 2}, + [958] = {.lex_state = 138, .external_lex_state = 9}, + [959] = {.lex_state = 104, .external_lex_state = 5}, + [960] = {.lex_state = 134, .external_lex_state = 6}, + [961] = {.lex_state = 221, .external_lex_state = 2}, + [962] = {.lex_state = 221, .external_lex_state = 2}, + [963] = {.lex_state = 138, .external_lex_state = 9}, + [964] = {.lex_state = 175, .external_lex_state = 5}, + [965] = {.lex_state = 203, .external_lex_state = 17}, + [966] = {.lex_state = 203, .external_lex_state = 17}, + [967] = {.lex_state = 78}, + [968] = {.lex_state = 193, .external_lex_state = 7}, + [969] = {.lex_state = 195, .external_lex_state = 16}, + [970] = {.lex_state = 195, .external_lex_state = 16}, + [971] = {.lex_state = 201, .external_lex_state = 9}, + [972] = {.lex_state = 203, .external_lex_state = 17}, + [973] = {.lex_state = 128, .external_lex_state = 6}, + [974] = {.lex_state = 128, .external_lex_state = 6}, + [975] = {.lex_state = 175, .external_lex_state = 5}, + [976] = {.lex_state = 128, .external_lex_state = 6}, + [977] = {.lex_state = 71, .external_lex_state = 2}, + [978] = {.lex_state = 221, .external_lex_state = 2}, + [979] = {.lex_state = 138, .external_lex_state = 9}, + [980] = {.lex_state = 228, .external_lex_state = 10}, + [981] = {.lex_state = 78}, + [982] = {.lex_state = 210, .external_lex_state = 12}, + [983] = {.lex_state = 228, .external_lex_state = 10}, + [984] = {.lex_state = 78}, + [985] = {.lex_state = 94}, + [986] = {.lex_state = 212, .external_lex_state = 10}, + [987] = {.lex_state = 212, .external_lex_state = 10}, + [988] = {.lex_state = 187}, + [989] = {.lex_state = 107}, + [990] = {.lex_state = 212, .external_lex_state = 10}, + [991] = {.lex_state = 212, .external_lex_state = 10}, + [992] = {.lex_state = 212, .external_lex_state = 10}, + [993] = {.lex_state = 78}, + [994] = {.lex_state = 193, .external_lex_state = 7}, + [995] = {.lex_state = 195, .external_lex_state = 16}, + [996] = {.lex_state = 195, .external_lex_state = 16}, + [997] = {.lex_state = 171, .external_lex_state = 5}, + [998] = {.lex_state = 173, .external_lex_state = 4}, + [999] = {.lex_state = 71, .external_lex_state = 2}, + [1000] = {.lex_state = 199, .external_lex_state = 5}, + [1001] = {.lex_state = 132, .external_lex_state = 4}, + [1002] = {.lex_state = 71, .external_lex_state = 2}, + [1003] = {.lex_state = 171, .external_lex_state = 5}, + [1004] = {.lex_state = 173, .external_lex_state = 4}, + [1005] = {.lex_state = 71, .external_lex_state = 2}, + [1006] = {.lex_state = 173, .external_lex_state = 4}, + [1007] = {.lex_state = 212}, + [1008] = {.lex_state = 173, .external_lex_state = 14}, + [1009] = {.lex_state = 132, .external_lex_state = 14}, + [1010] = {.lex_state = 173, .external_lex_state = 14}, + [1011] = {.lex_state = 187}, + [1012] = {.lex_state = 224, .external_lex_state = 16}, + [1013] = {.lex_state = 78}, + [1014] = {.lex_state = 195, .external_lex_state = 16}, + [1015] = {.lex_state = 195, .external_lex_state = 16}, + [1016] = {.lex_state = 173, .external_lex_state = 14}, + [1017] = {.lex_state = 226, .external_lex_state = 21}, + [1018] = {.lex_state = 226, .external_lex_state = 16}, + [1019] = {.lex_state = 173, .external_lex_state = 14}, + [1020] = {.lex_state = 226, .external_lex_state = 21}, + [1021] = {.lex_state = 226, .external_lex_state = 16}, + [1022] = {.lex_state = 221, .external_lex_state = 2}, + [1023] = {.lex_state = 173, .external_lex_state = 14}, + [1024] = {.lex_state = 138, .external_lex_state = 9}, + [1025] = {.lex_state = 171, .external_lex_state = 5}, + [1026] = {.lex_state = 173, .external_lex_state = 4}, + [1027] = {.lex_state = 71, .external_lex_state = 2}, + [1028] = {.lex_state = 138, .external_lex_state = 9}, + [1029] = {.lex_state = 199, .external_lex_state = 5}, + [1030] = {.lex_state = 132, .external_lex_state = 4}, + [1031] = {.lex_state = 221, .external_lex_state = 2}, + [1032] = {.lex_state = 173, .external_lex_state = 14}, + [1033] = {.lex_state = 138, .external_lex_state = 9}, + [1034] = {.lex_state = 171, .external_lex_state = 5}, + [1035] = {.lex_state = 173, .external_lex_state = 4}, + [1036] = {.lex_state = 164}, + [1037] = {.lex_state = 145}, + [1038] = {.lex_state = 230}, + [1039] = {.lex_state = 214, .external_lex_state = 9}, + [1040] = {.lex_state = 214, .external_lex_state = 11}, + [1041] = {.lex_state = 214, .external_lex_state = 11}, + [1042] = {.lex_state = 214, .external_lex_state = 11}, + [1043] = {.lex_state = 187}, + [1044] = {.lex_state = 224, .external_lex_state = 16}, + [1045] = {.lex_state = 78}, + [1046] = {.lex_state = 195, .external_lex_state = 16}, + [1047] = {.lex_state = 195, .external_lex_state = 16}, + [1048] = {.lex_state = 214, .external_lex_state = 11}, + [1049] = {.lex_state = 226, .external_lex_state = 21}, + [1050] = {.lex_state = 226, .external_lex_state = 16}, + [1051] = {.lex_state = 214, .external_lex_state = 11}, + [1052] = {.lex_state = 226, .external_lex_state = 21}, + [1053] = {.lex_state = 226, .external_lex_state = 16}, + [1054] = {.lex_state = 221, .external_lex_state = 2}, + [1055] = {.lex_state = 214, .external_lex_state = 11}, + [1056] = {.lex_state = 138, .external_lex_state = 9}, + [1057] = {.lex_state = 171, .external_lex_state = 5}, + [1058] = {.lex_state = 173, .external_lex_state = 4}, + [1059] = {.lex_state = 71, .external_lex_state = 2}, + [1060] = {.lex_state = 138, .external_lex_state = 9}, + [1061] = {.lex_state = 199, .external_lex_state = 5}, + [1062] = {.lex_state = 132, .external_lex_state = 4}, + [1063] = {.lex_state = 221, .external_lex_state = 2}, + [1064] = {.lex_state = 214, .external_lex_state = 11}, + [1065] = {.lex_state = 138, .external_lex_state = 9}, + [1066] = {.lex_state = 171, .external_lex_state = 5}, + [1067] = {.lex_state = 173, .external_lex_state = 4}, + [1068] = {.lex_state = 214, .external_lex_state = 9}, + [1069] = {.lex_state = 214, .external_lex_state = 9}, + [1070] = {.lex_state = 214, .external_lex_state = 9}, + [1071] = {.lex_state = 94}, + [1072] = {.lex_state = 232, .external_lex_state = 11}, + [1073] = {.lex_state = 232, .external_lex_state = 11}, + [1074] = {.lex_state = 187}, + [1075] = {.lex_state = 107}, + [1076] = {.lex_state = 232, .external_lex_state = 11}, + [1077] = {.lex_state = 232, .external_lex_state = 11}, + [1078] = {.lex_state = 232, .external_lex_state = 11}, + [1079] = {.lex_state = 78}, + [1080] = {.lex_state = 193, .external_lex_state = 7}, + [1081] = {.lex_state = 195, .external_lex_state = 16}, + [1082] = {.lex_state = 195, .external_lex_state = 16}, + [1083] = {.lex_state = 171, .external_lex_state = 5}, + [1084] = {.lex_state = 173, .external_lex_state = 4}, + [1085] = {.lex_state = 71, .external_lex_state = 2}, + [1086] = {.lex_state = 199, .external_lex_state = 5}, + [1087] = {.lex_state = 132, .external_lex_state = 4}, + [1088] = {.lex_state = 71, .external_lex_state = 2}, + [1089] = {.lex_state = 171, .external_lex_state = 5}, + [1090] = {.lex_state = 173, .external_lex_state = 4}, + [1091] = {.lex_state = 71, .external_lex_state = 2}, + [1092] = {.lex_state = 94}, + [1093] = {.lex_state = 232, .external_lex_state = 9}, + [1094] = {.lex_state = 217}, + [1095] = {.lex_state = 234, .external_lex_state = 10}, + [1096] = {.lex_state = 217, .external_lex_state = 10}, + [1097] = {.lex_state = 234, .external_lex_state = 10}, + [1098] = {.lex_state = 187}, + [1099] = {.lex_state = 224, .external_lex_state = 16}, + [1100] = {.lex_state = 78}, + [1101] = {.lex_state = 195, .external_lex_state = 16}, + [1102] = {.lex_state = 195, .external_lex_state = 16}, + [1103] = {.lex_state = 234, .external_lex_state = 10}, + [1104] = {.lex_state = 226, .external_lex_state = 21}, + [1105] = {.lex_state = 226, .external_lex_state = 16}, + [1106] = {.lex_state = 234, .external_lex_state = 10}, + [1107] = {.lex_state = 226, .external_lex_state = 21}, + [1108] = {.lex_state = 226, .external_lex_state = 16}, + [1109] = {.lex_state = 221, .external_lex_state = 2}, + [1110] = {.lex_state = 234, .external_lex_state = 10}, + [1111] = {.lex_state = 138, .external_lex_state = 9}, + [1112] = {.lex_state = 171, .external_lex_state = 5}, + [1113] = {.lex_state = 173, .external_lex_state = 4}, + [1114] = {.lex_state = 71, .external_lex_state = 2}, + [1115] = {.lex_state = 138, .external_lex_state = 9}, + [1116] = {.lex_state = 199, .external_lex_state = 5}, + [1117] = {.lex_state = 132, .external_lex_state = 4}, + [1118] = {.lex_state = 221, .external_lex_state = 2}, + [1119] = {.lex_state = 234, .external_lex_state = 10}, + [1120] = {.lex_state = 138, .external_lex_state = 9}, + [1121] = {.lex_state = 171, .external_lex_state = 5}, + [1122] = {.lex_state = 173, .external_lex_state = 4}, + [1123] = {.lex_state = 217}, + [1124] = {.lex_state = 217}, + [1125] = {.lex_state = 219, .external_lex_state = 10}, + [1126] = {.lex_state = 219, .external_lex_state = 10}, + [1127] = {.lex_state = 96, .external_lex_state = 20}, + [1128] = {.lex_state = 96, .external_lex_state = 20}, + [1129] = {.lex_state = 96, .external_lex_state = 16}, + [1130] = {.lex_state = 224, .external_lex_state = 16}, + [1131] = {.lex_state = 219, .external_lex_state = 10}, + [1132] = {.lex_state = 226, .external_lex_state = 21}, + [1133] = {.lex_state = 226, .external_lex_state = 16}, + [1134] = {.lex_state = 226, .external_lex_state = 21}, + [1135] = {.lex_state = 226, .external_lex_state = 16}, + [1136] = {.lex_state = 226, .external_lex_state = 16}, + [1137] = {.lex_state = 219, .external_lex_state = 10}, + [1138] = {.lex_state = 226, .external_lex_state = 16}, + [1139] = {.lex_state = 226, .external_lex_state = 16}, + [1140] = {.lex_state = 219, .external_lex_state = 10}, + [1141] = {.lex_state = 221, .external_lex_state = 2}, + [1142] = {.lex_state = 221, .external_lex_state = 2}, + [1143] = {.lex_state = 138, .external_lex_state = 9}, + [1144] = {.lex_state = 71, .external_lex_state = 2}, + [1145] = {.lex_state = 71, .external_lex_state = 2}, + [1146] = {.lex_state = 138, .external_lex_state = 9}, + [1147] = {.lex_state = 219, .external_lex_state = 10}, + [1148] = {.lex_state = 221, .external_lex_state = 2}, + [1149] = {.lex_state = 221, .external_lex_state = 2}, + [1150] = {.lex_state = 138, .external_lex_state = 9}, + [1151] = {.lex_state = 132, .external_lex_state = 14}, + [1152] = {.lex_state = 100, .external_lex_state = 14}, + [1153] = {.lex_state = 100, .external_lex_state = 14}, + [1154] = {.lex_state = 100, .external_lex_state = 14}, + [1155] = {.lex_state = 100, .external_lex_state = 6}, + [1156] = {.lex_state = 175, .external_lex_state = 5}, + [1157] = {.lex_state = 71, .external_lex_state = 2}, + [1158] = {.lex_state = 128, .external_lex_state = 6}, + [1159] = {.lex_state = 128, .external_lex_state = 6}, + [1160] = {.lex_state = 128, .external_lex_state = 6}, + [1161] = {.lex_state = 94}, + [1162] = {.lex_state = 71, .external_lex_state = 2}, + [1163] = {.lex_state = 175, .external_lex_state = 5}, + [1164] = {.lex_state = 94}, [1165] = {.lex_state = 71, .external_lex_state = 2}, - [1166] = {.lex_state = 228, .external_lex_state = 21}, - [1167] = {.lex_state = 228, .external_lex_state = 21}, - [1168] = {.lex_state = 198, .external_lex_state = 25}, - [1169] = {.lex_state = 198, .external_lex_state = 25}, - [1170] = {.lex_state = 228, .external_lex_state = 21}, - [1171] = {.lex_state = 198, .external_lex_state = 21}, - [1172] = {.lex_state = 129, .external_lex_state = 20}, - [1173] = {.lex_state = 71}, - [1174] = {.lex_state = 94}, - [1175] = {.lex_state = 94}, - [1176] = {.lex_state = 198, .external_lex_state = 21}, - [1177] = {.lex_state = 198, .external_lex_state = 7}, - [1178] = {.lex_state = 161}, - [1179] = {.lex_state = 71}, - [1180] = {.lex_state = 94}, - [1181] = {.lex_state = 98, .external_lex_state = 14}, - [1182] = {.lex_state = 98, .external_lex_state = 14}, - [1183] = {.lex_state = 98, .external_lex_state = 14}, - [1184] = {.lex_state = 98, .external_lex_state = 11}, - [1185] = {.lex_state = 129, .external_lex_state = 21}, - [1186] = {.lex_state = 228, .external_lex_state = 7}, - [1187] = {.lex_state = 71, .external_lex_state = 2}, - [1188] = {.lex_state = 169, .external_lex_state = 4}, - [1189] = {.lex_state = 198, .external_lex_state = 5}, - [1190] = {.lex_state = 198, .external_lex_state = 5}, - [1191] = {.lex_state = 198, .external_lex_state = 5}, - [1192] = {.lex_state = 198, .external_lex_state = 7}, - [1193] = {.lex_state = 94}, - [1194] = {.lex_state = 71, .external_lex_state = 2}, - [1195] = {.lex_state = 169, .external_lex_state = 4}, - [1196] = {.lex_state = 94}, - [1197] = {.lex_state = 71, .external_lex_state = 2}, - [1198] = {.lex_state = 94}, - [1199] = {.lex_state = 94}, - [1200] = {.lex_state = 169, .external_lex_state = 4}, - [1201] = {.lex_state = 248, .external_lex_state = 10}, - [1202] = {.lex_state = 248, .external_lex_state = 10}, - [1203] = {.lex_state = 251}, - [1204] = {.lex_state = 248}, - [1205] = {.lex_state = 94}, - [1206] = {.lex_state = 241}, - [1207] = {.lex_state = 138, .external_lex_state = 11}, - [1208] = {.lex_state = 169, .external_lex_state = 4}, - [1209] = {.lex_state = 251}, - [1210] = {.lex_state = 94}, - [1211] = {.lex_state = 241}, - [1212] = {.lex_state = 138, .external_lex_state = 11}, - [1213] = {.lex_state = 212, .external_lex_state = 23}, - [1214] = {.lex_state = 212, .external_lex_state = 23}, - [1215] = {.lex_state = 212, .external_lex_state = 16}, - [1216] = {.lex_state = 222, .external_lex_state = 16}, - [1217] = {.lex_state = 138, .external_lex_state = 11}, - [1218] = {.lex_state = 224, .external_lex_state = 24}, - [1219] = {.lex_state = 224, .external_lex_state = 16}, - [1220] = {.lex_state = 224, .external_lex_state = 24}, - [1221] = {.lex_state = 224, .external_lex_state = 16}, - [1222] = {.lex_state = 224, .external_lex_state = 16}, - [1223] = {.lex_state = 138, .external_lex_state = 11}, - [1224] = {.lex_state = 224, .external_lex_state = 16}, - [1225] = {.lex_state = 224, .external_lex_state = 16}, - [1226] = {.lex_state = 138, .external_lex_state = 11}, - [1227] = {.lex_state = 217, .external_lex_state = 2}, - [1228] = {.lex_state = 71, .external_lex_state = 2}, - [1229] = {.lex_state = 138, .external_lex_state = 11}, - [1230] = {.lex_state = 217, .external_lex_state = 2}, - [1231] = {.lex_state = 214, .external_lex_state = 21}, - [1232] = {.lex_state = 212, .external_lex_state = 22}, - [1233] = {.lex_state = 243, .external_lex_state = 21}, - [1234] = {.lex_state = 212, .external_lex_state = 22}, - [1235] = {.lex_state = 94}, - [1236] = {.lex_state = 127, .external_lex_state = 11}, - [1237] = {.lex_state = 127, .external_lex_state = 11}, - [1238] = {.lex_state = 169, .external_lex_state = 4}, - [1239] = {.lex_state = 167, .external_lex_state = 20}, - [1240] = {.lex_state = 71}, - [1241] = {.lex_state = 94}, - [1242] = {.lex_state = 94}, - [1243] = {.lex_state = 220, .external_lex_state = 21}, - [1244] = {.lex_state = 220, .external_lex_state = 7}, - [1245] = {.lex_state = 161}, - [1246] = {.lex_state = 71}, - [1247] = {.lex_state = 94}, - [1248] = {.lex_state = 163, .external_lex_state = 14}, - [1249] = {.lex_state = 163, .external_lex_state = 14}, - [1250] = {.lex_state = 163, .external_lex_state = 14}, - [1251] = {.lex_state = 163, .external_lex_state = 11}, - [1252] = {.lex_state = 167, .external_lex_state = 21}, - [1253] = {.lex_state = 220, .external_lex_state = 5}, - [1254] = {.lex_state = 220, .external_lex_state = 5}, - [1255] = {.lex_state = 220, .external_lex_state = 5}, - [1256] = {.lex_state = 169, .external_lex_state = 4}, - [1257] = {.lex_state = 220, .external_lex_state = 7}, - [1258] = {.lex_state = 94, .external_lex_state = 2}, - [1259] = {.lex_state = 204}, - [1260] = {.lex_state = 175, .external_lex_state = 12}, - [1261] = {.lex_state = 175, .external_lex_state = 12}, - [1262] = {.lex_state = 212, .external_lex_state = 23}, - [1263] = {.lex_state = 212, .external_lex_state = 23}, - [1264] = {.lex_state = 212, .external_lex_state = 16}, - [1265] = {.lex_state = 222, .external_lex_state = 16}, - [1266] = {.lex_state = 175, .external_lex_state = 12}, - [1267] = {.lex_state = 224, .external_lex_state = 24}, - [1268] = {.lex_state = 224, .external_lex_state = 16}, - [1269] = {.lex_state = 224, .external_lex_state = 24}, - [1270] = {.lex_state = 224, .external_lex_state = 16}, - [1271] = {.lex_state = 224, .external_lex_state = 16}, - [1272] = {.lex_state = 175, .external_lex_state = 12}, - [1273] = {.lex_state = 224, .external_lex_state = 16}, - [1274] = {.lex_state = 224, .external_lex_state = 16}, - [1275] = {.lex_state = 175, .external_lex_state = 12}, - [1276] = {.lex_state = 217, .external_lex_state = 2}, - [1277] = {.lex_state = 71, .external_lex_state = 2}, - [1278] = {.lex_state = 175, .external_lex_state = 12}, - [1279] = {.lex_state = 217, .external_lex_state = 2}, - [1280] = {.lex_state = 163, .external_lex_state = 3}, - [1281] = {.lex_state = 204}, - [1282] = {.lex_state = 163, .external_lex_state = 14}, - [1283] = {.lex_state = 163, .external_lex_state = 14}, - [1284] = {.lex_state = 212, .external_lex_state = 23}, - [1285] = {.lex_state = 212, .external_lex_state = 23}, - [1286] = {.lex_state = 212, .external_lex_state = 16}, - [1287] = {.lex_state = 222, .external_lex_state = 16}, - [1288] = {.lex_state = 163, .external_lex_state = 14}, - [1289] = {.lex_state = 224, .external_lex_state = 24}, - [1290] = {.lex_state = 224, .external_lex_state = 16}, - [1291] = {.lex_state = 224, .external_lex_state = 24}, - [1292] = {.lex_state = 224, .external_lex_state = 16}, - [1293] = {.lex_state = 224, .external_lex_state = 16}, - [1294] = {.lex_state = 163, .external_lex_state = 14}, - [1295] = {.lex_state = 224, .external_lex_state = 16}, - [1296] = {.lex_state = 224, .external_lex_state = 16}, - [1297] = {.lex_state = 163, .external_lex_state = 14}, - [1298] = {.lex_state = 217, .external_lex_state = 2}, - [1299] = {.lex_state = 71, .external_lex_state = 2}, - [1300] = {.lex_state = 163, .external_lex_state = 14}, - [1301] = {.lex_state = 217, .external_lex_state = 2}, - [1302] = {.lex_state = 163, .external_lex_state = 11}, - [1303] = {.lex_state = 163, .external_lex_state = 11}, - [1304] = {.lex_state = 212, .external_lex_state = 23}, - [1305] = {.lex_state = 212, .external_lex_state = 23}, - [1306] = {.lex_state = 212, .external_lex_state = 16}, - [1307] = {.lex_state = 222, .external_lex_state = 16}, - [1308] = {.lex_state = 163, .external_lex_state = 11}, - [1309] = {.lex_state = 224, .external_lex_state = 24}, - [1310] = {.lex_state = 224, .external_lex_state = 16}, - [1311] = {.lex_state = 224, .external_lex_state = 24}, - [1312] = {.lex_state = 224, .external_lex_state = 16}, - [1313] = {.lex_state = 224, .external_lex_state = 16}, - [1314] = {.lex_state = 163, .external_lex_state = 11}, - [1315] = {.lex_state = 224, .external_lex_state = 16}, - [1316] = {.lex_state = 224, .external_lex_state = 16}, - [1317] = {.lex_state = 163, .external_lex_state = 11}, - [1318] = {.lex_state = 217, .external_lex_state = 2}, - [1319] = {.lex_state = 71, .external_lex_state = 2}, - [1320] = {.lex_state = 163, .external_lex_state = 11}, - [1321] = {.lex_state = 217, .external_lex_state = 2}, - [1322] = {.lex_state = 94, .external_lex_state = 15}, - [1323] = {.lex_state = 94, .external_lex_state = 15}, - [1324] = {.lex_state = 212, .external_lex_state = 23}, - [1325] = {.lex_state = 212, .external_lex_state = 23}, - [1326] = {.lex_state = 212, .external_lex_state = 16}, - [1327] = {.lex_state = 222, .external_lex_state = 16}, - [1328] = {.lex_state = 94, .external_lex_state = 15}, - [1329] = {.lex_state = 224, .external_lex_state = 24}, - [1330] = {.lex_state = 224, .external_lex_state = 16}, - [1331] = {.lex_state = 224, .external_lex_state = 24}, - [1332] = {.lex_state = 224, .external_lex_state = 16}, - [1333] = {.lex_state = 224, .external_lex_state = 16}, - [1334] = {.lex_state = 94, .external_lex_state = 15}, - [1335] = {.lex_state = 224, .external_lex_state = 16}, - [1336] = {.lex_state = 224, .external_lex_state = 16}, - [1337] = {.lex_state = 94, .external_lex_state = 15}, - [1338] = {.lex_state = 217, .external_lex_state = 2}, - [1339] = {.lex_state = 71, .external_lex_state = 2}, - [1340] = {.lex_state = 94, .external_lex_state = 15}, - [1341] = {.lex_state = 217, .external_lex_state = 2}, - [1342] = {.lex_state = 106, .external_lex_state = 10}, - [1343] = {.lex_state = 212, .external_lex_state = 23}, - [1344] = {.lex_state = 212, .external_lex_state = 23}, - [1345] = {.lex_state = 212, .external_lex_state = 16}, - [1346] = {.lex_state = 222, .external_lex_state = 16}, - [1347] = {.lex_state = 106, .external_lex_state = 10}, - [1348] = {.lex_state = 224, .external_lex_state = 24}, - [1349] = {.lex_state = 224, .external_lex_state = 16}, - [1350] = {.lex_state = 224, .external_lex_state = 24}, - [1351] = {.lex_state = 224, .external_lex_state = 16}, - [1352] = {.lex_state = 224, .external_lex_state = 16}, - [1353] = {.lex_state = 106, .external_lex_state = 10}, - [1354] = {.lex_state = 224, .external_lex_state = 16}, - [1355] = {.lex_state = 224, .external_lex_state = 16}, - [1356] = {.lex_state = 106, .external_lex_state = 10}, - [1357] = {.lex_state = 217, .external_lex_state = 2}, - [1358] = {.lex_state = 71, .external_lex_state = 2}, - [1359] = {.lex_state = 202, .external_lex_state = 13}, - [1360] = {.lex_state = 189, .external_lex_state = 23}, - [1361] = {.lex_state = 202, .external_lex_state = 13}, - [1362] = {.lex_state = 189, .external_lex_state = 23}, - [1363] = {.lex_state = 175, .external_lex_state = 13}, - [1364] = {.lex_state = 94}, - [1365] = {.lex_state = 131, .external_lex_state = 5}, - [1366] = {.lex_state = 212, .external_lex_state = 23}, - [1367] = {.lex_state = 212, .external_lex_state = 23}, - [1368] = {.lex_state = 181}, - [1369] = {.lex_state = 106}, - [1370] = {.lex_state = 212, .external_lex_state = 23}, - [1371] = {.lex_state = 212, .external_lex_state = 23}, - [1372] = {.lex_state = 212, .external_lex_state = 23}, - [1373] = {.lex_state = 131, .external_lex_state = 5}, - [1374] = {.lex_state = 78}, - [1375] = {.lex_state = 187, .external_lex_state = 6}, - [1376] = {.lex_state = 189, .external_lex_state = 16}, - [1377] = {.lex_state = 189, .external_lex_state = 16}, - [1378] = {.lex_state = 163, .external_lex_state = 4}, - [1379] = {.lex_state = 167, .external_lex_state = 8}, - [1380] = {.lex_state = 71, .external_lex_state = 2}, - [1381] = {.lex_state = 98, .external_lex_state = 4}, - [1382] = {.lex_state = 129, .external_lex_state = 8}, - [1383] = {.lex_state = 71, .external_lex_state = 2}, - [1384] = {.lex_state = 163, .external_lex_state = 4}, - [1385] = {.lex_state = 167, .external_lex_state = 8}, - [1386] = {.lex_state = 71, .external_lex_state = 2}, - [1387] = {.lex_state = 212, .external_lex_state = 23}, - [1388] = {.lex_state = 212, .external_lex_state = 23}, - [1389] = {.lex_state = 212, .external_lex_state = 16}, - [1390] = {.lex_state = 224, .external_lex_state = 16}, - [1391] = {.lex_state = 131, .external_lex_state = 5}, - [1392] = {.lex_state = 224, .external_lex_state = 16}, - [1393] = {.lex_state = 224, .external_lex_state = 16}, - [1394] = {.lex_state = 224, .external_lex_state = 16}, - [1395] = {.lex_state = 224, .external_lex_state = 23}, - [1396] = {.lex_state = 224, .external_lex_state = 23}, - [1397] = {.lex_state = 224, .external_lex_state = 23}, - [1398] = {.lex_state = 181}, - [1399] = {.lex_state = 222, .external_lex_state = 16}, - [1400] = {.lex_state = 78}, - [1401] = {.lex_state = 189, .external_lex_state = 16}, - [1402] = {.lex_state = 189, .external_lex_state = 16}, - [1403] = {.lex_state = 224, .external_lex_state = 23}, - [1404] = {.lex_state = 224, .external_lex_state = 24}, - [1405] = {.lex_state = 224, .external_lex_state = 16}, - [1406] = {.lex_state = 224, .external_lex_state = 23}, - [1407] = {.lex_state = 224, .external_lex_state = 24}, - [1408] = {.lex_state = 224, .external_lex_state = 16}, - [1409] = {.lex_state = 131, .external_lex_state = 5}, - [1410] = {.lex_state = 224, .external_lex_state = 16}, - [1411] = {.lex_state = 217, .external_lex_state = 2}, - [1412] = {.lex_state = 224, .external_lex_state = 23}, - [1413] = {.lex_state = 163, .external_lex_state = 4}, - [1414] = {.lex_state = 167, .external_lex_state = 8}, - [1415] = {.lex_state = 71, .external_lex_state = 2}, - [1416] = {.lex_state = 98, .external_lex_state = 4}, - [1417] = {.lex_state = 129, .external_lex_state = 8}, - [1418] = {.lex_state = 217, .external_lex_state = 2}, - [1419] = {.lex_state = 224, .external_lex_state = 23}, - [1420] = {.lex_state = 163, .external_lex_state = 4}, - [1421] = {.lex_state = 167, .external_lex_state = 8}, - [1422] = {.lex_state = 131, .external_lex_state = 5}, - [1423] = {.lex_state = 71}, - [1424] = {.lex_state = 94}, - [1425] = {.lex_state = 94}, - [1426] = {.lex_state = 226, .external_lex_state = 21}, - [1427] = {.lex_state = 226, .external_lex_state = 7}, - [1428] = {.lex_state = 161}, - [1429] = {.lex_state = 71}, - [1430] = {.lex_state = 94}, - [1431] = {.lex_state = 129, .external_lex_state = 21}, - [1432] = {.lex_state = 226, .external_lex_state = 5}, - [1433] = {.lex_state = 226, .external_lex_state = 5}, - [1434] = {.lex_state = 226, .external_lex_state = 5}, - [1435] = {.lex_state = 226, .external_lex_state = 7}, - [1436] = {.lex_state = 131, .external_lex_state = 5}, - [1437] = {.lex_state = 169, .external_lex_state = 4}, - [1438] = {.lex_state = 222, .external_lex_state = 16}, - [1439] = {.lex_state = 78}, - [1440] = {.lex_state = 189, .external_lex_state = 16}, - [1441] = {.lex_state = 189, .external_lex_state = 16}, - [1442] = {.lex_state = 193, .external_lex_state = 17}, - [1443] = {.lex_state = 224, .external_lex_state = 24}, - [1444] = {.lex_state = 224, .external_lex_state = 16}, - [1445] = {.lex_state = 193, .external_lex_state = 17}, - [1446] = {.lex_state = 224, .external_lex_state = 24}, - [1447] = {.lex_state = 224, .external_lex_state = 16}, - [1448] = {.lex_state = 198, .external_lex_state = 5}, - [1449] = {.lex_state = 169, .external_lex_state = 4}, - [1450] = {.lex_state = 78}, - [1451] = {.lex_state = 78}, - [1452] = {.lex_state = 204, .external_lex_state = 10}, - [1453] = {.lex_state = 204, .external_lex_state = 10}, - [1454] = {.lex_state = 204, .external_lex_state = 10}, - [1455] = {.lex_state = 181}, - [1456] = {.lex_state = 222, .external_lex_state = 16}, - [1457] = {.lex_state = 78}, - [1458] = {.lex_state = 189, .external_lex_state = 16}, - [1459] = {.lex_state = 189, .external_lex_state = 16}, - [1460] = {.lex_state = 204, .external_lex_state = 10}, - [1461] = {.lex_state = 224, .external_lex_state = 24}, - [1462] = {.lex_state = 224, .external_lex_state = 16}, - [1463] = {.lex_state = 204, .external_lex_state = 10}, - [1464] = {.lex_state = 224, .external_lex_state = 24}, - [1465] = {.lex_state = 224, .external_lex_state = 16}, - [1466] = {.lex_state = 217, .external_lex_state = 2}, - [1467] = {.lex_state = 204, .external_lex_state = 10}, - [1468] = {.lex_state = 163, .external_lex_state = 4}, - [1469] = {.lex_state = 167, .external_lex_state = 8}, - [1470] = {.lex_state = 71, .external_lex_state = 2}, - [1471] = {.lex_state = 98, .external_lex_state = 4}, - [1472] = {.lex_state = 129, .external_lex_state = 8}, - [1473] = {.lex_state = 217, .external_lex_state = 2}, - [1474] = {.lex_state = 204, .external_lex_state = 10}, - [1475] = {.lex_state = 163, .external_lex_state = 4}, - [1476] = {.lex_state = 167, .external_lex_state = 8}, - [1477] = {.lex_state = 167, .external_lex_state = 20}, - [1478] = {.lex_state = 167, .external_lex_state = 20}, - [1479] = {.lex_state = 212, .external_lex_state = 23}, - [1480] = {.lex_state = 212, .external_lex_state = 23}, - [1481] = {.lex_state = 212, .external_lex_state = 16}, - [1482] = {.lex_state = 222, .external_lex_state = 16}, - [1483] = {.lex_state = 167, .external_lex_state = 20}, - [1484] = {.lex_state = 224, .external_lex_state = 24}, - [1485] = {.lex_state = 224, .external_lex_state = 16}, - [1486] = {.lex_state = 224, .external_lex_state = 24}, - [1487] = {.lex_state = 224, .external_lex_state = 16}, - [1488] = {.lex_state = 224, .external_lex_state = 16}, - [1489] = {.lex_state = 167, .external_lex_state = 20}, - [1490] = {.lex_state = 224, .external_lex_state = 16}, - [1491] = {.lex_state = 224, .external_lex_state = 16}, - [1492] = {.lex_state = 167, .external_lex_state = 20}, - [1493] = {.lex_state = 217, .external_lex_state = 2}, - [1494] = {.lex_state = 71, .external_lex_state = 2}, - [1495] = {.lex_state = 167, .external_lex_state = 20}, - [1496] = {.lex_state = 217, .external_lex_state = 2}, - [1497] = {.lex_state = 245}, - [1498] = {.lex_state = 212, .external_lex_state = 22}, - [1499] = {.lex_state = 169, .external_lex_state = 4}, - [1500] = {.lex_state = 245}, - [1501] = {.lex_state = 142}, - [1502] = {.lex_state = 234, .external_lex_state = 11}, - [1503] = {.lex_state = 234, .external_lex_state = 11}, - [1504] = {.lex_state = 212, .external_lex_state = 23}, - [1505] = {.lex_state = 212, .external_lex_state = 23}, - [1506] = {.lex_state = 212, .external_lex_state = 16}, - [1507] = {.lex_state = 222, .external_lex_state = 16}, - [1508] = {.lex_state = 234, .external_lex_state = 11}, - [1509] = {.lex_state = 224, .external_lex_state = 24}, - [1510] = {.lex_state = 224, .external_lex_state = 16}, - [1511] = {.lex_state = 224, .external_lex_state = 24}, - [1512] = {.lex_state = 224, .external_lex_state = 16}, - [1513] = {.lex_state = 224, .external_lex_state = 16}, - [1514] = {.lex_state = 234, .external_lex_state = 11}, - [1515] = {.lex_state = 224, .external_lex_state = 16}, - [1516] = {.lex_state = 224, .external_lex_state = 16}, - [1517] = {.lex_state = 234, .external_lex_state = 11}, - [1518] = {.lex_state = 217, .external_lex_state = 2}, - [1519] = {.lex_state = 71, .external_lex_state = 2}, - [1520] = {.lex_state = 234, .external_lex_state = 11}, - [1521] = {.lex_state = 217, .external_lex_state = 2}, - [1522] = {.lex_state = 232}, - [1523] = {.lex_state = 236, .external_lex_state = 11}, - [1524] = {.lex_state = 236, .external_lex_state = 11}, - [1525] = {.lex_state = 236, .external_lex_state = 11}, - [1526] = {.lex_state = 181}, - [1527] = {.lex_state = 222, .external_lex_state = 16}, - [1528] = {.lex_state = 78}, - [1529] = {.lex_state = 189, .external_lex_state = 16}, - [1530] = {.lex_state = 189, .external_lex_state = 16}, - [1531] = {.lex_state = 236, .external_lex_state = 11}, - [1532] = {.lex_state = 224, .external_lex_state = 24}, - [1533] = {.lex_state = 224, .external_lex_state = 16}, - [1534] = {.lex_state = 236, .external_lex_state = 11}, - [1535] = {.lex_state = 224, .external_lex_state = 24}, - [1536] = {.lex_state = 224, .external_lex_state = 16}, - [1537] = {.lex_state = 217, .external_lex_state = 2}, - [1538] = {.lex_state = 236, .external_lex_state = 11}, - [1539] = {.lex_state = 163, .external_lex_state = 4}, - [1540] = {.lex_state = 167, .external_lex_state = 8}, - [1541] = {.lex_state = 71, .external_lex_state = 2}, - [1542] = {.lex_state = 98, .external_lex_state = 4}, - [1543] = {.lex_state = 129, .external_lex_state = 8}, - [1544] = {.lex_state = 217, .external_lex_state = 2}, - [1545] = {.lex_state = 236, .external_lex_state = 11}, - [1546] = {.lex_state = 163, .external_lex_state = 4}, - [1547] = {.lex_state = 167, .external_lex_state = 8}, - [1548] = {.lex_state = 169, .external_lex_state = 4}, - [1549] = {.lex_state = 169, .external_lex_state = 4}, - [1550] = {.lex_state = 238, .external_lex_state = 10}, - [1551] = {.lex_state = 238, .external_lex_state = 10}, - [1552] = {.lex_state = 212, .external_lex_state = 23}, - [1553] = {.lex_state = 212, .external_lex_state = 23}, - [1554] = {.lex_state = 212, .external_lex_state = 16}, - [1555] = {.lex_state = 222, .external_lex_state = 16}, - [1556] = {.lex_state = 238, .external_lex_state = 10}, - [1557] = {.lex_state = 224, .external_lex_state = 24}, - [1558] = {.lex_state = 224, .external_lex_state = 16}, - [1559] = {.lex_state = 224, .external_lex_state = 24}, - [1560] = {.lex_state = 224, .external_lex_state = 16}, - [1561] = {.lex_state = 224, .external_lex_state = 16}, - [1562] = {.lex_state = 238, .external_lex_state = 10}, - [1563] = {.lex_state = 224, .external_lex_state = 16}, - [1564] = {.lex_state = 224, .external_lex_state = 16}, - [1565] = {.lex_state = 238, .external_lex_state = 10}, - [1566] = {.lex_state = 217, .external_lex_state = 2}, + [1166] = {.lex_state = 94}, + [1167] = {.lex_state = 94}, + [1168] = {.lex_state = 175, .external_lex_state = 5}, + [1169] = {.lex_state = 239, .external_lex_state = 10}, + [1170] = {.lex_state = 239, .external_lex_state = 10}, + [1171] = {.lex_state = 242}, + [1172] = {.lex_state = 239}, + [1173] = {.lex_state = 94}, + [1174] = {.lex_state = 237}, + [1175] = {.lex_state = 141, .external_lex_state = 11}, + [1176] = {.lex_state = 175, .external_lex_state = 5}, + [1177] = {.lex_state = 242}, + [1178] = {.lex_state = 94}, + [1179] = {.lex_state = 237}, + [1180] = {.lex_state = 141, .external_lex_state = 11}, + [1181] = {.lex_state = 96, .external_lex_state = 20}, + [1182] = {.lex_state = 96, .external_lex_state = 20}, + [1183] = {.lex_state = 96, .external_lex_state = 16}, + [1184] = {.lex_state = 224, .external_lex_state = 16}, + [1185] = {.lex_state = 141, .external_lex_state = 11}, + [1186] = {.lex_state = 226, .external_lex_state = 21}, + [1187] = {.lex_state = 226, .external_lex_state = 16}, + [1188] = {.lex_state = 226, .external_lex_state = 21}, + [1189] = {.lex_state = 226, .external_lex_state = 16}, + [1190] = {.lex_state = 226, .external_lex_state = 16}, + [1191] = {.lex_state = 141, .external_lex_state = 11}, + [1192] = {.lex_state = 226, .external_lex_state = 16}, + [1193] = {.lex_state = 226, .external_lex_state = 16}, + [1194] = {.lex_state = 141, .external_lex_state = 11}, + [1195] = {.lex_state = 221, .external_lex_state = 2}, + [1196] = {.lex_state = 221, .external_lex_state = 2}, + [1197] = {.lex_state = 138, .external_lex_state = 9}, + [1198] = {.lex_state = 71, .external_lex_state = 2}, + [1199] = {.lex_state = 71, .external_lex_state = 2}, + [1200] = {.lex_state = 138, .external_lex_state = 9}, + [1201] = {.lex_state = 141, .external_lex_state = 11}, + [1202] = {.lex_state = 221, .external_lex_state = 2}, + [1203] = {.lex_state = 221, .external_lex_state = 2}, + [1204] = {.lex_state = 138, .external_lex_state = 9}, + [1205] = {.lex_state = 175, .external_lex_state = 5}, + [1206] = {.lex_state = 173, .external_lex_state = 14}, + [1207] = {.lex_state = 167, .external_lex_state = 14}, + [1208] = {.lex_state = 167, .external_lex_state = 14}, + [1209] = {.lex_state = 167, .external_lex_state = 14}, + [1210] = {.lex_state = 167, .external_lex_state = 6}, + [1211] = {.lex_state = 171, .external_lex_state = 6}, + [1212] = {.lex_state = 171, .external_lex_state = 6}, + [1213] = {.lex_state = 171, .external_lex_state = 6}, + [1214] = {.lex_state = 175, .external_lex_state = 5}, + [1215] = {.lex_state = 221, .external_lex_state = 2}, + [1216] = {.lex_state = 94, .external_lex_state = 2}, + [1217] = {.lex_state = 212}, + [1218] = {.lex_state = 181, .external_lex_state = 12}, + [1219] = {.lex_state = 181, .external_lex_state = 12}, + [1220] = {.lex_state = 96, .external_lex_state = 20}, + [1221] = {.lex_state = 96, .external_lex_state = 20}, + [1222] = {.lex_state = 96, .external_lex_state = 16}, + [1223] = {.lex_state = 224, .external_lex_state = 16}, + [1224] = {.lex_state = 181, .external_lex_state = 12}, + [1225] = {.lex_state = 226, .external_lex_state = 21}, + [1226] = {.lex_state = 226, .external_lex_state = 16}, + [1227] = {.lex_state = 226, .external_lex_state = 21}, + [1228] = {.lex_state = 226, .external_lex_state = 16}, + [1229] = {.lex_state = 226, .external_lex_state = 16}, + [1230] = {.lex_state = 181, .external_lex_state = 12}, + [1231] = {.lex_state = 226, .external_lex_state = 16}, + [1232] = {.lex_state = 226, .external_lex_state = 16}, + [1233] = {.lex_state = 181, .external_lex_state = 12}, + [1234] = {.lex_state = 221, .external_lex_state = 2}, + [1235] = {.lex_state = 221, .external_lex_state = 2}, + [1236] = {.lex_state = 138, .external_lex_state = 9}, + [1237] = {.lex_state = 71, .external_lex_state = 2}, + [1238] = {.lex_state = 71, .external_lex_state = 2}, + [1239] = {.lex_state = 138, .external_lex_state = 9}, + [1240] = {.lex_state = 181, .external_lex_state = 12}, + [1241] = {.lex_state = 221, .external_lex_state = 2}, + [1242] = {.lex_state = 221, .external_lex_state = 2}, + [1243] = {.lex_state = 138, .external_lex_state = 9}, + [1244] = {.lex_state = 167, .external_lex_state = 4}, + [1245] = {.lex_state = 212}, + [1246] = {.lex_state = 167, .external_lex_state = 14}, + [1247] = {.lex_state = 167, .external_lex_state = 14}, + [1248] = {.lex_state = 96, .external_lex_state = 20}, + [1249] = {.lex_state = 96, .external_lex_state = 20}, + [1250] = {.lex_state = 96, .external_lex_state = 16}, + [1251] = {.lex_state = 224, .external_lex_state = 16}, + [1252] = {.lex_state = 167, .external_lex_state = 14}, + [1253] = {.lex_state = 226, .external_lex_state = 21}, + [1254] = {.lex_state = 226, .external_lex_state = 16}, + [1255] = {.lex_state = 226, .external_lex_state = 21}, + [1256] = {.lex_state = 226, .external_lex_state = 16}, + [1257] = {.lex_state = 226, .external_lex_state = 16}, + [1258] = {.lex_state = 167, .external_lex_state = 14}, + [1259] = {.lex_state = 226, .external_lex_state = 16}, + [1260] = {.lex_state = 226, .external_lex_state = 16}, + [1261] = {.lex_state = 167, .external_lex_state = 14}, + [1262] = {.lex_state = 221, .external_lex_state = 2}, + [1263] = {.lex_state = 221, .external_lex_state = 2}, + [1264] = {.lex_state = 138, .external_lex_state = 9}, + [1265] = {.lex_state = 71, .external_lex_state = 2}, + [1266] = {.lex_state = 71, .external_lex_state = 2}, + [1267] = {.lex_state = 138, .external_lex_state = 9}, + [1268] = {.lex_state = 167, .external_lex_state = 14}, + [1269] = {.lex_state = 221, .external_lex_state = 2}, + [1270] = {.lex_state = 221, .external_lex_state = 2}, + [1271] = {.lex_state = 138, .external_lex_state = 9}, + [1272] = {.lex_state = 167, .external_lex_state = 6}, + [1273] = {.lex_state = 167, .external_lex_state = 6}, + [1274] = {.lex_state = 96, .external_lex_state = 20}, + [1275] = {.lex_state = 96, .external_lex_state = 20}, + [1276] = {.lex_state = 96, .external_lex_state = 16}, + [1277] = {.lex_state = 224, .external_lex_state = 16}, + [1278] = {.lex_state = 167, .external_lex_state = 6}, + [1279] = {.lex_state = 226, .external_lex_state = 21}, + [1280] = {.lex_state = 226, .external_lex_state = 16}, + [1281] = {.lex_state = 226, .external_lex_state = 21}, + [1282] = {.lex_state = 226, .external_lex_state = 16}, + [1283] = {.lex_state = 226, .external_lex_state = 16}, + [1284] = {.lex_state = 167, .external_lex_state = 6}, + [1285] = {.lex_state = 226, .external_lex_state = 16}, + [1286] = {.lex_state = 226, .external_lex_state = 16}, + [1287] = {.lex_state = 167, .external_lex_state = 6}, + [1288] = {.lex_state = 221, .external_lex_state = 2}, + [1289] = {.lex_state = 221, .external_lex_state = 2}, + [1290] = {.lex_state = 138, .external_lex_state = 9}, + [1291] = {.lex_state = 71, .external_lex_state = 2}, + [1292] = {.lex_state = 71, .external_lex_state = 2}, + [1293] = {.lex_state = 138, .external_lex_state = 9}, + [1294] = {.lex_state = 167, .external_lex_state = 6}, + [1295] = {.lex_state = 221, .external_lex_state = 2}, + [1296] = {.lex_state = 221, .external_lex_state = 2}, + [1297] = {.lex_state = 138, .external_lex_state = 9}, + [1298] = {.lex_state = 94, .external_lex_state = 15}, + [1299] = {.lex_state = 94, .external_lex_state = 15}, + [1300] = {.lex_state = 96, .external_lex_state = 20}, + [1301] = {.lex_state = 96, .external_lex_state = 20}, + [1302] = {.lex_state = 96, .external_lex_state = 16}, + [1303] = {.lex_state = 224, .external_lex_state = 16}, + [1304] = {.lex_state = 94, .external_lex_state = 15}, + [1305] = {.lex_state = 226, .external_lex_state = 21}, + [1306] = {.lex_state = 226, .external_lex_state = 16}, + [1307] = {.lex_state = 226, .external_lex_state = 21}, + [1308] = {.lex_state = 226, .external_lex_state = 16}, + [1309] = {.lex_state = 226, .external_lex_state = 16}, + [1310] = {.lex_state = 94, .external_lex_state = 15}, + [1311] = {.lex_state = 226, .external_lex_state = 16}, + [1312] = {.lex_state = 226, .external_lex_state = 16}, + [1313] = {.lex_state = 94, .external_lex_state = 15}, + [1314] = {.lex_state = 221, .external_lex_state = 2}, + [1315] = {.lex_state = 221, .external_lex_state = 2}, + [1316] = {.lex_state = 138, .external_lex_state = 9}, + [1317] = {.lex_state = 71, .external_lex_state = 2}, + [1318] = {.lex_state = 71, .external_lex_state = 2}, + [1319] = {.lex_state = 138, .external_lex_state = 9}, + [1320] = {.lex_state = 94, .external_lex_state = 15}, + [1321] = {.lex_state = 221, .external_lex_state = 2}, + [1322] = {.lex_state = 221, .external_lex_state = 2}, + [1323] = {.lex_state = 138, .external_lex_state = 9}, + [1324] = {.lex_state = 107, .external_lex_state = 10}, + [1325] = {.lex_state = 96, .external_lex_state = 20}, + [1326] = {.lex_state = 96, .external_lex_state = 20}, + [1327] = {.lex_state = 96, .external_lex_state = 16}, + [1328] = {.lex_state = 224, .external_lex_state = 16}, + [1329] = {.lex_state = 107, .external_lex_state = 10}, + [1330] = {.lex_state = 226, .external_lex_state = 21}, + [1331] = {.lex_state = 226, .external_lex_state = 16}, + [1332] = {.lex_state = 226, .external_lex_state = 21}, + [1333] = {.lex_state = 226, .external_lex_state = 16}, + [1334] = {.lex_state = 226, .external_lex_state = 16}, + [1335] = {.lex_state = 107, .external_lex_state = 10}, + [1336] = {.lex_state = 226, .external_lex_state = 16}, + [1337] = {.lex_state = 226, .external_lex_state = 16}, + [1338] = {.lex_state = 107, .external_lex_state = 10}, + [1339] = {.lex_state = 221, .external_lex_state = 2}, + [1340] = {.lex_state = 221, .external_lex_state = 2}, + [1341] = {.lex_state = 138, .external_lex_state = 9}, + [1342] = {.lex_state = 71, .external_lex_state = 2}, + [1343] = {.lex_state = 71, .external_lex_state = 2}, + [1344] = {.lex_state = 138, .external_lex_state = 9}, + [1345] = {.lex_state = 210, .external_lex_state = 13}, + [1346] = {.lex_state = 195, .external_lex_state = 20}, + [1347] = {.lex_state = 210, .external_lex_state = 13}, + [1348] = {.lex_state = 195, .external_lex_state = 20}, + [1349] = {.lex_state = 181, .external_lex_state = 13}, + [1350] = {.lex_state = 94}, + [1351] = {.lex_state = 134, .external_lex_state = 6}, + [1352] = {.lex_state = 96, .external_lex_state = 20}, + [1353] = {.lex_state = 96, .external_lex_state = 20}, + [1354] = {.lex_state = 187}, + [1355] = {.lex_state = 107}, + [1356] = {.lex_state = 96, .external_lex_state = 20}, + [1357] = {.lex_state = 96, .external_lex_state = 20}, + [1358] = {.lex_state = 96, .external_lex_state = 20}, + [1359] = {.lex_state = 134, .external_lex_state = 6}, + [1360] = {.lex_state = 78}, + [1361] = {.lex_state = 193, .external_lex_state = 7}, + [1362] = {.lex_state = 195, .external_lex_state = 16}, + [1363] = {.lex_state = 195, .external_lex_state = 16}, + [1364] = {.lex_state = 171, .external_lex_state = 5}, + [1365] = {.lex_state = 173, .external_lex_state = 4}, + [1366] = {.lex_state = 71, .external_lex_state = 2}, + [1367] = {.lex_state = 199, .external_lex_state = 5}, + [1368] = {.lex_state = 132, .external_lex_state = 4}, + [1369] = {.lex_state = 71, .external_lex_state = 2}, + [1370] = {.lex_state = 171, .external_lex_state = 5}, + [1371] = {.lex_state = 173, .external_lex_state = 4}, + [1372] = {.lex_state = 71, .external_lex_state = 2}, + [1373] = {.lex_state = 96, .external_lex_state = 20}, + [1374] = {.lex_state = 96, .external_lex_state = 20}, + [1375] = {.lex_state = 96, .external_lex_state = 16}, + [1376] = {.lex_state = 226, .external_lex_state = 16}, + [1377] = {.lex_state = 134, .external_lex_state = 6}, + [1378] = {.lex_state = 226, .external_lex_state = 16}, + [1379] = {.lex_state = 226, .external_lex_state = 16}, + [1380] = {.lex_state = 226, .external_lex_state = 16}, + [1381] = {.lex_state = 226, .external_lex_state = 20}, + [1382] = {.lex_state = 226, .external_lex_state = 20}, + [1383] = {.lex_state = 226, .external_lex_state = 20}, + [1384] = {.lex_state = 187}, + [1385] = {.lex_state = 224, .external_lex_state = 16}, + [1386] = {.lex_state = 78}, + [1387] = {.lex_state = 195, .external_lex_state = 16}, + [1388] = {.lex_state = 195, .external_lex_state = 16}, + [1389] = {.lex_state = 226, .external_lex_state = 20}, + [1390] = {.lex_state = 226, .external_lex_state = 21}, + [1391] = {.lex_state = 226, .external_lex_state = 16}, + [1392] = {.lex_state = 226, .external_lex_state = 20}, + [1393] = {.lex_state = 226, .external_lex_state = 21}, + [1394] = {.lex_state = 226, .external_lex_state = 16}, + [1395] = {.lex_state = 134, .external_lex_state = 6}, + [1396] = {.lex_state = 226, .external_lex_state = 16}, + [1397] = {.lex_state = 221, .external_lex_state = 2}, + [1398] = {.lex_state = 226, .external_lex_state = 20}, + [1399] = {.lex_state = 138, .external_lex_state = 9}, + [1400] = {.lex_state = 171, .external_lex_state = 5}, + [1401] = {.lex_state = 173, .external_lex_state = 4}, + [1402] = {.lex_state = 71, .external_lex_state = 2}, + [1403] = {.lex_state = 138, .external_lex_state = 9}, + [1404] = {.lex_state = 199, .external_lex_state = 5}, + [1405] = {.lex_state = 132, .external_lex_state = 4}, + [1406] = {.lex_state = 221, .external_lex_state = 2}, + [1407] = {.lex_state = 226, .external_lex_state = 20}, + [1408] = {.lex_state = 138, .external_lex_state = 9}, + [1409] = {.lex_state = 171, .external_lex_state = 5}, + [1410] = {.lex_state = 173, .external_lex_state = 4}, + [1411] = {.lex_state = 134, .external_lex_state = 6}, + [1412] = {.lex_state = 221, .external_lex_state = 2}, + [1413] = {.lex_state = 199, .external_lex_state = 6}, + [1414] = {.lex_state = 199, .external_lex_state = 6}, + [1415] = {.lex_state = 199, .external_lex_state = 6}, + [1416] = {.lex_state = 71, .external_lex_state = 2}, + [1417] = {.lex_state = 134, .external_lex_state = 6}, + [1418] = {.lex_state = 221, .external_lex_state = 2}, + [1419] = {.lex_state = 224, .external_lex_state = 16}, + [1420] = {.lex_state = 78}, + [1421] = {.lex_state = 195, .external_lex_state = 16}, + [1422] = {.lex_state = 195, .external_lex_state = 16}, + [1423] = {.lex_state = 203, .external_lex_state = 17}, + [1424] = {.lex_state = 226, .external_lex_state = 21}, + [1425] = {.lex_state = 226, .external_lex_state = 16}, + [1426] = {.lex_state = 203, .external_lex_state = 17}, + [1427] = {.lex_state = 226, .external_lex_state = 21}, + [1428] = {.lex_state = 226, .external_lex_state = 16}, + [1429] = {.lex_state = 128, .external_lex_state = 6}, + [1430] = {.lex_state = 221, .external_lex_state = 2}, + [1431] = {.lex_state = 78}, + [1432] = {.lex_state = 78}, + [1433] = {.lex_state = 212, .external_lex_state = 10}, + [1434] = {.lex_state = 212, .external_lex_state = 10}, + [1435] = {.lex_state = 212, .external_lex_state = 10}, + [1436] = {.lex_state = 187}, + [1437] = {.lex_state = 224, .external_lex_state = 16}, + [1438] = {.lex_state = 78}, + [1439] = {.lex_state = 195, .external_lex_state = 16}, + [1440] = {.lex_state = 195, .external_lex_state = 16}, + [1441] = {.lex_state = 212, .external_lex_state = 10}, + [1442] = {.lex_state = 226, .external_lex_state = 21}, + [1443] = {.lex_state = 226, .external_lex_state = 16}, + [1444] = {.lex_state = 212, .external_lex_state = 10}, + [1445] = {.lex_state = 226, .external_lex_state = 21}, + [1446] = {.lex_state = 226, .external_lex_state = 16}, + [1447] = {.lex_state = 221, .external_lex_state = 2}, + [1448] = {.lex_state = 212, .external_lex_state = 10}, + [1449] = {.lex_state = 138, .external_lex_state = 9}, + [1450] = {.lex_state = 171, .external_lex_state = 5}, + [1451] = {.lex_state = 173, .external_lex_state = 4}, + [1452] = {.lex_state = 71, .external_lex_state = 2}, + [1453] = {.lex_state = 138, .external_lex_state = 9}, + [1454] = {.lex_state = 199, .external_lex_state = 5}, + [1455] = {.lex_state = 132, .external_lex_state = 4}, + [1456] = {.lex_state = 221, .external_lex_state = 2}, + [1457] = {.lex_state = 212, .external_lex_state = 10}, + [1458] = {.lex_state = 138, .external_lex_state = 9}, + [1459] = {.lex_state = 171, .external_lex_state = 5}, + [1460] = {.lex_state = 173, .external_lex_state = 4}, + [1461] = {.lex_state = 173, .external_lex_state = 14}, + [1462] = {.lex_state = 173, .external_lex_state = 14}, + [1463] = {.lex_state = 96, .external_lex_state = 20}, + [1464] = {.lex_state = 96, .external_lex_state = 20}, + [1465] = {.lex_state = 96, .external_lex_state = 16}, + [1466] = {.lex_state = 224, .external_lex_state = 16}, + [1467] = {.lex_state = 173, .external_lex_state = 14}, + [1468] = {.lex_state = 226, .external_lex_state = 21}, + [1469] = {.lex_state = 226, .external_lex_state = 16}, + [1470] = {.lex_state = 226, .external_lex_state = 21}, + [1471] = {.lex_state = 226, .external_lex_state = 16}, + [1472] = {.lex_state = 226, .external_lex_state = 16}, + [1473] = {.lex_state = 173, .external_lex_state = 14}, + [1474] = {.lex_state = 226, .external_lex_state = 16}, + [1475] = {.lex_state = 226, .external_lex_state = 16}, + [1476] = {.lex_state = 173, .external_lex_state = 14}, + [1477] = {.lex_state = 221, .external_lex_state = 2}, + [1478] = {.lex_state = 221, .external_lex_state = 2}, + [1479] = {.lex_state = 138, .external_lex_state = 9}, + [1480] = {.lex_state = 71, .external_lex_state = 2}, + [1481] = {.lex_state = 71, .external_lex_state = 2}, + [1482] = {.lex_state = 138, .external_lex_state = 9}, + [1483] = {.lex_state = 173, .external_lex_state = 14}, + [1484] = {.lex_state = 221, .external_lex_state = 2}, + [1485] = {.lex_state = 221, .external_lex_state = 2}, + [1486] = {.lex_state = 138, .external_lex_state = 9}, + [1487] = {.lex_state = 164}, + [1488] = {.lex_state = 175, .external_lex_state = 5}, + [1489] = {.lex_state = 164}, + [1490] = {.lex_state = 145}, + [1491] = {.lex_state = 214, .external_lex_state = 11}, + [1492] = {.lex_state = 214, .external_lex_state = 11}, + [1493] = {.lex_state = 96, .external_lex_state = 20}, + [1494] = {.lex_state = 96, .external_lex_state = 20}, + [1495] = {.lex_state = 96, .external_lex_state = 16}, + [1496] = {.lex_state = 224, .external_lex_state = 16}, + [1497] = {.lex_state = 214, .external_lex_state = 11}, + [1498] = {.lex_state = 226, .external_lex_state = 21}, + [1499] = {.lex_state = 226, .external_lex_state = 16}, + [1500] = {.lex_state = 226, .external_lex_state = 21}, + [1501] = {.lex_state = 226, .external_lex_state = 16}, + [1502] = {.lex_state = 226, .external_lex_state = 16}, + [1503] = {.lex_state = 214, .external_lex_state = 11}, + [1504] = {.lex_state = 226, .external_lex_state = 16}, + [1505] = {.lex_state = 226, .external_lex_state = 16}, + [1506] = {.lex_state = 214, .external_lex_state = 11}, + [1507] = {.lex_state = 221, .external_lex_state = 2}, + [1508] = {.lex_state = 221, .external_lex_state = 2}, + [1509] = {.lex_state = 138, .external_lex_state = 9}, + [1510] = {.lex_state = 71, .external_lex_state = 2}, + [1511] = {.lex_state = 71, .external_lex_state = 2}, + [1512] = {.lex_state = 138, .external_lex_state = 9}, + [1513] = {.lex_state = 214, .external_lex_state = 11}, + [1514] = {.lex_state = 221, .external_lex_state = 2}, + [1515] = {.lex_state = 221, .external_lex_state = 2}, + [1516] = {.lex_state = 138, .external_lex_state = 9}, + [1517] = {.lex_state = 230}, + [1518] = {.lex_state = 232, .external_lex_state = 11}, + [1519] = {.lex_state = 232, .external_lex_state = 11}, + [1520] = {.lex_state = 232, .external_lex_state = 11}, + [1521] = {.lex_state = 187}, + [1522] = {.lex_state = 224, .external_lex_state = 16}, + [1523] = {.lex_state = 78}, + [1524] = {.lex_state = 195, .external_lex_state = 16}, + [1525] = {.lex_state = 195, .external_lex_state = 16}, + [1526] = {.lex_state = 232, .external_lex_state = 11}, + [1527] = {.lex_state = 226, .external_lex_state = 21}, + [1528] = {.lex_state = 226, .external_lex_state = 16}, + [1529] = {.lex_state = 232, .external_lex_state = 11}, + [1530] = {.lex_state = 226, .external_lex_state = 21}, + [1531] = {.lex_state = 226, .external_lex_state = 16}, + [1532] = {.lex_state = 221, .external_lex_state = 2}, + [1533] = {.lex_state = 232, .external_lex_state = 11}, + [1534] = {.lex_state = 138, .external_lex_state = 9}, + [1535] = {.lex_state = 171, .external_lex_state = 5}, + [1536] = {.lex_state = 173, .external_lex_state = 4}, + [1537] = {.lex_state = 71, .external_lex_state = 2}, + [1538] = {.lex_state = 138, .external_lex_state = 9}, + [1539] = {.lex_state = 199, .external_lex_state = 5}, + [1540] = {.lex_state = 132, .external_lex_state = 4}, + [1541] = {.lex_state = 221, .external_lex_state = 2}, + [1542] = {.lex_state = 232, .external_lex_state = 11}, + [1543] = {.lex_state = 138, .external_lex_state = 9}, + [1544] = {.lex_state = 171, .external_lex_state = 5}, + [1545] = {.lex_state = 173, .external_lex_state = 4}, + [1546] = {.lex_state = 175, .external_lex_state = 5}, + [1547] = {.lex_state = 234, .external_lex_state = 10}, + [1548] = {.lex_state = 234, .external_lex_state = 10}, + [1549] = {.lex_state = 96, .external_lex_state = 20}, + [1550] = {.lex_state = 96, .external_lex_state = 20}, + [1551] = {.lex_state = 96, .external_lex_state = 16}, + [1552] = {.lex_state = 224, .external_lex_state = 16}, + [1553] = {.lex_state = 234, .external_lex_state = 10}, + [1554] = {.lex_state = 226, .external_lex_state = 21}, + [1555] = {.lex_state = 226, .external_lex_state = 16}, + [1556] = {.lex_state = 226, .external_lex_state = 21}, + [1557] = {.lex_state = 226, .external_lex_state = 16}, + [1558] = {.lex_state = 226, .external_lex_state = 16}, + [1559] = {.lex_state = 234, .external_lex_state = 10}, + [1560] = {.lex_state = 226, .external_lex_state = 16}, + [1561] = {.lex_state = 226, .external_lex_state = 16}, + [1562] = {.lex_state = 234, .external_lex_state = 10}, + [1563] = {.lex_state = 221, .external_lex_state = 2}, + [1564] = {.lex_state = 221, .external_lex_state = 2}, + [1565] = {.lex_state = 138, .external_lex_state = 9}, + [1566] = {.lex_state = 71, .external_lex_state = 2}, [1567] = {.lex_state = 71, .external_lex_state = 2}, - [1568] = {.lex_state = 238, .external_lex_state = 10}, - [1569] = {.lex_state = 217, .external_lex_state = 2}, - [1570] = {.lex_state = 210, .external_lex_state = 10}, - [1571] = {.lex_state = 210, .external_lex_state = 10}, - [1572] = {.lex_state = 212, .external_lex_state = 23}, - [1573] = {.lex_state = 212, .external_lex_state = 23}, - [1574] = {.lex_state = 212, .external_lex_state = 16}, - [1575] = {.lex_state = 224, .external_lex_state = 16}, - [1576] = {.lex_state = 210, .external_lex_state = 10}, - [1577] = {.lex_state = 224, .external_lex_state = 16}, - [1578] = {.lex_state = 224, .external_lex_state = 16}, - [1579] = {.lex_state = 224, .external_lex_state = 16}, - [1580] = {.lex_state = 210, .external_lex_state = 10}, - [1581] = {.lex_state = 224, .external_lex_state = 16}, - [1582] = {.lex_state = 210, .external_lex_state = 10}, - [1583] = {.lex_state = 210, .external_lex_state = 10}, - [1584] = {.lex_state = 198, .external_lex_state = 25}, - [1585] = {.lex_state = 198, .external_lex_state = 25}, - [1586] = {.lex_state = 228, .external_lex_state = 21}, - [1587] = {.lex_state = 94}, - [1588] = {.lex_state = 198, .external_lex_state = 25}, - [1589] = {.lex_state = 228, .external_lex_state = 25}, - [1590] = {.lex_state = 181}, - [1591] = {.lex_state = 106}, - [1592] = {.lex_state = 228, .external_lex_state = 25}, - [1593] = {.lex_state = 228, .external_lex_state = 25}, - [1594] = {.lex_state = 228, .external_lex_state = 25}, - [1595] = {.lex_state = 78}, - [1596] = {.lex_state = 187, .external_lex_state = 6}, - [1597] = {.lex_state = 189, .external_lex_state = 16}, - [1598] = {.lex_state = 189, .external_lex_state = 16}, - [1599] = {.lex_state = 163, .external_lex_state = 4}, - [1600] = {.lex_state = 167, .external_lex_state = 8}, - [1601] = {.lex_state = 71, .external_lex_state = 2}, - [1602] = {.lex_state = 98, .external_lex_state = 4}, - [1603] = {.lex_state = 129, .external_lex_state = 8}, - [1604] = {.lex_state = 71, .external_lex_state = 2}, - [1605] = {.lex_state = 163, .external_lex_state = 4}, - [1606] = {.lex_state = 167, .external_lex_state = 8}, - [1607] = {.lex_state = 71, .external_lex_state = 2}, - [1608] = {.lex_state = 129, .external_lex_state = 20}, - [1609] = {.lex_state = 94}, - [1610] = {.lex_state = 198, .external_lex_state = 25}, - [1611] = {.lex_state = 198, .external_lex_state = 25}, - [1612] = {.lex_state = 198, .external_lex_state = 25}, - [1613] = {.lex_state = 198, .external_lex_state = 25}, - [1614] = {.lex_state = 198, .external_lex_state = 21}, - [1615] = {.lex_state = 129, .external_lex_state = 21}, - [1616] = {.lex_state = 94}, - [1617] = {.lex_state = 127, .external_lex_state = 11}, - [1618] = {.lex_state = 127, .external_lex_state = 11}, - [1619] = {.lex_state = 198, .external_lex_state = 5}, - [1620] = {.lex_state = 71, .external_lex_state = 2}, - [1621] = {.lex_state = 71, .external_lex_state = 2}, - [1622] = {.lex_state = 169, .external_lex_state = 4}, - [1623] = {.lex_state = 94}, - [1624] = {.lex_state = 94}, - [1625] = {.lex_state = 253, .external_lex_state = 2}, - [1626] = {.lex_state = 248}, - [1627] = {.lex_state = 248, .external_lex_state = 10}, - [1628] = {.lex_state = 253, .external_lex_state = 2}, - [1629] = {.lex_state = 248}, - [1630] = {.lex_state = 169, .external_lex_state = 4}, - [1631] = {.lex_state = 251}, - [1632] = {.lex_state = 94}, - [1633] = {.lex_state = 94}, - [1634] = {.lex_state = 169, .external_lex_state = 4}, - [1635] = {.lex_state = 251}, - [1636] = {.lex_state = 94}, - [1637] = {.lex_state = 138, .external_lex_state = 11}, - [1638] = {.lex_state = 138, .external_lex_state = 11}, - [1639] = {.lex_state = 212, .external_lex_state = 23}, - [1640] = {.lex_state = 212, .external_lex_state = 23}, - [1641] = {.lex_state = 212, .external_lex_state = 16}, - [1642] = {.lex_state = 224, .external_lex_state = 16}, - [1643] = {.lex_state = 138, .external_lex_state = 11}, - [1644] = {.lex_state = 224, .external_lex_state = 16}, - [1645] = {.lex_state = 224, .external_lex_state = 16}, - [1646] = {.lex_state = 224, .external_lex_state = 16}, - [1647] = {.lex_state = 138, .external_lex_state = 11}, - [1648] = {.lex_state = 224, .external_lex_state = 16}, - [1649] = {.lex_state = 138, .external_lex_state = 11}, - [1650] = {.lex_state = 138, .external_lex_state = 11}, - [1651] = {.lex_state = 169, .external_lex_state = 4}, - [1652] = {.lex_state = 127, .external_lex_state = 11}, - [1653] = {.lex_state = 127, .external_lex_state = 11}, - [1654] = {.lex_state = 169, .external_lex_state = 4}, - [1655] = {.lex_state = 127, .external_lex_state = 11}, - [1656] = {.lex_state = 167, .external_lex_state = 20}, - [1657] = {.lex_state = 94}, - [1658] = {.lex_state = 220, .external_lex_state = 25}, - [1659] = {.lex_state = 220, .external_lex_state = 25}, - [1660] = {.lex_state = 220, .external_lex_state = 25}, - [1661] = {.lex_state = 220, .external_lex_state = 25}, - [1662] = {.lex_state = 220, .external_lex_state = 21}, - [1663] = {.lex_state = 167, .external_lex_state = 21}, - [1664] = {.lex_state = 94}, - [1665] = {.lex_state = 255, .external_lex_state = 11}, - [1666] = {.lex_state = 255, .external_lex_state = 11}, - [1667] = {.lex_state = 220, .external_lex_state = 5}, - [1668] = {.lex_state = 94, .external_lex_state = 2}, - [1669] = {.lex_state = 175, .external_lex_state = 12}, - [1670] = {.lex_state = 175, .external_lex_state = 12}, - [1671] = {.lex_state = 212, .external_lex_state = 23}, - [1672] = {.lex_state = 212, .external_lex_state = 23}, - [1673] = {.lex_state = 212, .external_lex_state = 16}, - [1674] = {.lex_state = 224, .external_lex_state = 16}, - [1675] = {.lex_state = 175, .external_lex_state = 12}, - [1676] = {.lex_state = 224, .external_lex_state = 16}, - [1677] = {.lex_state = 224, .external_lex_state = 16}, - [1678] = {.lex_state = 224, .external_lex_state = 16}, - [1679] = {.lex_state = 175, .external_lex_state = 12}, - [1680] = {.lex_state = 224, .external_lex_state = 16}, - [1681] = {.lex_state = 175, .external_lex_state = 12}, - [1682] = {.lex_state = 175, .external_lex_state = 12}, - [1683] = {.lex_state = 163, .external_lex_state = 3}, - [1684] = {.lex_state = 163, .external_lex_state = 14}, - [1685] = {.lex_state = 163, .external_lex_state = 14}, - [1686] = {.lex_state = 212, .external_lex_state = 23}, - [1687] = {.lex_state = 212, .external_lex_state = 23}, - [1688] = {.lex_state = 212, .external_lex_state = 16}, - [1689] = {.lex_state = 224, .external_lex_state = 16}, - [1690] = {.lex_state = 163, .external_lex_state = 14}, - [1691] = {.lex_state = 224, .external_lex_state = 16}, - [1692] = {.lex_state = 224, .external_lex_state = 16}, - [1693] = {.lex_state = 224, .external_lex_state = 16}, - [1694] = {.lex_state = 163, .external_lex_state = 14}, - [1695] = {.lex_state = 224, .external_lex_state = 16}, - [1696] = {.lex_state = 163, .external_lex_state = 14}, - [1697] = {.lex_state = 163, .external_lex_state = 14}, - [1698] = {.lex_state = 163, .external_lex_state = 11}, - [1699] = {.lex_state = 163, .external_lex_state = 11}, - [1700] = {.lex_state = 212, .external_lex_state = 23}, - [1701] = {.lex_state = 212, .external_lex_state = 23}, - [1702] = {.lex_state = 212, .external_lex_state = 16}, - [1703] = {.lex_state = 224, .external_lex_state = 16}, - [1704] = {.lex_state = 163, .external_lex_state = 11}, - [1705] = {.lex_state = 224, .external_lex_state = 16}, - [1706] = {.lex_state = 224, .external_lex_state = 16}, - [1707] = {.lex_state = 224, .external_lex_state = 16}, - [1708] = {.lex_state = 163, .external_lex_state = 11}, - [1709] = {.lex_state = 224, .external_lex_state = 16}, - [1710] = {.lex_state = 163, .external_lex_state = 11}, - [1711] = {.lex_state = 163, .external_lex_state = 11}, - [1712] = {.lex_state = 94, .external_lex_state = 15}, - [1713] = {.lex_state = 94, .external_lex_state = 15}, - [1714] = {.lex_state = 212, .external_lex_state = 23}, - [1715] = {.lex_state = 212, .external_lex_state = 23}, - [1716] = {.lex_state = 212, .external_lex_state = 16}, - [1717] = {.lex_state = 224, .external_lex_state = 16}, - [1718] = {.lex_state = 94, .external_lex_state = 15}, - [1719] = {.lex_state = 224, .external_lex_state = 16}, - [1720] = {.lex_state = 224, .external_lex_state = 16}, - [1721] = {.lex_state = 224, .external_lex_state = 16}, - [1722] = {.lex_state = 94, .external_lex_state = 15}, - [1723] = {.lex_state = 224, .external_lex_state = 16}, - [1724] = {.lex_state = 94, .external_lex_state = 15}, - [1725] = {.lex_state = 94, .external_lex_state = 15}, - [1726] = {.lex_state = 106, .external_lex_state = 10}, - [1727] = {.lex_state = 106, .external_lex_state = 10}, - [1728] = {.lex_state = 212, .external_lex_state = 23}, - [1729] = {.lex_state = 212, .external_lex_state = 23}, - [1730] = {.lex_state = 212, .external_lex_state = 16}, - [1731] = {.lex_state = 224, .external_lex_state = 16}, - [1732] = {.lex_state = 106, .external_lex_state = 10}, - [1733] = {.lex_state = 224, .external_lex_state = 16}, - [1734] = {.lex_state = 224, .external_lex_state = 16}, - [1735] = {.lex_state = 224, .external_lex_state = 16}, - [1736] = {.lex_state = 106, .external_lex_state = 10}, - [1737] = {.lex_state = 224, .external_lex_state = 16}, - [1738] = {.lex_state = 106, .external_lex_state = 10}, - [1739] = {.lex_state = 189, .external_lex_state = 23}, - [1740] = {.lex_state = 189, .external_lex_state = 16}, - [1741] = {.lex_state = 189, .external_lex_state = 23}, - [1742] = {.lex_state = 189, .external_lex_state = 16}, - [1743] = {.lex_state = 212, .external_lex_state = 23}, - [1744] = {.lex_state = 212, .external_lex_state = 23}, - [1745] = {.lex_state = 212, .external_lex_state = 23}, - [1746] = {.lex_state = 181}, - [1747] = {.lex_state = 222, .external_lex_state = 16}, - [1748] = {.lex_state = 78}, - [1749] = {.lex_state = 189, .external_lex_state = 16}, - [1750] = {.lex_state = 189, .external_lex_state = 16}, - [1751] = {.lex_state = 212, .external_lex_state = 23}, - [1752] = {.lex_state = 224, .external_lex_state = 24}, - [1753] = {.lex_state = 224, .external_lex_state = 16}, - [1754] = {.lex_state = 212, .external_lex_state = 23}, - [1755] = {.lex_state = 224, .external_lex_state = 24}, + [1568] = {.lex_state = 138, .external_lex_state = 9}, + [1569] = {.lex_state = 234, .external_lex_state = 10}, + [1570] = {.lex_state = 221, .external_lex_state = 2}, + [1571] = {.lex_state = 221, .external_lex_state = 2}, + [1572] = {.lex_state = 138, .external_lex_state = 9}, + [1573] = {.lex_state = 219, .external_lex_state = 10}, + [1574] = {.lex_state = 219, .external_lex_state = 10}, + [1575] = {.lex_state = 96, .external_lex_state = 20}, + [1576] = {.lex_state = 96, .external_lex_state = 20}, + [1577] = {.lex_state = 96, .external_lex_state = 16}, + [1578] = {.lex_state = 226, .external_lex_state = 16}, + [1579] = {.lex_state = 219, .external_lex_state = 10}, + [1580] = {.lex_state = 226, .external_lex_state = 16}, + [1581] = {.lex_state = 226, .external_lex_state = 16}, + [1582] = {.lex_state = 226, .external_lex_state = 16}, + [1583] = {.lex_state = 219, .external_lex_state = 10}, + [1584] = {.lex_state = 226, .external_lex_state = 16}, + [1585] = {.lex_state = 219, .external_lex_state = 10}, + [1586] = {.lex_state = 221, .external_lex_state = 2}, + [1587] = {.lex_state = 71, .external_lex_state = 2}, + [1588] = {.lex_state = 219, .external_lex_state = 10}, + [1589] = {.lex_state = 221, .external_lex_state = 2}, + [1590] = {.lex_state = 132, .external_lex_state = 14}, + [1591] = {.lex_state = 128, .external_lex_state = 6}, + [1592] = {.lex_state = 71, .external_lex_state = 2}, + [1593] = {.lex_state = 71, .external_lex_state = 2}, + [1594] = {.lex_state = 175, .external_lex_state = 5}, + [1595] = {.lex_state = 94}, + [1596] = {.lex_state = 94}, + [1597] = {.lex_state = 244, .external_lex_state = 2}, + [1598] = {.lex_state = 239}, + [1599] = {.lex_state = 239, .external_lex_state = 10}, + [1600] = {.lex_state = 244, .external_lex_state = 2}, + [1601] = {.lex_state = 239}, + [1602] = {.lex_state = 175, .external_lex_state = 5}, + [1603] = {.lex_state = 242}, + [1604] = {.lex_state = 94}, + [1605] = {.lex_state = 94}, + [1606] = {.lex_state = 175, .external_lex_state = 5}, + [1607] = {.lex_state = 242}, + [1608] = {.lex_state = 94}, + [1609] = {.lex_state = 141, .external_lex_state = 11}, + [1610] = {.lex_state = 141, .external_lex_state = 11}, + [1611] = {.lex_state = 96, .external_lex_state = 20}, + [1612] = {.lex_state = 96, .external_lex_state = 20}, + [1613] = {.lex_state = 96, .external_lex_state = 16}, + [1614] = {.lex_state = 226, .external_lex_state = 16}, + [1615] = {.lex_state = 141, .external_lex_state = 11}, + [1616] = {.lex_state = 226, .external_lex_state = 16}, + [1617] = {.lex_state = 226, .external_lex_state = 16}, + [1618] = {.lex_state = 226, .external_lex_state = 16}, + [1619] = {.lex_state = 141, .external_lex_state = 11}, + [1620] = {.lex_state = 226, .external_lex_state = 16}, + [1621] = {.lex_state = 141, .external_lex_state = 11}, + [1622] = {.lex_state = 221, .external_lex_state = 2}, + [1623] = {.lex_state = 71, .external_lex_state = 2}, + [1624] = {.lex_state = 141, .external_lex_state = 11}, + [1625] = {.lex_state = 221, .external_lex_state = 2}, + [1626] = {.lex_state = 173, .external_lex_state = 14}, + [1627] = {.lex_state = 171, .external_lex_state = 6}, + [1628] = {.lex_state = 175, .external_lex_state = 5}, + [1629] = {.lex_state = 94, .external_lex_state = 2}, + [1630] = {.lex_state = 181, .external_lex_state = 12}, + [1631] = {.lex_state = 181, .external_lex_state = 12}, + [1632] = {.lex_state = 96, .external_lex_state = 20}, + [1633] = {.lex_state = 96, .external_lex_state = 20}, + [1634] = {.lex_state = 96, .external_lex_state = 16}, + [1635] = {.lex_state = 226, .external_lex_state = 16}, + [1636] = {.lex_state = 181, .external_lex_state = 12}, + [1637] = {.lex_state = 226, .external_lex_state = 16}, + [1638] = {.lex_state = 226, .external_lex_state = 16}, + [1639] = {.lex_state = 226, .external_lex_state = 16}, + [1640] = {.lex_state = 181, .external_lex_state = 12}, + [1641] = {.lex_state = 226, .external_lex_state = 16}, + [1642] = {.lex_state = 181, .external_lex_state = 12}, + [1643] = {.lex_state = 221, .external_lex_state = 2}, + [1644] = {.lex_state = 71, .external_lex_state = 2}, + [1645] = {.lex_state = 181, .external_lex_state = 12}, + [1646] = {.lex_state = 221, .external_lex_state = 2}, + [1647] = {.lex_state = 167, .external_lex_state = 4}, + [1648] = {.lex_state = 167, .external_lex_state = 14}, + [1649] = {.lex_state = 167, .external_lex_state = 14}, + [1650] = {.lex_state = 96, .external_lex_state = 20}, + [1651] = {.lex_state = 96, .external_lex_state = 20}, + [1652] = {.lex_state = 96, .external_lex_state = 16}, + [1653] = {.lex_state = 226, .external_lex_state = 16}, + [1654] = {.lex_state = 167, .external_lex_state = 14}, + [1655] = {.lex_state = 226, .external_lex_state = 16}, + [1656] = {.lex_state = 226, .external_lex_state = 16}, + [1657] = {.lex_state = 226, .external_lex_state = 16}, + [1658] = {.lex_state = 167, .external_lex_state = 14}, + [1659] = {.lex_state = 226, .external_lex_state = 16}, + [1660] = {.lex_state = 167, .external_lex_state = 14}, + [1661] = {.lex_state = 221, .external_lex_state = 2}, + [1662] = {.lex_state = 71, .external_lex_state = 2}, + [1663] = {.lex_state = 167, .external_lex_state = 14}, + [1664] = {.lex_state = 221, .external_lex_state = 2}, + [1665] = {.lex_state = 167, .external_lex_state = 6}, + [1666] = {.lex_state = 167, .external_lex_state = 6}, + [1667] = {.lex_state = 96, .external_lex_state = 20}, + [1668] = {.lex_state = 96, .external_lex_state = 20}, + [1669] = {.lex_state = 96, .external_lex_state = 16}, + [1670] = {.lex_state = 226, .external_lex_state = 16}, + [1671] = {.lex_state = 167, .external_lex_state = 6}, + [1672] = {.lex_state = 226, .external_lex_state = 16}, + [1673] = {.lex_state = 226, .external_lex_state = 16}, + [1674] = {.lex_state = 226, .external_lex_state = 16}, + [1675] = {.lex_state = 167, .external_lex_state = 6}, + [1676] = {.lex_state = 226, .external_lex_state = 16}, + [1677] = {.lex_state = 167, .external_lex_state = 6}, + [1678] = {.lex_state = 221, .external_lex_state = 2}, + [1679] = {.lex_state = 71, .external_lex_state = 2}, + [1680] = {.lex_state = 167, .external_lex_state = 6}, + [1681] = {.lex_state = 221, .external_lex_state = 2}, + [1682] = {.lex_state = 94, .external_lex_state = 15}, + [1683] = {.lex_state = 94, .external_lex_state = 15}, + [1684] = {.lex_state = 96, .external_lex_state = 20}, + [1685] = {.lex_state = 96, .external_lex_state = 20}, + [1686] = {.lex_state = 96, .external_lex_state = 16}, + [1687] = {.lex_state = 226, .external_lex_state = 16}, + [1688] = {.lex_state = 94, .external_lex_state = 15}, + [1689] = {.lex_state = 226, .external_lex_state = 16}, + [1690] = {.lex_state = 226, .external_lex_state = 16}, + [1691] = {.lex_state = 226, .external_lex_state = 16}, + [1692] = {.lex_state = 94, .external_lex_state = 15}, + [1693] = {.lex_state = 226, .external_lex_state = 16}, + [1694] = {.lex_state = 94, .external_lex_state = 15}, + [1695] = {.lex_state = 221, .external_lex_state = 2}, + [1696] = {.lex_state = 71, .external_lex_state = 2}, + [1697] = {.lex_state = 94, .external_lex_state = 15}, + [1698] = {.lex_state = 221, .external_lex_state = 2}, + [1699] = {.lex_state = 107, .external_lex_state = 10}, + [1700] = {.lex_state = 107, .external_lex_state = 10}, + [1701] = {.lex_state = 96, .external_lex_state = 20}, + [1702] = {.lex_state = 96, .external_lex_state = 20}, + [1703] = {.lex_state = 96, .external_lex_state = 16}, + [1704] = {.lex_state = 226, .external_lex_state = 16}, + [1705] = {.lex_state = 107, .external_lex_state = 10}, + [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 = 107, .external_lex_state = 10}, + [1710] = {.lex_state = 226, .external_lex_state = 16}, + [1711] = {.lex_state = 107, .external_lex_state = 10}, + [1712] = {.lex_state = 221, .external_lex_state = 2}, + [1713] = {.lex_state = 71, .external_lex_state = 2}, + [1714] = {.lex_state = 195, .external_lex_state = 20}, + [1715] = {.lex_state = 195, .external_lex_state = 16}, + [1716] = {.lex_state = 195, .external_lex_state = 20}, + [1717] = {.lex_state = 195, .external_lex_state = 16}, + [1718] = {.lex_state = 96, .external_lex_state = 20}, + [1719] = {.lex_state = 96, .external_lex_state = 20}, + [1720] = {.lex_state = 96, .external_lex_state = 20}, + [1721] = {.lex_state = 187}, + [1722] = {.lex_state = 224, .external_lex_state = 16}, + [1723] = {.lex_state = 78}, + [1724] = {.lex_state = 195, .external_lex_state = 16}, + [1725] = {.lex_state = 195, .external_lex_state = 16}, + [1726] = {.lex_state = 96, .external_lex_state = 20}, + [1727] = {.lex_state = 226, .external_lex_state = 21}, + [1728] = {.lex_state = 226, .external_lex_state = 16}, + [1729] = {.lex_state = 96, .external_lex_state = 20}, + [1730] = {.lex_state = 226, .external_lex_state = 21}, + [1731] = {.lex_state = 226, .external_lex_state = 16}, + [1732] = {.lex_state = 221, .external_lex_state = 2}, + [1733] = {.lex_state = 96, .external_lex_state = 20}, + [1734] = {.lex_state = 138, .external_lex_state = 9}, + [1735] = {.lex_state = 171, .external_lex_state = 5}, + [1736] = {.lex_state = 173, .external_lex_state = 4}, + [1737] = {.lex_state = 71, .external_lex_state = 2}, + [1738] = {.lex_state = 138, .external_lex_state = 9}, + [1739] = {.lex_state = 199, .external_lex_state = 5}, + [1740] = {.lex_state = 132, .external_lex_state = 4}, + [1741] = {.lex_state = 221, .external_lex_state = 2}, + [1742] = {.lex_state = 96, .external_lex_state = 20}, + [1743] = {.lex_state = 138, .external_lex_state = 9}, + [1744] = {.lex_state = 171, .external_lex_state = 5}, + [1745] = {.lex_state = 173, .external_lex_state = 4}, + [1746] = {.lex_state = 134, .external_lex_state = 6}, + [1747] = {.lex_state = 134, .external_lex_state = 6}, + [1748] = {.lex_state = 134, .external_lex_state = 6}, + [1749] = {.lex_state = 226, .external_lex_state = 16}, + [1750] = {.lex_state = 226, .external_lex_state = 16}, + [1751] = {.lex_state = 226, .external_lex_state = 20}, + [1752] = {.lex_state = 226, .external_lex_state = 20}, + [1753] = {.lex_state = 96, .external_lex_state = 20}, + [1754] = {.lex_state = 96, .external_lex_state = 20}, + [1755] = {.lex_state = 96, .external_lex_state = 16}, [1756] = {.lex_state = 224, .external_lex_state = 16}, - [1757] = {.lex_state = 217, .external_lex_state = 2}, - [1758] = {.lex_state = 212, .external_lex_state = 23}, - [1759] = {.lex_state = 163, .external_lex_state = 4}, - [1760] = {.lex_state = 167, .external_lex_state = 8}, - [1761] = {.lex_state = 71, .external_lex_state = 2}, - [1762] = {.lex_state = 98, .external_lex_state = 4}, - [1763] = {.lex_state = 129, .external_lex_state = 8}, - [1764] = {.lex_state = 217, .external_lex_state = 2}, - [1765] = {.lex_state = 212, .external_lex_state = 23}, - [1766] = {.lex_state = 163, .external_lex_state = 4}, - [1767] = {.lex_state = 167, .external_lex_state = 8}, - [1768] = {.lex_state = 131, .external_lex_state = 5}, - [1769] = {.lex_state = 131, .external_lex_state = 5}, - [1770] = {.lex_state = 131, .external_lex_state = 5}, - [1771] = {.lex_state = 224, .external_lex_state = 16}, - [1772] = {.lex_state = 224, .external_lex_state = 16}, - [1773] = {.lex_state = 224, .external_lex_state = 23}, - [1774] = {.lex_state = 224, .external_lex_state = 23}, - [1775] = {.lex_state = 212, .external_lex_state = 23}, - [1776] = {.lex_state = 212, .external_lex_state = 23}, - [1777] = {.lex_state = 212, .external_lex_state = 16}, - [1778] = {.lex_state = 222, .external_lex_state = 16}, - [1779] = {.lex_state = 224, .external_lex_state = 23}, - [1780] = {.lex_state = 224, .external_lex_state = 24}, - [1781] = {.lex_state = 224, .external_lex_state = 16}, - [1782] = {.lex_state = 224, .external_lex_state = 24}, - [1783] = {.lex_state = 224, .external_lex_state = 16}, - [1784] = {.lex_state = 224, .external_lex_state = 16}, - [1785] = {.lex_state = 224, .external_lex_state = 23}, - [1786] = {.lex_state = 224, .external_lex_state = 16}, - [1787] = {.lex_state = 224, .external_lex_state = 16}, - [1788] = {.lex_state = 131, .external_lex_state = 5}, - [1789] = {.lex_state = 224, .external_lex_state = 23}, - [1790] = {.lex_state = 217, .external_lex_state = 2}, - [1791] = {.lex_state = 71, .external_lex_state = 2}, - [1792] = {.lex_state = 224, .external_lex_state = 23}, - [1793] = {.lex_state = 217, .external_lex_state = 2}, - [1794] = {.lex_state = 94}, - [1795] = {.lex_state = 226, .external_lex_state = 25}, - [1796] = {.lex_state = 226, .external_lex_state = 25}, - [1797] = {.lex_state = 226, .external_lex_state = 25}, - [1798] = {.lex_state = 226, .external_lex_state = 25}, - [1799] = {.lex_state = 226, .external_lex_state = 21}, - [1800] = {.lex_state = 129, .external_lex_state = 21}, - [1801] = {.lex_state = 94}, - [1802] = {.lex_state = 257, .external_lex_state = 11}, - [1803] = {.lex_state = 257, .external_lex_state = 11}, - [1804] = {.lex_state = 226, .external_lex_state = 5}, - [1805] = {.lex_state = 193, .external_lex_state = 17}, - [1806] = {.lex_state = 212, .external_lex_state = 23}, - [1807] = {.lex_state = 212, .external_lex_state = 23}, - [1808] = {.lex_state = 212, .external_lex_state = 16}, - [1809] = {.lex_state = 222, .external_lex_state = 16}, - [1810] = {.lex_state = 193, .external_lex_state = 17}, - [1811] = {.lex_state = 224, .external_lex_state = 24}, - [1812] = {.lex_state = 224, .external_lex_state = 16}, - [1813] = {.lex_state = 224, .external_lex_state = 24}, - [1814] = {.lex_state = 224, .external_lex_state = 16}, - [1815] = {.lex_state = 224, .external_lex_state = 16}, - [1816] = {.lex_state = 193, .external_lex_state = 17}, - [1817] = {.lex_state = 224, .external_lex_state = 16}, - [1818] = {.lex_state = 224, .external_lex_state = 16}, - [1819] = {.lex_state = 204, .external_lex_state = 10}, - [1820] = {.lex_state = 204, .external_lex_state = 10}, - [1821] = {.lex_state = 212, .external_lex_state = 23}, - [1822] = {.lex_state = 212, .external_lex_state = 23}, - [1823] = {.lex_state = 212, .external_lex_state = 16}, - [1824] = {.lex_state = 222, .external_lex_state = 16}, - [1825] = {.lex_state = 204, .external_lex_state = 10}, - [1826] = {.lex_state = 224, .external_lex_state = 24}, - [1827] = {.lex_state = 224, .external_lex_state = 16}, - [1828] = {.lex_state = 224, .external_lex_state = 24}, - [1829] = {.lex_state = 224, .external_lex_state = 16}, - [1830] = {.lex_state = 224, .external_lex_state = 16}, - [1831] = {.lex_state = 204, .external_lex_state = 10}, - [1832] = {.lex_state = 224, .external_lex_state = 16}, - [1833] = {.lex_state = 224, .external_lex_state = 16}, - [1834] = {.lex_state = 204, .external_lex_state = 10}, - [1835] = {.lex_state = 217, .external_lex_state = 2}, - [1836] = {.lex_state = 71, .external_lex_state = 2}, - [1837] = {.lex_state = 204, .external_lex_state = 10}, - [1838] = {.lex_state = 217, .external_lex_state = 2}, - [1839] = {.lex_state = 167, .external_lex_state = 20}, - [1840] = {.lex_state = 167, .external_lex_state = 20}, - [1841] = {.lex_state = 212, .external_lex_state = 23}, - [1842] = {.lex_state = 212, .external_lex_state = 23}, - [1843] = {.lex_state = 212, .external_lex_state = 16}, - [1844] = {.lex_state = 224, .external_lex_state = 16}, - [1845] = {.lex_state = 167, .external_lex_state = 20}, - [1846] = {.lex_state = 224, .external_lex_state = 16}, - [1847] = {.lex_state = 224, .external_lex_state = 16}, - [1848] = {.lex_state = 224, .external_lex_state = 16}, - [1849] = {.lex_state = 167, .external_lex_state = 20}, - [1850] = {.lex_state = 224, .external_lex_state = 16}, - [1851] = {.lex_state = 167, .external_lex_state = 20}, - [1852] = {.lex_state = 167, .external_lex_state = 20}, - [1853] = {.lex_state = 169, .external_lex_state = 4}, - [1854] = {.lex_state = 169, .external_lex_state = 4}, - [1855] = {.lex_state = 212, .external_lex_state = 22}, - [1856] = {.lex_state = 245}, - [1857] = {.lex_state = 245}, - [1858] = {.lex_state = 234, .external_lex_state = 11}, - [1859] = {.lex_state = 234, .external_lex_state = 11}, - [1860] = {.lex_state = 212, .external_lex_state = 23}, - [1861] = {.lex_state = 212, .external_lex_state = 23}, - [1862] = {.lex_state = 212, .external_lex_state = 16}, - [1863] = {.lex_state = 224, .external_lex_state = 16}, - [1864] = {.lex_state = 234, .external_lex_state = 11}, - [1865] = {.lex_state = 224, .external_lex_state = 16}, - [1866] = {.lex_state = 224, .external_lex_state = 16}, - [1867] = {.lex_state = 224, .external_lex_state = 16}, - [1868] = {.lex_state = 234, .external_lex_state = 11}, - [1869] = {.lex_state = 224, .external_lex_state = 16}, - [1870] = {.lex_state = 234, .external_lex_state = 11}, - [1871] = {.lex_state = 234, .external_lex_state = 11}, - [1872] = {.lex_state = 142}, - [1873] = {.lex_state = 236, .external_lex_state = 11}, - [1874] = {.lex_state = 236, .external_lex_state = 11}, - [1875] = {.lex_state = 212, .external_lex_state = 23}, - [1876] = {.lex_state = 212, .external_lex_state = 23}, - [1877] = {.lex_state = 212, .external_lex_state = 16}, - [1878] = {.lex_state = 222, .external_lex_state = 16}, - [1879] = {.lex_state = 236, .external_lex_state = 11}, - [1880] = {.lex_state = 224, .external_lex_state = 24}, - [1881] = {.lex_state = 224, .external_lex_state = 16}, - [1882] = {.lex_state = 224, .external_lex_state = 24}, - [1883] = {.lex_state = 224, .external_lex_state = 16}, - [1884] = {.lex_state = 224, .external_lex_state = 16}, - [1885] = {.lex_state = 236, .external_lex_state = 11}, - [1886] = {.lex_state = 224, .external_lex_state = 16}, - [1887] = {.lex_state = 224, .external_lex_state = 16}, - [1888] = {.lex_state = 236, .external_lex_state = 11}, - [1889] = {.lex_state = 217, .external_lex_state = 2}, - [1890] = {.lex_state = 71, .external_lex_state = 2}, - [1891] = {.lex_state = 236, .external_lex_state = 11}, - [1892] = {.lex_state = 217, .external_lex_state = 2}, - [1893] = {.lex_state = 238, .external_lex_state = 10}, - [1894] = {.lex_state = 238, .external_lex_state = 10}, - [1895] = {.lex_state = 212, .external_lex_state = 23}, - [1896] = {.lex_state = 212, .external_lex_state = 23}, - [1897] = {.lex_state = 212, .external_lex_state = 16}, - [1898] = {.lex_state = 224, .external_lex_state = 16}, - [1899] = {.lex_state = 238, .external_lex_state = 10}, - [1900] = {.lex_state = 224, .external_lex_state = 16}, - [1901] = {.lex_state = 224, .external_lex_state = 16}, - [1902] = {.lex_state = 224, .external_lex_state = 16}, - [1903] = {.lex_state = 238, .external_lex_state = 10}, - [1904] = {.lex_state = 224, .external_lex_state = 16}, - [1905] = {.lex_state = 238, .external_lex_state = 10}, - [1906] = {.lex_state = 238, .external_lex_state = 10}, - [1907] = {.lex_state = 210, .external_lex_state = 10}, - [1908] = {.lex_state = 210, .external_lex_state = 10}, - [1909] = {.lex_state = 210, .external_lex_state = 10}, - [1910] = {.lex_state = 224, .external_lex_state = 16}, - [1911] = {.lex_state = 224, .external_lex_state = 16}, - [1912] = {.lex_state = 210, .external_lex_state = 10}, - [1913] = {.lex_state = 228, .external_lex_state = 25}, - [1914] = {.lex_state = 198, .external_lex_state = 25}, - [1915] = {.lex_state = 228, .external_lex_state = 25}, - [1916] = {.lex_state = 181}, - [1917] = {.lex_state = 222, .external_lex_state = 16}, - [1918] = {.lex_state = 78}, - [1919] = {.lex_state = 189, .external_lex_state = 16}, - [1920] = {.lex_state = 189, .external_lex_state = 16}, - [1921] = {.lex_state = 228, .external_lex_state = 25}, - [1922] = {.lex_state = 224, .external_lex_state = 24}, - [1923] = {.lex_state = 224, .external_lex_state = 16}, - [1924] = {.lex_state = 228, .external_lex_state = 25}, - [1925] = {.lex_state = 224, .external_lex_state = 24}, - [1926] = {.lex_state = 224, .external_lex_state = 16}, - [1927] = {.lex_state = 217, .external_lex_state = 2}, - [1928] = {.lex_state = 228, .external_lex_state = 25}, - [1929] = {.lex_state = 163, .external_lex_state = 4}, - [1930] = {.lex_state = 167, .external_lex_state = 8}, - [1931] = {.lex_state = 71, .external_lex_state = 2}, - [1932] = {.lex_state = 98, .external_lex_state = 4}, - [1933] = {.lex_state = 129, .external_lex_state = 8}, - [1934] = {.lex_state = 217, .external_lex_state = 2}, - [1935] = {.lex_state = 228, .external_lex_state = 25}, - [1936] = {.lex_state = 163, .external_lex_state = 4}, - [1937] = {.lex_state = 167, .external_lex_state = 8}, - [1938] = {.lex_state = 198, .external_lex_state = 25}, - [1939] = {.lex_state = 198, .external_lex_state = 25}, - [1940] = {.lex_state = 198, .external_lex_state = 25}, - [1941] = {.lex_state = 127, .external_lex_state = 11}, - [1942] = {.lex_state = 127, .external_lex_state = 11}, - [1943] = {.lex_state = 127, .external_lex_state = 11}, - [1944] = {.lex_state = 71, .external_lex_state = 2}, - [1945] = {.lex_state = 169, .external_lex_state = 4}, - [1946] = {.lex_state = 248, .external_lex_state = 10}, - [1947] = {.lex_state = 248, .external_lex_state = 10}, - [1948] = {.lex_state = 248}, - [1949] = {.lex_state = 78}, - [1950] = {.lex_state = 88}, - [1951] = {.lex_state = 71, .external_lex_state = 2}, - [1952] = {.lex_state = 241}, - [1953] = {.lex_state = 94}, - [1954] = {.lex_state = 96, .external_lex_state = 2}, - [1955] = {.lex_state = 88}, - [1956] = {.lex_state = 88}, - [1957] = {.lex_state = 259, .external_lex_state = 3}, - [1958] = {.lex_state = 259, .external_lex_state = 4}, - [1959] = {.lex_state = 265, .external_lex_state = 5}, - [1960] = {.lex_state = 106}, - [1961] = {.lex_state = 113}, - [1962] = {.lex_state = 265, .external_lex_state = 5}, - [1963] = {.lex_state = 113, .external_lex_state = 6}, - [1964] = {.lex_state = 71, .external_lex_state = 2}, - [1965] = {.lex_state = 71, .external_lex_state = 2}, - [1966] = {.lex_state = 71, .external_lex_state = 2}, - [1967] = {.lex_state = 267, .external_lex_state = 5}, - [1968] = {.lex_state = 251, .external_lex_state = 4}, - [1969] = {.lex_state = 265, .external_lex_state = 7}, - [1970] = {.lex_state = 269, .external_lex_state = 8}, - [1971] = {.lex_state = 78}, - [1972] = {.lex_state = 265, .external_lex_state = 7}, - [1973] = {.lex_state = 253, .external_lex_state = 2}, - [1974] = {.lex_state = 94, .external_lex_state = 2}, - [1975] = {.lex_state = 253, .external_lex_state = 2}, - [1976] = {.lex_state = 248}, - [1977] = {.lex_state = 248, .external_lex_state = 10}, - [1978] = {.lex_state = 241}, - [1979] = {.lex_state = 251, .external_lex_state = 4}, - [1980] = {.lex_state = 269, .external_lex_state = 8}, - [1981] = {.lex_state = 253, .external_lex_state = 2}, - [1982] = {.lex_state = 253, .external_lex_state = 2}, - [1983] = {.lex_state = 169, .external_lex_state = 4}, - [1984] = {.lex_state = 248, .external_lex_state = 10}, - [1985] = {.lex_state = 248, .external_lex_state = 10}, - [1986] = {.lex_state = 248}, - [1987] = {.lex_state = 251}, - [1988] = {.lex_state = 169, .external_lex_state = 4}, - [1989] = {.lex_state = 251}, - [1990] = {.lex_state = 138, .external_lex_state = 11}, - [1991] = {.lex_state = 138, .external_lex_state = 11}, - [1992] = {.lex_state = 138, .external_lex_state = 11}, - [1993] = {.lex_state = 224, .external_lex_state = 16}, - [1994] = {.lex_state = 224, .external_lex_state = 16}, - [1995] = {.lex_state = 138, .external_lex_state = 11}, - [1996] = {.lex_state = 127, .external_lex_state = 11}, - [1997] = {.lex_state = 220, .external_lex_state = 25}, - [1998] = {.lex_state = 220, .external_lex_state = 25}, - [1999] = {.lex_state = 220, .external_lex_state = 25}, - [2000] = {.lex_state = 255, .external_lex_state = 11}, - [2001] = {.lex_state = 255, .external_lex_state = 11}, - [2002] = {.lex_state = 255, .external_lex_state = 11}, - [2003] = {.lex_state = 175, .external_lex_state = 12}, - [2004] = {.lex_state = 175, .external_lex_state = 12}, - [2005] = {.lex_state = 175, .external_lex_state = 12}, - [2006] = {.lex_state = 224, .external_lex_state = 16}, - [2007] = {.lex_state = 224, .external_lex_state = 16}, - [2008] = {.lex_state = 175, .external_lex_state = 12}, - [2009] = {.lex_state = 163, .external_lex_state = 14}, - [2010] = {.lex_state = 163, .external_lex_state = 14}, - [2011] = {.lex_state = 163, .external_lex_state = 14}, - [2012] = {.lex_state = 224, .external_lex_state = 16}, - [2013] = {.lex_state = 224, .external_lex_state = 16}, - [2014] = {.lex_state = 163, .external_lex_state = 14}, - [2015] = {.lex_state = 163, .external_lex_state = 11}, - [2016] = {.lex_state = 163, .external_lex_state = 11}, - [2017] = {.lex_state = 163, .external_lex_state = 11}, - [2018] = {.lex_state = 224, .external_lex_state = 16}, - [2019] = {.lex_state = 224, .external_lex_state = 16}, - [2020] = {.lex_state = 163, .external_lex_state = 11}, - [2021] = {.lex_state = 94, .external_lex_state = 15}, - [2022] = {.lex_state = 94, .external_lex_state = 15}, - [2023] = {.lex_state = 94, .external_lex_state = 15}, - [2024] = {.lex_state = 224, .external_lex_state = 16}, - [2025] = {.lex_state = 224, .external_lex_state = 16}, - [2026] = {.lex_state = 94, .external_lex_state = 15}, - [2027] = {.lex_state = 106, .external_lex_state = 10}, - [2028] = {.lex_state = 106, .external_lex_state = 10}, - [2029] = {.lex_state = 106, .external_lex_state = 10}, - [2030] = {.lex_state = 224, .external_lex_state = 16}, - [2031] = {.lex_state = 224, .external_lex_state = 16}, - [2032] = {.lex_state = 106, .external_lex_state = 10}, - [2033] = {.lex_state = 189, .external_lex_state = 16}, - [2034] = {.lex_state = 189, .external_lex_state = 16}, - [2035] = {.lex_state = 212, .external_lex_state = 23}, - [2036] = {.lex_state = 212, .external_lex_state = 23}, - [2037] = {.lex_state = 212, .external_lex_state = 23}, - [2038] = {.lex_state = 212, .external_lex_state = 23}, - [2039] = {.lex_state = 212, .external_lex_state = 16}, - [2040] = {.lex_state = 222, .external_lex_state = 16}, - [2041] = {.lex_state = 212, .external_lex_state = 23}, - [2042] = {.lex_state = 224, .external_lex_state = 24}, - [2043] = {.lex_state = 224, .external_lex_state = 16}, - [2044] = {.lex_state = 224, .external_lex_state = 24}, - [2045] = {.lex_state = 224, .external_lex_state = 16}, - [2046] = {.lex_state = 224, .external_lex_state = 16}, - [2047] = {.lex_state = 212, .external_lex_state = 23}, - [2048] = {.lex_state = 224, .external_lex_state = 16}, - [2049] = {.lex_state = 224, .external_lex_state = 16}, - [2050] = {.lex_state = 212, .external_lex_state = 23}, - [2051] = {.lex_state = 217, .external_lex_state = 2}, - [2052] = {.lex_state = 71, .external_lex_state = 2}, - [2053] = {.lex_state = 212, .external_lex_state = 23}, - [2054] = {.lex_state = 217, .external_lex_state = 2}, - [2055] = {.lex_state = 131, .external_lex_state = 5}, - [2056] = {.lex_state = 131, .external_lex_state = 5}, - [2057] = {.lex_state = 224, .external_lex_state = 23}, - [2058] = {.lex_state = 224, .external_lex_state = 23}, - [2059] = {.lex_state = 212, .external_lex_state = 23}, - [2060] = {.lex_state = 212, .external_lex_state = 23}, - [2061] = {.lex_state = 212, .external_lex_state = 16}, - [2062] = {.lex_state = 224, .external_lex_state = 16}, - [2063] = {.lex_state = 224, .external_lex_state = 23}, - [2064] = {.lex_state = 224, .external_lex_state = 16}, - [2065] = {.lex_state = 224, .external_lex_state = 16}, - [2066] = {.lex_state = 224, .external_lex_state = 16}, - [2067] = {.lex_state = 224, .external_lex_state = 23}, - [2068] = {.lex_state = 224, .external_lex_state = 16}, - [2069] = {.lex_state = 224, .external_lex_state = 23}, - [2070] = {.lex_state = 224, .external_lex_state = 23}, - [2071] = {.lex_state = 226, .external_lex_state = 25}, - [2072] = {.lex_state = 226, .external_lex_state = 25}, - [2073] = {.lex_state = 226, .external_lex_state = 25}, - [2074] = {.lex_state = 257, .external_lex_state = 11}, - [2075] = {.lex_state = 257, .external_lex_state = 11}, - [2076] = {.lex_state = 257, .external_lex_state = 11}, - [2077] = {.lex_state = 193, .external_lex_state = 17}, - [2078] = {.lex_state = 193, .external_lex_state = 17}, - [2079] = {.lex_state = 212, .external_lex_state = 23}, - [2080] = {.lex_state = 212, .external_lex_state = 23}, - [2081] = {.lex_state = 212, .external_lex_state = 16}, - [2082] = {.lex_state = 224, .external_lex_state = 16}, - [2083] = {.lex_state = 193, .external_lex_state = 17}, - [2084] = {.lex_state = 224, .external_lex_state = 16}, - [2085] = {.lex_state = 224, .external_lex_state = 16}, - [2086] = {.lex_state = 224, .external_lex_state = 16}, - [2087] = {.lex_state = 193, .external_lex_state = 17}, - [2088] = {.lex_state = 224, .external_lex_state = 16}, - [2089] = {.lex_state = 204, .external_lex_state = 10}, - [2090] = {.lex_state = 204, .external_lex_state = 10}, - [2091] = {.lex_state = 212, .external_lex_state = 23}, - [2092] = {.lex_state = 212, .external_lex_state = 23}, - [2093] = {.lex_state = 212, .external_lex_state = 16}, - [2094] = {.lex_state = 224, .external_lex_state = 16}, - [2095] = {.lex_state = 204, .external_lex_state = 10}, - [2096] = {.lex_state = 224, .external_lex_state = 16}, - [2097] = {.lex_state = 224, .external_lex_state = 16}, - [2098] = {.lex_state = 224, .external_lex_state = 16}, - [2099] = {.lex_state = 204, .external_lex_state = 10}, - [2100] = {.lex_state = 224, .external_lex_state = 16}, - [2101] = {.lex_state = 204, .external_lex_state = 10}, - [2102] = {.lex_state = 204, .external_lex_state = 10}, - [2103] = {.lex_state = 167, .external_lex_state = 20}, - [2104] = {.lex_state = 167, .external_lex_state = 20}, - [2105] = {.lex_state = 167, .external_lex_state = 20}, - [2106] = {.lex_state = 224, .external_lex_state = 16}, - [2107] = {.lex_state = 224, .external_lex_state = 16}, - [2108] = {.lex_state = 167, .external_lex_state = 20}, - [2109] = {.lex_state = 169, .external_lex_state = 4}, - [2110] = {.lex_state = 169, .external_lex_state = 4}, - [2111] = {.lex_state = 245}, - [2112] = {.lex_state = 234, .external_lex_state = 11}, - [2113] = {.lex_state = 234, .external_lex_state = 11}, - [2114] = {.lex_state = 234, .external_lex_state = 11}, - [2115] = {.lex_state = 224, .external_lex_state = 16}, - [2116] = {.lex_state = 224, .external_lex_state = 16}, - [2117] = {.lex_state = 234, .external_lex_state = 11}, - [2118] = {.lex_state = 245}, - [2119] = {.lex_state = 236, .external_lex_state = 11}, - [2120] = {.lex_state = 236, .external_lex_state = 11}, - [2121] = {.lex_state = 212, .external_lex_state = 23}, - [2122] = {.lex_state = 212, .external_lex_state = 23}, - [2123] = {.lex_state = 212, .external_lex_state = 16}, - [2124] = {.lex_state = 224, .external_lex_state = 16}, - [2125] = {.lex_state = 236, .external_lex_state = 11}, - [2126] = {.lex_state = 224, .external_lex_state = 16}, - [2127] = {.lex_state = 224, .external_lex_state = 16}, - [2128] = {.lex_state = 224, .external_lex_state = 16}, - [2129] = {.lex_state = 236, .external_lex_state = 11}, - [2130] = {.lex_state = 224, .external_lex_state = 16}, - [2131] = {.lex_state = 236, .external_lex_state = 11}, - [2132] = {.lex_state = 236, .external_lex_state = 11}, - [2133] = {.lex_state = 238, .external_lex_state = 10}, - [2134] = {.lex_state = 238, .external_lex_state = 10}, - [2135] = {.lex_state = 238, .external_lex_state = 10}, - [2136] = {.lex_state = 224, .external_lex_state = 16}, - [2137] = {.lex_state = 224, .external_lex_state = 16}, - [2138] = {.lex_state = 238, .external_lex_state = 10}, - [2139] = {.lex_state = 210, .external_lex_state = 10}, - [2140] = {.lex_state = 210, .external_lex_state = 10}, - [2141] = {.lex_state = 228, .external_lex_state = 25}, - [2142] = {.lex_state = 228, .external_lex_state = 25}, - [2143] = {.lex_state = 212, .external_lex_state = 23}, - [2144] = {.lex_state = 212, .external_lex_state = 23}, - [2145] = {.lex_state = 212, .external_lex_state = 16}, - [2146] = {.lex_state = 222, .external_lex_state = 16}, - [2147] = {.lex_state = 228, .external_lex_state = 25}, - [2148] = {.lex_state = 224, .external_lex_state = 24}, - [2149] = {.lex_state = 224, .external_lex_state = 16}, - [2150] = {.lex_state = 224, .external_lex_state = 24}, - [2151] = {.lex_state = 224, .external_lex_state = 16}, - [2152] = {.lex_state = 224, .external_lex_state = 16}, - [2153] = {.lex_state = 228, .external_lex_state = 25}, - [2154] = {.lex_state = 224, .external_lex_state = 16}, - [2155] = {.lex_state = 224, .external_lex_state = 16}, - [2156] = {.lex_state = 228, .external_lex_state = 25}, - [2157] = {.lex_state = 217, .external_lex_state = 2}, + [1757] = {.lex_state = 226, .external_lex_state = 20}, + [1758] = {.lex_state = 226, .external_lex_state = 21}, + [1759] = {.lex_state = 226, .external_lex_state = 16}, + [1760] = {.lex_state = 226, .external_lex_state = 21}, + [1761] = {.lex_state = 226, .external_lex_state = 16}, + [1762] = {.lex_state = 226, .external_lex_state = 16}, + [1763] = {.lex_state = 226, .external_lex_state = 20}, + [1764] = {.lex_state = 226, .external_lex_state = 16}, + [1765] = {.lex_state = 226, .external_lex_state = 16}, + [1766] = {.lex_state = 134, .external_lex_state = 6}, + [1767] = {.lex_state = 226, .external_lex_state = 20}, + [1768] = {.lex_state = 221, .external_lex_state = 2}, + [1769] = {.lex_state = 221, .external_lex_state = 2}, + [1770] = {.lex_state = 138, .external_lex_state = 9}, + [1771] = {.lex_state = 71, .external_lex_state = 2}, + [1772] = {.lex_state = 71, .external_lex_state = 2}, + [1773] = {.lex_state = 138, .external_lex_state = 9}, + [1774] = {.lex_state = 226, .external_lex_state = 20}, + [1775] = {.lex_state = 221, .external_lex_state = 2}, + [1776] = {.lex_state = 221, .external_lex_state = 2}, + [1777] = {.lex_state = 138, .external_lex_state = 9}, + [1778] = {.lex_state = 134, .external_lex_state = 6}, + [1779] = {.lex_state = 199, .external_lex_state = 6}, + [1780] = {.lex_state = 134, .external_lex_state = 6}, + [1781] = {.lex_state = 203, .external_lex_state = 17}, + [1782] = {.lex_state = 96, .external_lex_state = 20}, + [1783] = {.lex_state = 96, .external_lex_state = 20}, + [1784] = {.lex_state = 96, .external_lex_state = 16}, + [1785] = {.lex_state = 224, .external_lex_state = 16}, + [1786] = {.lex_state = 203, .external_lex_state = 17}, + [1787] = {.lex_state = 226, .external_lex_state = 21}, + [1788] = {.lex_state = 226, .external_lex_state = 16}, + [1789] = {.lex_state = 226, .external_lex_state = 21}, + [1790] = {.lex_state = 226, .external_lex_state = 16}, + [1791] = {.lex_state = 226, .external_lex_state = 16}, + [1792] = {.lex_state = 203, .external_lex_state = 17}, + [1793] = {.lex_state = 226, .external_lex_state = 16}, + [1794] = {.lex_state = 226, .external_lex_state = 16}, + [1795] = {.lex_state = 212, .external_lex_state = 10}, + [1796] = {.lex_state = 212, .external_lex_state = 10}, + [1797] = {.lex_state = 96, .external_lex_state = 20}, + [1798] = {.lex_state = 96, .external_lex_state = 20}, + [1799] = {.lex_state = 96, .external_lex_state = 16}, + [1800] = {.lex_state = 224, .external_lex_state = 16}, + [1801] = {.lex_state = 212, .external_lex_state = 10}, + [1802] = {.lex_state = 226, .external_lex_state = 21}, + [1803] = {.lex_state = 226, .external_lex_state = 16}, + [1804] = {.lex_state = 226, .external_lex_state = 21}, + [1805] = {.lex_state = 226, .external_lex_state = 16}, + [1806] = {.lex_state = 226, .external_lex_state = 16}, + [1807] = {.lex_state = 212, .external_lex_state = 10}, + [1808] = {.lex_state = 226, .external_lex_state = 16}, + [1809] = {.lex_state = 226, .external_lex_state = 16}, + [1810] = {.lex_state = 212, .external_lex_state = 10}, + [1811] = {.lex_state = 221, .external_lex_state = 2}, + [1812] = {.lex_state = 221, .external_lex_state = 2}, + [1813] = {.lex_state = 138, .external_lex_state = 9}, + [1814] = {.lex_state = 71, .external_lex_state = 2}, + [1815] = {.lex_state = 71, .external_lex_state = 2}, + [1816] = {.lex_state = 138, .external_lex_state = 9}, + [1817] = {.lex_state = 212, .external_lex_state = 10}, + [1818] = {.lex_state = 221, .external_lex_state = 2}, + [1819] = {.lex_state = 221, .external_lex_state = 2}, + [1820] = {.lex_state = 138, .external_lex_state = 9}, + [1821] = {.lex_state = 173, .external_lex_state = 14}, + [1822] = {.lex_state = 173, .external_lex_state = 14}, + [1823] = {.lex_state = 96, .external_lex_state = 20}, + [1824] = {.lex_state = 96, .external_lex_state = 20}, + [1825] = {.lex_state = 96, .external_lex_state = 16}, + [1826] = {.lex_state = 226, .external_lex_state = 16}, + [1827] = {.lex_state = 173, .external_lex_state = 14}, + [1828] = {.lex_state = 226, .external_lex_state = 16}, + [1829] = {.lex_state = 226, .external_lex_state = 16}, + [1830] = {.lex_state = 226, .external_lex_state = 16}, + [1831] = {.lex_state = 173, .external_lex_state = 14}, + [1832] = {.lex_state = 226, .external_lex_state = 16}, + [1833] = {.lex_state = 173, .external_lex_state = 14}, + [1834] = {.lex_state = 221, .external_lex_state = 2}, + [1835] = {.lex_state = 71, .external_lex_state = 2}, + [1836] = {.lex_state = 173, .external_lex_state = 14}, + [1837] = {.lex_state = 221, .external_lex_state = 2}, + [1838] = {.lex_state = 175, .external_lex_state = 5}, + [1839] = {.lex_state = 164}, + [1840] = {.lex_state = 164}, + [1841] = {.lex_state = 214, .external_lex_state = 11}, + [1842] = {.lex_state = 214, .external_lex_state = 11}, + [1843] = {.lex_state = 96, .external_lex_state = 20}, + [1844] = {.lex_state = 96, .external_lex_state = 20}, + [1845] = {.lex_state = 96, .external_lex_state = 16}, + [1846] = {.lex_state = 226, .external_lex_state = 16}, + [1847] = {.lex_state = 214, .external_lex_state = 11}, + [1848] = {.lex_state = 226, .external_lex_state = 16}, + [1849] = {.lex_state = 226, .external_lex_state = 16}, + [1850] = {.lex_state = 226, .external_lex_state = 16}, + [1851] = {.lex_state = 214, .external_lex_state = 11}, + [1852] = {.lex_state = 226, .external_lex_state = 16}, + [1853] = {.lex_state = 214, .external_lex_state = 11}, + [1854] = {.lex_state = 221, .external_lex_state = 2}, + [1855] = {.lex_state = 71, .external_lex_state = 2}, + [1856] = {.lex_state = 214, .external_lex_state = 11}, + [1857] = {.lex_state = 221, .external_lex_state = 2}, + [1858] = {.lex_state = 145}, + [1859] = {.lex_state = 232, .external_lex_state = 11}, + [1860] = {.lex_state = 232, .external_lex_state = 11}, + [1861] = {.lex_state = 96, .external_lex_state = 20}, + [1862] = {.lex_state = 96, .external_lex_state = 20}, + [1863] = {.lex_state = 96, .external_lex_state = 16}, + [1864] = {.lex_state = 224, .external_lex_state = 16}, + [1865] = {.lex_state = 232, .external_lex_state = 11}, + [1866] = {.lex_state = 226, .external_lex_state = 21}, + [1867] = {.lex_state = 226, .external_lex_state = 16}, + [1868] = {.lex_state = 226, .external_lex_state = 21}, + [1869] = {.lex_state = 226, .external_lex_state = 16}, + [1870] = {.lex_state = 226, .external_lex_state = 16}, + [1871] = {.lex_state = 232, .external_lex_state = 11}, + [1872] = {.lex_state = 226, .external_lex_state = 16}, + [1873] = {.lex_state = 226, .external_lex_state = 16}, + [1874] = {.lex_state = 232, .external_lex_state = 11}, + [1875] = {.lex_state = 221, .external_lex_state = 2}, + [1876] = {.lex_state = 221, .external_lex_state = 2}, + [1877] = {.lex_state = 138, .external_lex_state = 9}, + [1878] = {.lex_state = 71, .external_lex_state = 2}, + [1879] = {.lex_state = 71, .external_lex_state = 2}, + [1880] = {.lex_state = 138, .external_lex_state = 9}, + [1881] = {.lex_state = 232, .external_lex_state = 11}, + [1882] = {.lex_state = 221, .external_lex_state = 2}, + [1883] = {.lex_state = 221, .external_lex_state = 2}, + [1884] = {.lex_state = 138, .external_lex_state = 9}, + [1885] = {.lex_state = 234, .external_lex_state = 10}, + [1886] = {.lex_state = 234, .external_lex_state = 10}, + [1887] = {.lex_state = 96, .external_lex_state = 20}, + [1888] = {.lex_state = 96, .external_lex_state = 20}, + [1889] = {.lex_state = 96, .external_lex_state = 16}, + [1890] = {.lex_state = 226, .external_lex_state = 16}, + [1891] = {.lex_state = 234, .external_lex_state = 10}, + [1892] = {.lex_state = 226, .external_lex_state = 16}, + [1893] = {.lex_state = 226, .external_lex_state = 16}, + [1894] = {.lex_state = 226, .external_lex_state = 16}, + [1895] = {.lex_state = 234, .external_lex_state = 10}, + [1896] = {.lex_state = 226, .external_lex_state = 16}, + [1897] = {.lex_state = 234, .external_lex_state = 10}, + [1898] = {.lex_state = 221, .external_lex_state = 2}, + [1899] = {.lex_state = 71, .external_lex_state = 2}, + [1900] = {.lex_state = 234, .external_lex_state = 10}, + [1901] = {.lex_state = 221, .external_lex_state = 2}, + [1902] = {.lex_state = 219, .external_lex_state = 10}, + [1903] = {.lex_state = 219, .external_lex_state = 10}, + [1904] = {.lex_state = 219, .external_lex_state = 10}, + [1905] = {.lex_state = 226, .external_lex_state = 16}, + [1906] = {.lex_state = 226, .external_lex_state = 16}, + [1907] = {.lex_state = 219, .external_lex_state = 10}, + [1908] = {.lex_state = 219, .external_lex_state = 10}, + [1909] = {.lex_state = 219, .external_lex_state = 10}, + [1910] = {.lex_state = 71, .external_lex_state = 2}, + [1911] = {.lex_state = 175, .external_lex_state = 5}, + [1912] = {.lex_state = 239, .external_lex_state = 10}, + [1913] = {.lex_state = 239, .external_lex_state = 10}, + [1914] = {.lex_state = 239}, + [1915] = {.lex_state = 78}, + [1916] = {.lex_state = 237}, + [1917] = {.lex_state = 98, .external_lex_state = 2}, + [1918] = {.lex_state = 246, .external_lex_state = 4}, + [1919] = {.lex_state = 246, .external_lex_state = 5}, + [1920] = {.lex_state = 252, .external_lex_state = 6}, + [1921] = {.lex_state = 107}, + [1922] = {.lex_state = 114}, + [1923] = {.lex_state = 252, .external_lex_state = 6}, + [1924] = {.lex_state = 114, .external_lex_state = 7}, + [1925] = {.lex_state = 71, .external_lex_state = 2}, + [1926] = {.lex_state = 71, .external_lex_state = 2}, + [1927] = {.lex_state = 71, .external_lex_state = 2}, + [1928] = {.lex_state = 254, .external_lex_state = 6}, + [1929] = {.lex_state = 242, .external_lex_state = 5}, + [1930] = {.lex_state = 252, .external_lex_state = 5}, + [1931] = {.lex_state = 256, .external_lex_state = 4}, + [1932] = {.lex_state = 78}, + [1933] = {.lex_state = 252, .external_lex_state = 5}, + [1934] = {.lex_state = 244, .external_lex_state = 2}, + [1935] = {.lex_state = 94, .external_lex_state = 2}, + [1936] = {.lex_state = 244, .external_lex_state = 2}, + [1937] = {.lex_state = 239}, + [1938] = {.lex_state = 239, .external_lex_state = 10}, + [1939] = {.lex_state = 237}, + [1940] = {.lex_state = 242, .external_lex_state = 5}, + [1941] = {.lex_state = 256, .external_lex_state = 4}, + [1942] = {.lex_state = 244, .external_lex_state = 2}, + [1943] = {.lex_state = 244, .external_lex_state = 2}, + [1944] = {.lex_state = 175, .external_lex_state = 5}, + [1945] = {.lex_state = 239, .external_lex_state = 10}, + [1946] = {.lex_state = 239, .external_lex_state = 10}, + [1947] = {.lex_state = 239}, + [1948] = {.lex_state = 242}, + [1949] = {.lex_state = 175, .external_lex_state = 5}, + [1950] = {.lex_state = 242}, + [1951] = {.lex_state = 141, .external_lex_state = 11}, + [1952] = {.lex_state = 141, .external_lex_state = 11}, + [1953] = {.lex_state = 141, .external_lex_state = 11}, + [1954] = {.lex_state = 226, .external_lex_state = 16}, + [1955] = {.lex_state = 226, .external_lex_state = 16}, + [1956] = {.lex_state = 141, .external_lex_state = 11}, + [1957] = {.lex_state = 141, .external_lex_state = 11}, + [1958] = {.lex_state = 141, .external_lex_state = 11}, + [1959] = {.lex_state = 181, .external_lex_state = 12}, + [1960] = {.lex_state = 181, .external_lex_state = 12}, + [1961] = {.lex_state = 181, .external_lex_state = 12}, + [1962] = {.lex_state = 226, .external_lex_state = 16}, + [1963] = {.lex_state = 226, .external_lex_state = 16}, + [1964] = {.lex_state = 181, .external_lex_state = 12}, + [1965] = {.lex_state = 181, .external_lex_state = 12}, + [1966] = {.lex_state = 181, .external_lex_state = 12}, + [1967] = {.lex_state = 167, .external_lex_state = 14}, + [1968] = {.lex_state = 167, .external_lex_state = 14}, + [1969] = {.lex_state = 167, .external_lex_state = 14}, + [1970] = {.lex_state = 226, .external_lex_state = 16}, + [1971] = {.lex_state = 226, .external_lex_state = 16}, + [1972] = {.lex_state = 167, .external_lex_state = 14}, + [1973] = {.lex_state = 167, .external_lex_state = 14}, + [1974] = {.lex_state = 167, .external_lex_state = 14}, + [1975] = {.lex_state = 167, .external_lex_state = 6}, + [1976] = {.lex_state = 167, .external_lex_state = 6}, + [1977] = {.lex_state = 167, .external_lex_state = 6}, + [1978] = {.lex_state = 226, .external_lex_state = 16}, + [1979] = {.lex_state = 226, .external_lex_state = 16}, + [1980] = {.lex_state = 167, .external_lex_state = 6}, + [1981] = {.lex_state = 167, .external_lex_state = 6}, + [1982] = {.lex_state = 167, .external_lex_state = 6}, + [1983] = {.lex_state = 94, .external_lex_state = 15}, + [1984] = {.lex_state = 94, .external_lex_state = 15}, + [1985] = {.lex_state = 94, .external_lex_state = 15}, + [1986] = {.lex_state = 226, .external_lex_state = 16}, + [1987] = {.lex_state = 226, .external_lex_state = 16}, + [1988] = {.lex_state = 94, .external_lex_state = 15}, + [1989] = {.lex_state = 94, .external_lex_state = 15}, + [1990] = {.lex_state = 94, .external_lex_state = 15}, + [1991] = {.lex_state = 107, .external_lex_state = 10}, + [1992] = {.lex_state = 107, .external_lex_state = 10}, + [1993] = {.lex_state = 107, .external_lex_state = 10}, + [1994] = {.lex_state = 226, .external_lex_state = 16}, + [1995] = {.lex_state = 226, .external_lex_state = 16}, + [1996] = {.lex_state = 107, .external_lex_state = 10}, + [1997] = {.lex_state = 107, .external_lex_state = 10}, + [1998] = {.lex_state = 195, .external_lex_state = 16}, + [1999] = {.lex_state = 195, .external_lex_state = 16}, + [2000] = {.lex_state = 96, .external_lex_state = 20}, + [2001] = {.lex_state = 96, .external_lex_state = 20}, + [2002] = {.lex_state = 96, .external_lex_state = 20}, + [2003] = {.lex_state = 96, .external_lex_state = 20}, + [2004] = {.lex_state = 96, .external_lex_state = 16}, + [2005] = {.lex_state = 224, .external_lex_state = 16}, + [2006] = {.lex_state = 96, .external_lex_state = 20}, + [2007] = {.lex_state = 226, .external_lex_state = 21}, + [2008] = {.lex_state = 226, .external_lex_state = 16}, + [2009] = {.lex_state = 226, .external_lex_state = 21}, + [2010] = {.lex_state = 226, .external_lex_state = 16}, + [2011] = {.lex_state = 226, .external_lex_state = 16}, + [2012] = {.lex_state = 96, .external_lex_state = 20}, + [2013] = {.lex_state = 226, .external_lex_state = 16}, + [2014] = {.lex_state = 226, .external_lex_state = 16}, + [2015] = {.lex_state = 96, .external_lex_state = 20}, + [2016] = {.lex_state = 221, .external_lex_state = 2}, + [2017] = {.lex_state = 221, .external_lex_state = 2}, + [2018] = {.lex_state = 138, .external_lex_state = 9}, + [2019] = {.lex_state = 71, .external_lex_state = 2}, + [2020] = {.lex_state = 71, .external_lex_state = 2}, + [2021] = {.lex_state = 138, .external_lex_state = 9}, + [2022] = {.lex_state = 96, .external_lex_state = 20}, + [2023] = {.lex_state = 221, .external_lex_state = 2}, + [2024] = {.lex_state = 221, .external_lex_state = 2}, + [2025] = {.lex_state = 138, .external_lex_state = 9}, + [2026] = {.lex_state = 134, .external_lex_state = 6}, + [2027] = {.lex_state = 134, .external_lex_state = 6}, + [2028] = {.lex_state = 226, .external_lex_state = 20}, + [2029] = {.lex_state = 226, .external_lex_state = 20}, + [2030] = {.lex_state = 96, .external_lex_state = 20}, + [2031] = {.lex_state = 96, .external_lex_state = 20}, + [2032] = {.lex_state = 96, .external_lex_state = 16}, + [2033] = {.lex_state = 226, .external_lex_state = 16}, + [2034] = {.lex_state = 226, .external_lex_state = 20}, + [2035] = {.lex_state = 226, .external_lex_state = 16}, + [2036] = {.lex_state = 226, .external_lex_state = 16}, + [2037] = {.lex_state = 226, .external_lex_state = 16}, + [2038] = {.lex_state = 226, .external_lex_state = 20}, + [2039] = {.lex_state = 226, .external_lex_state = 16}, + [2040] = {.lex_state = 226, .external_lex_state = 20}, + [2041] = {.lex_state = 221, .external_lex_state = 2}, + [2042] = {.lex_state = 71, .external_lex_state = 2}, + [2043] = {.lex_state = 226, .external_lex_state = 20}, + [2044] = {.lex_state = 221, .external_lex_state = 2}, + [2045] = {.lex_state = 203, .external_lex_state = 17}, + [2046] = {.lex_state = 203, .external_lex_state = 17}, + [2047] = {.lex_state = 96, .external_lex_state = 20}, + [2048] = {.lex_state = 96, .external_lex_state = 20}, + [2049] = {.lex_state = 96, .external_lex_state = 16}, + [2050] = {.lex_state = 226, .external_lex_state = 16}, + [2051] = {.lex_state = 203, .external_lex_state = 17}, + [2052] = {.lex_state = 226, .external_lex_state = 16}, + [2053] = {.lex_state = 226, .external_lex_state = 16}, + [2054] = {.lex_state = 226, .external_lex_state = 16}, + [2055] = {.lex_state = 203, .external_lex_state = 17}, + [2056] = {.lex_state = 226, .external_lex_state = 16}, + [2057] = {.lex_state = 212, .external_lex_state = 10}, + [2058] = {.lex_state = 212, .external_lex_state = 10}, + [2059] = {.lex_state = 96, .external_lex_state = 20}, + [2060] = {.lex_state = 96, .external_lex_state = 20}, + [2061] = {.lex_state = 96, .external_lex_state = 16}, + [2062] = {.lex_state = 226, .external_lex_state = 16}, + [2063] = {.lex_state = 212, .external_lex_state = 10}, + [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 = 212, .external_lex_state = 10}, + [2068] = {.lex_state = 226, .external_lex_state = 16}, + [2069] = {.lex_state = 212, .external_lex_state = 10}, + [2070] = {.lex_state = 221, .external_lex_state = 2}, + [2071] = {.lex_state = 71, .external_lex_state = 2}, + [2072] = {.lex_state = 212, .external_lex_state = 10}, + [2073] = {.lex_state = 221, .external_lex_state = 2}, + [2074] = {.lex_state = 173, .external_lex_state = 14}, + [2075] = {.lex_state = 173, .external_lex_state = 14}, + [2076] = {.lex_state = 173, .external_lex_state = 14}, + [2077] = {.lex_state = 226, .external_lex_state = 16}, + [2078] = {.lex_state = 226, .external_lex_state = 16}, + [2079] = {.lex_state = 173, .external_lex_state = 14}, + [2080] = {.lex_state = 173, .external_lex_state = 14}, + [2081] = {.lex_state = 173, .external_lex_state = 14}, + [2082] = {.lex_state = 175, .external_lex_state = 5}, + [2083] = {.lex_state = 164}, + [2084] = {.lex_state = 214, .external_lex_state = 11}, + [2085] = {.lex_state = 214, .external_lex_state = 11}, + [2086] = {.lex_state = 214, .external_lex_state = 11}, + [2087] = {.lex_state = 226, .external_lex_state = 16}, + [2088] = {.lex_state = 226, .external_lex_state = 16}, + [2089] = {.lex_state = 214, .external_lex_state = 11}, + [2090] = {.lex_state = 214, .external_lex_state = 11}, + [2091] = {.lex_state = 214, .external_lex_state = 11}, + [2092] = {.lex_state = 164}, + [2093] = {.lex_state = 232, .external_lex_state = 11}, + [2094] = {.lex_state = 232, .external_lex_state = 11}, + [2095] = {.lex_state = 96, .external_lex_state = 20}, + [2096] = {.lex_state = 96, .external_lex_state = 20}, + [2097] = {.lex_state = 96, .external_lex_state = 16}, + [2098] = {.lex_state = 226, .external_lex_state = 16}, + [2099] = {.lex_state = 232, .external_lex_state = 11}, + [2100] = {.lex_state = 226, .external_lex_state = 16}, + [2101] = {.lex_state = 226, .external_lex_state = 16}, + [2102] = {.lex_state = 226, .external_lex_state = 16}, + [2103] = {.lex_state = 232, .external_lex_state = 11}, + [2104] = {.lex_state = 226, .external_lex_state = 16}, + [2105] = {.lex_state = 232, .external_lex_state = 11}, + [2106] = {.lex_state = 221, .external_lex_state = 2}, + [2107] = {.lex_state = 71, .external_lex_state = 2}, + [2108] = {.lex_state = 232, .external_lex_state = 11}, + [2109] = {.lex_state = 221, .external_lex_state = 2}, + [2110] = {.lex_state = 234, .external_lex_state = 10}, + [2111] = {.lex_state = 234, .external_lex_state = 10}, + [2112] = {.lex_state = 234, .external_lex_state = 10}, + [2113] = {.lex_state = 226, .external_lex_state = 16}, + [2114] = {.lex_state = 226, .external_lex_state = 16}, + [2115] = {.lex_state = 234, .external_lex_state = 10}, + [2116] = {.lex_state = 234, .external_lex_state = 10}, + [2117] = {.lex_state = 234, .external_lex_state = 10}, + [2118] = {.lex_state = 219, .external_lex_state = 10}, + [2119] = {.lex_state = 219, .external_lex_state = 10}, + [2120] = {.lex_state = 136, .external_lex_state = 8}, + [2121] = {.lex_state = 78}, + [2122] = {.lex_state = 246, .external_lex_state = 14}, + [2123] = {.lex_state = 107}, + [2124] = {.lex_state = 114}, + [2125] = {.lex_state = 246, .external_lex_state = 14}, + [2126] = {.lex_state = 114, .external_lex_state = 7}, + [2127] = {.lex_state = 71, .external_lex_state = 2}, + [2128] = {.lex_state = 71, .external_lex_state = 2}, + [2129] = {.lex_state = 71, .external_lex_state = 2}, + [2130] = {.lex_state = 78}, + [2131] = {.lex_state = 246, .external_lex_state = 4}, + [2132] = {.lex_state = 246, .external_lex_state = 6}, + [2133] = {.lex_state = 107}, + [2134] = {.lex_state = 114}, + [2135] = {.lex_state = 246, .external_lex_state = 6}, + [2136] = {.lex_state = 114, .external_lex_state = 7}, + [2137] = {.lex_state = 71, .external_lex_state = 2}, + [2138] = {.lex_state = 71, .external_lex_state = 2}, + [2139] = {.lex_state = 71, .external_lex_state = 2}, + [2140] = {.lex_state = 246, .external_lex_state = 5}, + [2141] = {.lex_state = 94}, + [2142] = {.lex_state = 252, .external_lex_state = 6}, + [2143] = {.lex_state = 252, .external_lex_state = 6}, + [2144] = {.lex_state = 187}, + [2145] = {.lex_state = 107}, + [2146] = {.lex_state = 252, .external_lex_state = 6}, + [2147] = {.lex_state = 252, .external_lex_state = 6}, + [2148] = {.lex_state = 252, .external_lex_state = 6}, + [2149] = {.lex_state = 78}, + [2150] = {.lex_state = 193, .external_lex_state = 7}, + [2151] = {.lex_state = 195, .external_lex_state = 16}, + [2152] = {.lex_state = 195, .external_lex_state = 16}, + [2153] = {.lex_state = 171, .external_lex_state = 5}, + [2154] = {.lex_state = 173, .external_lex_state = 4}, + [2155] = {.lex_state = 71, .external_lex_state = 2}, + [2156] = {.lex_state = 199, .external_lex_state = 5}, + [2157] = {.lex_state = 132, .external_lex_state = 4}, [2158] = {.lex_state = 71, .external_lex_state = 2}, - [2159] = {.lex_state = 228, .external_lex_state = 25}, - [2160] = {.lex_state = 217, .external_lex_state = 2}, - [2161] = {.lex_state = 198, .external_lex_state = 25}, - [2162] = {.lex_state = 127, .external_lex_state = 11}, - [2163] = {.lex_state = 133, .external_lex_state = 9}, - [2164] = {.lex_state = 142}, - [2165] = {.lex_state = 94}, - [2166] = {.lex_state = 161}, - [2167] = {.lex_state = 175, .external_lex_state = 13}, - [2168] = {.lex_state = 178}, - [2169] = {.lex_state = 78}, - [2170] = {.lex_state = 259, .external_lex_state = 14}, - [2171] = {.lex_state = 106}, - [2172] = {.lex_state = 113}, - [2173] = {.lex_state = 259, .external_lex_state = 14}, - [2174] = {.lex_state = 113, .external_lex_state = 6}, - [2175] = {.lex_state = 71, .external_lex_state = 2}, - [2176] = {.lex_state = 71, .external_lex_state = 2}, - [2177] = {.lex_state = 71, .external_lex_state = 2}, - [2178] = {.lex_state = 78}, - [2179] = {.lex_state = 259, .external_lex_state = 3}, - [2180] = {.lex_state = 259, .external_lex_state = 11}, - [2181] = {.lex_state = 106}, - [2182] = {.lex_state = 113}, - [2183] = {.lex_state = 259, .external_lex_state = 11}, - [2184] = {.lex_state = 113, .external_lex_state = 6}, - [2185] = {.lex_state = 71, .external_lex_state = 2}, - [2186] = {.lex_state = 71, .external_lex_state = 2}, - [2187] = {.lex_state = 71, .external_lex_state = 2}, - [2188] = {.lex_state = 259, .external_lex_state = 4}, - [2189] = {.lex_state = 94}, - [2190] = {.lex_state = 265, .external_lex_state = 5}, - [2191] = {.lex_state = 265, .external_lex_state = 5}, - [2192] = {.lex_state = 181}, - [2193] = {.lex_state = 106}, - [2194] = {.lex_state = 265, .external_lex_state = 5}, - [2195] = {.lex_state = 265, .external_lex_state = 5}, - [2196] = {.lex_state = 265, .external_lex_state = 5}, - [2197] = {.lex_state = 78}, - [2198] = {.lex_state = 187, .external_lex_state = 6}, - [2199] = {.lex_state = 189, .external_lex_state = 16}, - [2200] = {.lex_state = 189, .external_lex_state = 16}, - [2201] = {.lex_state = 163, .external_lex_state = 4}, - [2202] = {.lex_state = 167, .external_lex_state = 8}, - [2203] = {.lex_state = 71, .external_lex_state = 2}, - [2204] = {.lex_state = 98, .external_lex_state = 4}, - [2205] = {.lex_state = 129, .external_lex_state = 8}, - [2206] = {.lex_state = 71, .external_lex_state = 2}, - [2207] = {.lex_state = 163, .external_lex_state = 4}, - [2208] = {.lex_state = 167, .external_lex_state = 8}, - [2209] = {.lex_state = 71, .external_lex_state = 2}, - [2210] = {.lex_state = 78}, - [2211] = {.lex_state = 253, .external_lex_state = 2}, - [2212] = {.lex_state = 71, .external_lex_state = 2}, - [2213] = {.lex_state = 253, .external_lex_state = 2}, - [2214] = {.lex_state = 71, .external_lex_state = 2}, - [2215] = {.lex_state = 71}, - [2216] = {.lex_state = 196, .external_lex_state = 18}, - [2217] = {.lex_state = 94}, - [2218] = {.lex_state = 94}, - [2219] = {.lex_state = 265, .external_lex_state = 5}, - [2220] = {.lex_state = 265, .external_lex_state = 5}, - [2221] = {.lex_state = 271, .external_lex_state = 7}, - [2222] = {.lex_state = 265, .external_lex_state = 7}, - [2223] = {.lex_state = 241}, - [2224] = {.lex_state = 251, .external_lex_state = 4}, - [2225] = {.lex_state = 269, .external_lex_state = 8}, - [2226] = {.lex_state = 253, .external_lex_state = 2}, - [2227] = {.lex_state = 265, .external_lex_state = 7}, - [2228] = {.lex_state = 253, .external_lex_state = 2}, - [2229] = {.lex_state = 253, .external_lex_state = 2}, - [2230] = {.lex_state = 241}, - [2231] = {.lex_state = 251, .external_lex_state = 4}, - [2232] = {.lex_state = 269, .external_lex_state = 8}, - [2233] = {.lex_state = 253, .external_lex_state = 2}, - [2234] = {.lex_state = 217, .external_lex_state = 2}, - [2235] = {.lex_state = 248}, - [2236] = {.lex_state = 217, .external_lex_state = 2}, - [2237] = {.lex_state = 248}, - [2238] = {.lex_state = 169, .external_lex_state = 4}, - [2239] = {.lex_state = 169, .external_lex_state = 4}, - [2240] = {.lex_state = 138, .external_lex_state = 11}, - [2241] = {.lex_state = 138, .external_lex_state = 11}, - [2242] = {.lex_state = 220, .external_lex_state = 25}, - [2243] = {.lex_state = 255, .external_lex_state = 11}, - [2244] = {.lex_state = 175, .external_lex_state = 12}, - [2245] = {.lex_state = 175, .external_lex_state = 12}, - [2246] = {.lex_state = 163, .external_lex_state = 14}, - [2247] = {.lex_state = 163, .external_lex_state = 14}, - [2248] = {.lex_state = 163, .external_lex_state = 11}, - [2249] = {.lex_state = 163, .external_lex_state = 11}, - [2250] = {.lex_state = 94, .external_lex_state = 15}, - [2251] = {.lex_state = 94, .external_lex_state = 15}, - [2252] = {.lex_state = 106, .external_lex_state = 10}, - [2253] = {.lex_state = 106, .external_lex_state = 10}, - [2254] = {.lex_state = 212, .external_lex_state = 23}, - [2255] = {.lex_state = 212, .external_lex_state = 23}, - [2256] = {.lex_state = 212, .external_lex_state = 23}, - [2257] = {.lex_state = 212, .external_lex_state = 23}, - [2258] = {.lex_state = 212, .external_lex_state = 16}, - [2259] = {.lex_state = 224, .external_lex_state = 16}, - [2260] = {.lex_state = 212, .external_lex_state = 23}, - [2261] = {.lex_state = 224, .external_lex_state = 16}, - [2262] = {.lex_state = 224, .external_lex_state = 16}, - [2263] = {.lex_state = 224, .external_lex_state = 16}, - [2264] = {.lex_state = 212, .external_lex_state = 23}, - [2265] = {.lex_state = 224, .external_lex_state = 16}, - [2266] = {.lex_state = 212, .external_lex_state = 23}, - [2267] = {.lex_state = 212, .external_lex_state = 23}, - [2268] = {.lex_state = 224, .external_lex_state = 23}, - [2269] = {.lex_state = 224, .external_lex_state = 23}, - [2270] = {.lex_state = 224, .external_lex_state = 23}, - [2271] = {.lex_state = 224, .external_lex_state = 16}, - [2272] = {.lex_state = 224, .external_lex_state = 16}, - [2273] = {.lex_state = 224, .external_lex_state = 23}, - [2274] = {.lex_state = 226, .external_lex_state = 25}, - [2275] = {.lex_state = 257, .external_lex_state = 11}, - [2276] = {.lex_state = 193, .external_lex_state = 17}, - [2277] = {.lex_state = 193, .external_lex_state = 17}, - [2278] = {.lex_state = 193, .external_lex_state = 17}, - [2279] = {.lex_state = 224, .external_lex_state = 16}, - [2280] = {.lex_state = 224, .external_lex_state = 16}, - [2281] = {.lex_state = 193, .external_lex_state = 17}, - [2282] = {.lex_state = 204, .external_lex_state = 10}, - [2283] = {.lex_state = 204, .external_lex_state = 10}, - [2284] = {.lex_state = 204, .external_lex_state = 10}, - [2285] = {.lex_state = 224, .external_lex_state = 16}, - [2286] = {.lex_state = 224, .external_lex_state = 16}, - [2287] = {.lex_state = 204, .external_lex_state = 10}, - [2288] = {.lex_state = 167, .external_lex_state = 20}, - [2289] = {.lex_state = 167, .external_lex_state = 20}, - [2290] = {.lex_state = 169, .external_lex_state = 4}, - [2291] = {.lex_state = 234, .external_lex_state = 11}, - [2292] = {.lex_state = 234, .external_lex_state = 11}, - [2293] = {.lex_state = 245}, - [2294] = {.lex_state = 236, .external_lex_state = 11}, - [2295] = {.lex_state = 236, .external_lex_state = 11}, - [2296] = {.lex_state = 236, .external_lex_state = 11}, - [2297] = {.lex_state = 224, .external_lex_state = 16}, - [2298] = {.lex_state = 224, .external_lex_state = 16}, - [2299] = {.lex_state = 236, .external_lex_state = 11}, - [2300] = {.lex_state = 238, .external_lex_state = 10}, - [2301] = {.lex_state = 238, .external_lex_state = 10}, - [2302] = {.lex_state = 228, .external_lex_state = 25}, - [2303] = {.lex_state = 228, .external_lex_state = 25}, - [2304] = {.lex_state = 212, .external_lex_state = 23}, - [2305] = {.lex_state = 212, .external_lex_state = 23}, - [2306] = {.lex_state = 212, .external_lex_state = 16}, - [2307] = {.lex_state = 224, .external_lex_state = 16}, - [2308] = {.lex_state = 228, .external_lex_state = 25}, - [2309] = {.lex_state = 224, .external_lex_state = 16}, - [2310] = {.lex_state = 224, .external_lex_state = 16}, - [2311] = {.lex_state = 224, .external_lex_state = 16}, - [2312] = {.lex_state = 228, .external_lex_state = 25}, - [2313] = {.lex_state = 224, .external_lex_state = 16}, - [2314] = {.lex_state = 228, .external_lex_state = 25}, - [2315] = {.lex_state = 228, .external_lex_state = 25}, - [2316] = {.lex_state = 269, .external_lex_state = 8}, - [2317] = {.lex_state = 204}, - [2318] = {.lex_state = 269, .external_lex_state = 20}, - [2319] = {.lex_state = 106}, - [2320] = {.lex_state = 113}, - [2321] = {.lex_state = 269, .external_lex_state = 20}, - [2322] = {.lex_state = 113, .external_lex_state = 6}, - [2323] = {.lex_state = 71, .external_lex_state = 2}, - [2324] = {.lex_state = 71, .external_lex_state = 2}, - [2325] = {.lex_state = 71, .external_lex_state = 2}, - [2326] = {.lex_state = 271, .external_lex_state = 21}, - [2327] = {.lex_state = 271, .external_lex_state = 7}, - [2328] = {.lex_state = 78}, - [2329] = {.lex_state = 273, .external_lex_state = 21}, - [2330] = {.lex_state = 133, .external_lex_state = 9}, - [2331] = {.lex_state = 94}, - [2332] = {.lex_state = 259, .external_lex_state = 14}, - [2333] = {.lex_state = 259, .external_lex_state = 14}, - [2334] = {.lex_state = 181}, - [2335] = {.lex_state = 106}, - [2336] = {.lex_state = 259, .external_lex_state = 14}, - [2337] = {.lex_state = 259, .external_lex_state = 14}, - [2338] = {.lex_state = 259, .external_lex_state = 14}, - [2339] = {.lex_state = 78}, - [2340] = {.lex_state = 187, .external_lex_state = 6}, - [2341] = {.lex_state = 189, .external_lex_state = 16}, - [2342] = {.lex_state = 189, .external_lex_state = 16}, - [2343] = {.lex_state = 163, .external_lex_state = 4}, - [2344] = {.lex_state = 167, .external_lex_state = 8}, - [2345] = {.lex_state = 71, .external_lex_state = 2}, - [2346] = {.lex_state = 98, .external_lex_state = 4}, - [2347] = {.lex_state = 129, .external_lex_state = 8}, - [2348] = {.lex_state = 71, .external_lex_state = 2}, - [2349] = {.lex_state = 163, .external_lex_state = 4}, - [2350] = {.lex_state = 167, .external_lex_state = 8}, - [2351] = {.lex_state = 71, .external_lex_state = 2}, - [2352] = {.lex_state = 259, .external_lex_state = 3}, - [2353] = {.lex_state = 94}, - [2354] = {.lex_state = 259, .external_lex_state = 11}, - [2355] = {.lex_state = 259, .external_lex_state = 11}, - [2356] = {.lex_state = 181}, - [2357] = {.lex_state = 106}, - [2358] = {.lex_state = 259, .external_lex_state = 11}, - [2359] = {.lex_state = 259, .external_lex_state = 11}, - [2360] = {.lex_state = 259, .external_lex_state = 11}, - [2361] = {.lex_state = 78}, - [2362] = {.lex_state = 187, .external_lex_state = 6}, - [2363] = {.lex_state = 189, .external_lex_state = 16}, - [2364] = {.lex_state = 189, .external_lex_state = 16}, - [2365] = {.lex_state = 163, .external_lex_state = 4}, - [2366] = {.lex_state = 167, .external_lex_state = 8}, - [2367] = {.lex_state = 71, .external_lex_state = 2}, - [2368] = {.lex_state = 98, .external_lex_state = 4}, - [2369] = {.lex_state = 129, .external_lex_state = 8}, - [2370] = {.lex_state = 71, .external_lex_state = 2}, - [2371] = {.lex_state = 163, .external_lex_state = 4}, - [2372] = {.lex_state = 167, .external_lex_state = 8}, - [2373] = {.lex_state = 71, .external_lex_state = 2}, - [2374] = {.lex_state = 259, .external_lex_state = 4}, - [2375] = {.lex_state = 265, .external_lex_state = 5}, - [2376] = {.lex_state = 265, .external_lex_state = 5}, - [2377] = {.lex_state = 265, .external_lex_state = 5}, - [2378] = {.lex_state = 181}, - [2379] = {.lex_state = 222, .external_lex_state = 16}, - [2380] = {.lex_state = 78}, - [2381] = {.lex_state = 189, .external_lex_state = 16}, - [2382] = {.lex_state = 189, .external_lex_state = 16}, - [2383] = {.lex_state = 265, .external_lex_state = 5}, - [2384] = {.lex_state = 224, .external_lex_state = 24}, - [2385] = {.lex_state = 224, .external_lex_state = 16}, - [2386] = {.lex_state = 265, .external_lex_state = 5}, - [2387] = {.lex_state = 224, .external_lex_state = 24}, - [2388] = {.lex_state = 224, .external_lex_state = 16}, - [2389] = {.lex_state = 217, .external_lex_state = 2}, - [2390] = {.lex_state = 265, .external_lex_state = 5}, - [2391] = {.lex_state = 163, .external_lex_state = 4}, - [2392] = {.lex_state = 167, .external_lex_state = 8}, - [2393] = {.lex_state = 71, .external_lex_state = 2}, - [2394] = {.lex_state = 98, .external_lex_state = 4}, - [2395] = {.lex_state = 129, .external_lex_state = 8}, - [2396] = {.lex_state = 217, .external_lex_state = 2}, - [2397] = {.lex_state = 265, .external_lex_state = 5}, - [2398] = {.lex_state = 163, .external_lex_state = 4}, - [2399] = {.lex_state = 167, .external_lex_state = 8}, - [2400] = {.lex_state = 161}, - [2401] = {.lex_state = 269, .external_lex_state = 8}, - [2402] = {.lex_state = 251, .external_lex_state = 4}, - [2403] = {.lex_state = 269, .external_lex_state = 8}, - [2404] = {.lex_state = 94}, - [2405] = {.lex_state = 265, .external_lex_state = 7}, - [2406] = {.lex_state = 265, .external_lex_state = 5}, - [2407] = {.lex_state = 265, .external_lex_state = 5}, - [2408] = {.lex_state = 271, .external_lex_state = 5}, - [2409] = {.lex_state = 106}, - [2410] = {.lex_state = 113}, - [2411] = {.lex_state = 271, .external_lex_state = 5}, - [2412] = {.lex_state = 113, .external_lex_state = 6}, - [2413] = {.lex_state = 71, .external_lex_state = 2}, - [2414] = {.lex_state = 71, .external_lex_state = 2}, - [2415] = {.lex_state = 71, .external_lex_state = 2}, - [2416] = {.lex_state = 271, .external_lex_state = 5}, - [2417] = {.lex_state = 271, .external_lex_state = 5}, - [2418] = {.lex_state = 271, .external_lex_state = 7}, - [2419] = {.lex_state = 271, .external_lex_state = 7}, - [2420] = {.lex_state = 265, .external_lex_state = 7}, - [2421] = {.lex_state = 253, .external_lex_state = 2}, - [2422] = {.lex_state = 98, .external_lex_state = 4}, - [2423] = {.lex_state = 129, .external_lex_state = 8}, - [2424] = {.lex_state = 265, .external_lex_state = 7}, - [2425] = {.lex_state = 241}, - [2426] = {.lex_state = 251, .external_lex_state = 4}, - [2427] = {.lex_state = 269, .external_lex_state = 8}, - [2428] = {.lex_state = 253, .external_lex_state = 2}, - [2429] = {.lex_state = 241}, - [2430] = {.lex_state = 251, .external_lex_state = 4}, - [2431] = {.lex_state = 269, .external_lex_state = 8}, - [2432] = {.lex_state = 94}, - [2433] = {.lex_state = 98, .external_lex_state = 4}, - [2434] = {.lex_state = 129, .external_lex_state = 8}, - [2435] = {.lex_state = 217, .external_lex_state = 2}, - [2436] = {.lex_state = 217, .external_lex_state = 2}, - [2437] = {.lex_state = 94}, - [2438] = {.lex_state = 98, .external_lex_state = 4}, - [2439] = {.lex_state = 129, .external_lex_state = 8}, - [2440] = {.lex_state = 217, .external_lex_state = 2}, - [2441] = {.lex_state = 217, .external_lex_state = 2}, - [2442] = {.lex_state = 212, .external_lex_state = 23}, - [2443] = {.lex_state = 212, .external_lex_state = 23}, - [2444] = {.lex_state = 212, .external_lex_state = 23}, - [2445] = {.lex_state = 224, .external_lex_state = 16}, - [2446] = {.lex_state = 224, .external_lex_state = 16}, - [2447] = {.lex_state = 212, .external_lex_state = 23}, - [2448] = {.lex_state = 224, .external_lex_state = 23}, - [2449] = {.lex_state = 224, .external_lex_state = 23}, - [2450] = {.lex_state = 193, .external_lex_state = 17}, - [2451] = {.lex_state = 193, .external_lex_state = 17}, - [2452] = {.lex_state = 204, .external_lex_state = 10}, - [2453] = {.lex_state = 204, .external_lex_state = 10}, - [2454] = {.lex_state = 169, .external_lex_state = 4}, - [2455] = {.lex_state = 236, .external_lex_state = 11}, - [2456] = {.lex_state = 236, .external_lex_state = 11}, - [2457] = {.lex_state = 228, .external_lex_state = 25}, - [2458] = {.lex_state = 228, .external_lex_state = 25}, - [2459] = {.lex_state = 228, .external_lex_state = 25}, + [2159] = {.lex_state = 171, .external_lex_state = 5}, + [2160] = {.lex_state = 173, .external_lex_state = 4}, + [2161] = {.lex_state = 71, .external_lex_state = 2}, + [2162] = {.lex_state = 71}, + [2163] = {.lex_state = 244, .external_lex_state = 2}, + [2164] = {.lex_state = 71, .external_lex_state = 2}, + [2165] = {.lex_state = 244, .external_lex_state = 2}, + [2166] = {.lex_state = 71, .external_lex_state = 2}, + [2167] = {.lex_state = 94}, + [2168] = {.lex_state = 94}, + [2169] = {.lex_state = 138, .external_lex_state = 9}, + [2170] = {.lex_state = 242, .external_lex_state = 5}, + [2171] = {.lex_state = 208, .external_lex_state = 19}, + [2172] = {.lex_state = 252, .external_lex_state = 6}, + [2173] = {.lex_state = 252, .external_lex_state = 6}, + [2174] = {.lex_state = 252, .external_lex_state = 5}, + [2175] = {.lex_state = 237}, + [2176] = {.lex_state = 242, .external_lex_state = 5}, + [2177] = {.lex_state = 256, .external_lex_state = 4}, + [2178] = {.lex_state = 244, .external_lex_state = 2}, + [2179] = {.lex_state = 252, .external_lex_state = 5}, + [2180] = {.lex_state = 244, .external_lex_state = 2}, + [2181] = {.lex_state = 244, .external_lex_state = 2}, + [2182] = {.lex_state = 237}, + [2183] = {.lex_state = 242, .external_lex_state = 5}, + [2184] = {.lex_state = 256, .external_lex_state = 4}, + [2185] = {.lex_state = 244, .external_lex_state = 2}, + [2186] = {.lex_state = 221, .external_lex_state = 2}, + [2187] = {.lex_state = 239}, + [2188] = {.lex_state = 221, .external_lex_state = 2}, + [2189] = {.lex_state = 239}, + [2190] = {.lex_state = 175, .external_lex_state = 5}, + [2191] = {.lex_state = 175, .external_lex_state = 5}, + [2192] = {.lex_state = 141, .external_lex_state = 11}, + [2193] = {.lex_state = 141, .external_lex_state = 11}, + [2194] = {.lex_state = 181, .external_lex_state = 12}, + [2195] = {.lex_state = 181, .external_lex_state = 12}, + [2196] = {.lex_state = 167, .external_lex_state = 14}, + [2197] = {.lex_state = 167, .external_lex_state = 14}, + [2198] = {.lex_state = 167, .external_lex_state = 6}, + [2199] = {.lex_state = 167, .external_lex_state = 6}, + [2200] = {.lex_state = 94, .external_lex_state = 15}, + [2201] = {.lex_state = 94, .external_lex_state = 15}, + [2202] = {.lex_state = 107, .external_lex_state = 10}, + [2203] = {.lex_state = 107, .external_lex_state = 10}, + [2204] = {.lex_state = 96, .external_lex_state = 20}, + [2205] = {.lex_state = 96, .external_lex_state = 20}, + [2206] = {.lex_state = 96, .external_lex_state = 20}, + [2207] = {.lex_state = 96, .external_lex_state = 20}, + [2208] = {.lex_state = 96, .external_lex_state = 16}, + [2209] = {.lex_state = 226, .external_lex_state = 16}, + [2210] = {.lex_state = 96, .external_lex_state = 20}, + [2211] = {.lex_state = 226, .external_lex_state = 16}, + [2212] = {.lex_state = 226, .external_lex_state = 16}, + [2213] = {.lex_state = 226, .external_lex_state = 16}, + [2214] = {.lex_state = 96, .external_lex_state = 20}, + [2215] = {.lex_state = 226, .external_lex_state = 16}, + [2216] = {.lex_state = 96, .external_lex_state = 20}, + [2217] = {.lex_state = 221, .external_lex_state = 2}, + [2218] = {.lex_state = 71, .external_lex_state = 2}, + [2219] = {.lex_state = 96, .external_lex_state = 20}, + [2220] = {.lex_state = 221, .external_lex_state = 2}, + [2221] = {.lex_state = 226, .external_lex_state = 20}, + [2222] = {.lex_state = 226, .external_lex_state = 20}, + [2223] = {.lex_state = 226, .external_lex_state = 20}, + [2224] = {.lex_state = 226, .external_lex_state = 16}, + [2225] = {.lex_state = 226, .external_lex_state = 16}, + [2226] = {.lex_state = 226, .external_lex_state = 20}, + [2227] = {.lex_state = 226, .external_lex_state = 20}, + [2228] = {.lex_state = 226, .external_lex_state = 20}, + [2229] = {.lex_state = 203, .external_lex_state = 17}, + [2230] = {.lex_state = 203, .external_lex_state = 17}, + [2231] = {.lex_state = 203, .external_lex_state = 17}, + [2232] = {.lex_state = 226, .external_lex_state = 16}, + [2233] = {.lex_state = 226, .external_lex_state = 16}, + [2234] = {.lex_state = 203, .external_lex_state = 17}, + [2235] = {.lex_state = 212, .external_lex_state = 10}, + [2236] = {.lex_state = 212, .external_lex_state = 10}, + [2237] = {.lex_state = 212, .external_lex_state = 10}, + [2238] = {.lex_state = 226, .external_lex_state = 16}, + [2239] = {.lex_state = 226, .external_lex_state = 16}, + [2240] = {.lex_state = 212, .external_lex_state = 10}, + [2241] = {.lex_state = 212, .external_lex_state = 10}, + [2242] = {.lex_state = 212, .external_lex_state = 10}, + [2243] = {.lex_state = 173, .external_lex_state = 14}, + [2244] = {.lex_state = 173, .external_lex_state = 14}, + [2245] = {.lex_state = 175, .external_lex_state = 5}, + [2246] = {.lex_state = 214, .external_lex_state = 11}, + [2247] = {.lex_state = 214, .external_lex_state = 11}, + [2248] = {.lex_state = 164}, + [2249] = {.lex_state = 232, .external_lex_state = 11}, + [2250] = {.lex_state = 232, .external_lex_state = 11}, + [2251] = {.lex_state = 232, .external_lex_state = 11}, + [2252] = {.lex_state = 226, .external_lex_state = 16}, + [2253] = {.lex_state = 226, .external_lex_state = 16}, + [2254] = {.lex_state = 232, .external_lex_state = 11}, + [2255] = {.lex_state = 232, .external_lex_state = 11}, + [2256] = {.lex_state = 232, .external_lex_state = 11}, + [2257] = {.lex_state = 234, .external_lex_state = 10}, + [2258] = {.lex_state = 234, .external_lex_state = 10}, + [2259] = {.lex_state = 256, .external_lex_state = 4}, + [2260] = {.lex_state = 212}, + [2261] = {.lex_state = 256, .external_lex_state = 14}, + [2262] = {.lex_state = 107}, + [2263] = {.lex_state = 114}, + [2264] = {.lex_state = 256, .external_lex_state = 14}, + [2265] = {.lex_state = 114, .external_lex_state = 7}, + [2266] = {.lex_state = 71, .external_lex_state = 2}, + [2267] = {.lex_state = 71, .external_lex_state = 2}, + [2268] = {.lex_state = 71, .external_lex_state = 2}, + [2269] = {.lex_state = 136, .external_lex_state = 8}, + [2270] = {.lex_state = 94}, + [2271] = {.lex_state = 246, .external_lex_state = 14}, + [2272] = {.lex_state = 246, .external_lex_state = 14}, + [2273] = {.lex_state = 187}, + [2274] = {.lex_state = 107}, + [2275] = {.lex_state = 246, .external_lex_state = 14}, + [2276] = {.lex_state = 246, .external_lex_state = 14}, + [2277] = {.lex_state = 246, .external_lex_state = 14}, + [2278] = {.lex_state = 78}, + [2279] = {.lex_state = 193, .external_lex_state = 7}, + [2280] = {.lex_state = 195, .external_lex_state = 16}, + [2281] = {.lex_state = 195, .external_lex_state = 16}, + [2282] = {.lex_state = 171, .external_lex_state = 5}, + [2283] = {.lex_state = 173, .external_lex_state = 4}, + [2284] = {.lex_state = 71, .external_lex_state = 2}, + [2285] = {.lex_state = 199, .external_lex_state = 5}, + [2286] = {.lex_state = 132, .external_lex_state = 4}, + [2287] = {.lex_state = 71, .external_lex_state = 2}, + [2288] = {.lex_state = 171, .external_lex_state = 5}, + [2289] = {.lex_state = 173, .external_lex_state = 4}, + [2290] = {.lex_state = 71, .external_lex_state = 2}, + [2291] = {.lex_state = 246, .external_lex_state = 4}, + [2292] = {.lex_state = 94}, + [2293] = {.lex_state = 246, .external_lex_state = 6}, + [2294] = {.lex_state = 246, .external_lex_state = 6}, + [2295] = {.lex_state = 187}, + [2296] = {.lex_state = 107}, + [2297] = {.lex_state = 246, .external_lex_state = 6}, + [2298] = {.lex_state = 246, .external_lex_state = 6}, + [2299] = {.lex_state = 246, .external_lex_state = 6}, + [2300] = {.lex_state = 78}, + [2301] = {.lex_state = 193, .external_lex_state = 7}, + [2302] = {.lex_state = 195, .external_lex_state = 16}, + [2303] = {.lex_state = 195, .external_lex_state = 16}, + [2304] = {.lex_state = 171, .external_lex_state = 5}, + [2305] = {.lex_state = 173, .external_lex_state = 4}, + [2306] = {.lex_state = 71, .external_lex_state = 2}, + [2307] = {.lex_state = 199, .external_lex_state = 5}, + [2308] = {.lex_state = 132, .external_lex_state = 4}, + [2309] = {.lex_state = 71, .external_lex_state = 2}, + [2310] = {.lex_state = 171, .external_lex_state = 5}, + [2311] = {.lex_state = 173, .external_lex_state = 4}, + [2312] = {.lex_state = 71, .external_lex_state = 2}, + [2313] = {.lex_state = 246, .external_lex_state = 5}, + [2314] = {.lex_state = 252, .external_lex_state = 6}, + [2315] = {.lex_state = 252, .external_lex_state = 6}, + [2316] = {.lex_state = 252, .external_lex_state = 6}, + [2317] = {.lex_state = 187}, + [2318] = {.lex_state = 224, .external_lex_state = 16}, + [2319] = {.lex_state = 78}, + [2320] = {.lex_state = 195, .external_lex_state = 16}, + [2321] = {.lex_state = 195, .external_lex_state = 16}, + [2322] = {.lex_state = 252, .external_lex_state = 6}, + [2323] = {.lex_state = 226, .external_lex_state = 21}, + [2324] = {.lex_state = 226, .external_lex_state = 16}, + [2325] = {.lex_state = 252, .external_lex_state = 6}, + [2326] = {.lex_state = 226, .external_lex_state = 21}, + [2327] = {.lex_state = 226, .external_lex_state = 16}, + [2328] = {.lex_state = 221, .external_lex_state = 2}, + [2329] = {.lex_state = 252, .external_lex_state = 6}, + [2330] = {.lex_state = 138, .external_lex_state = 9}, + [2331] = {.lex_state = 171, .external_lex_state = 5}, + [2332] = {.lex_state = 173, .external_lex_state = 4}, + [2333] = {.lex_state = 71, .external_lex_state = 2}, + [2334] = {.lex_state = 138, .external_lex_state = 9}, + [2335] = {.lex_state = 199, .external_lex_state = 5}, + [2336] = {.lex_state = 132, .external_lex_state = 4}, + [2337] = {.lex_state = 221, .external_lex_state = 2}, + [2338] = {.lex_state = 252, .external_lex_state = 6}, + [2339] = {.lex_state = 138, .external_lex_state = 9}, + [2340] = {.lex_state = 171, .external_lex_state = 5}, + [2341] = {.lex_state = 173, .external_lex_state = 4}, + [2342] = {.lex_state = 94}, + [2343] = {.lex_state = 242, .external_lex_state = 5}, + [2344] = {.lex_state = 256, .external_lex_state = 4}, + [2345] = {.lex_state = 242, .external_lex_state = 5}, + [2346] = {.lex_state = 256, .external_lex_state = 4}, + [2347] = {.lex_state = 242, .external_lex_state = 6}, + [2348] = {.lex_state = 107}, + [2349] = {.lex_state = 114}, + [2350] = {.lex_state = 242, .external_lex_state = 6}, + [2351] = {.lex_state = 114, .external_lex_state = 7}, + [2352] = {.lex_state = 71, .external_lex_state = 2}, + [2353] = {.lex_state = 71, .external_lex_state = 2}, + [2354] = {.lex_state = 71, .external_lex_state = 2}, + [2355] = {.lex_state = 242, .external_lex_state = 6}, + [2356] = {.lex_state = 242, .external_lex_state = 6}, + [2357] = {.lex_state = 244, .external_lex_state = 2}, + [2358] = {.lex_state = 242, .external_lex_state = 5}, + [2359] = {.lex_state = 252, .external_lex_state = 5}, + [2360] = {.lex_state = 252, .external_lex_state = 6}, + [2361] = {.lex_state = 252, .external_lex_state = 6}, + [2362] = {.lex_state = 252, .external_lex_state = 5}, + [2363] = {.lex_state = 244, .external_lex_state = 2}, + [2364] = {.lex_state = 128, .external_lex_state = 5}, + [2365] = {.lex_state = 132, .external_lex_state = 4}, + [2366] = {.lex_state = 252, .external_lex_state = 5}, + [2367] = {.lex_state = 237}, + [2368] = {.lex_state = 242, .external_lex_state = 5}, + [2369] = {.lex_state = 256, .external_lex_state = 4}, + [2370] = {.lex_state = 244, .external_lex_state = 2}, + [2371] = {.lex_state = 237}, + [2372] = {.lex_state = 242, .external_lex_state = 5}, + [2373] = {.lex_state = 256, .external_lex_state = 4}, + [2374] = {.lex_state = 94}, + [2375] = {.lex_state = 128, .external_lex_state = 5}, + [2376] = {.lex_state = 132, .external_lex_state = 4}, + [2377] = {.lex_state = 221, .external_lex_state = 2}, + [2378] = {.lex_state = 221, .external_lex_state = 2}, + [2379] = {.lex_state = 94}, + [2380] = {.lex_state = 128, .external_lex_state = 5}, + [2381] = {.lex_state = 132, .external_lex_state = 4}, + [2382] = {.lex_state = 221, .external_lex_state = 2}, + [2383] = {.lex_state = 221, .external_lex_state = 2}, + [2384] = {.lex_state = 96, .external_lex_state = 20}, + [2385] = {.lex_state = 96, .external_lex_state = 20}, + [2386] = {.lex_state = 96, .external_lex_state = 20}, + [2387] = {.lex_state = 226, .external_lex_state = 16}, + [2388] = {.lex_state = 226, .external_lex_state = 16}, + [2389] = {.lex_state = 96, .external_lex_state = 20}, + [2390] = {.lex_state = 96, .external_lex_state = 20}, + [2391] = {.lex_state = 96, .external_lex_state = 20}, + [2392] = {.lex_state = 226, .external_lex_state = 20}, + [2393] = {.lex_state = 226, .external_lex_state = 20}, + [2394] = {.lex_state = 203, .external_lex_state = 17}, + [2395] = {.lex_state = 203, .external_lex_state = 17}, + [2396] = {.lex_state = 212, .external_lex_state = 10}, + [2397] = {.lex_state = 212, .external_lex_state = 10}, + [2398] = {.lex_state = 175, .external_lex_state = 5}, + [2399] = {.lex_state = 232, .external_lex_state = 11}, + [2400] = {.lex_state = 232, .external_lex_state = 11}, + [2401] = {.lex_state = 256, .external_lex_state = 4}, + [2402] = {.lex_state = 212}, + [2403] = {.lex_state = 94}, + [2404] = {.lex_state = 256, .external_lex_state = 14}, + [2405] = {.lex_state = 256, .external_lex_state = 14}, + [2406] = {.lex_state = 187}, + [2407] = {.lex_state = 107}, + [2408] = {.lex_state = 256, .external_lex_state = 14}, + [2409] = {.lex_state = 256, .external_lex_state = 14}, + [2410] = {.lex_state = 256, .external_lex_state = 14}, + [2411] = {.lex_state = 78}, + [2412] = {.lex_state = 193, .external_lex_state = 7}, + [2413] = {.lex_state = 195, .external_lex_state = 16}, + [2414] = {.lex_state = 195, .external_lex_state = 16}, + [2415] = {.lex_state = 171, .external_lex_state = 5}, + [2416] = {.lex_state = 173, .external_lex_state = 4}, + [2417] = {.lex_state = 71, .external_lex_state = 2}, + [2418] = {.lex_state = 199, .external_lex_state = 5}, + [2419] = {.lex_state = 132, .external_lex_state = 4}, + [2420] = {.lex_state = 71, .external_lex_state = 2}, + [2421] = {.lex_state = 171, .external_lex_state = 5}, + [2422] = {.lex_state = 173, .external_lex_state = 4}, + [2423] = {.lex_state = 71, .external_lex_state = 2}, + [2424] = {.lex_state = 246, .external_lex_state = 4}, + [2425] = {.lex_state = 212}, + [2426] = {.lex_state = 246, .external_lex_state = 14}, + [2427] = {.lex_state = 246, .external_lex_state = 14}, + [2428] = {.lex_state = 246, .external_lex_state = 14}, + [2429] = {.lex_state = 246, .external_lex_state = 14}, + [2430] = {.lex_state = 246, .external_lex_state = 14}, + [2431] = {.lex_state = 187}, + [2432] = {.lex_state = 224, .external_lex_state = 16}, + [2433] = {.lex_state = 78}, + [2434] = {.lex_state = 195, .external_lex_state = 16}, + [2435] = {.lex_state = 195, .external_lex_state = 16}, + [2436] = {.lex_state = 246, .external_lex_state = 14}, + [2437] = {.lex_state = 226, .external_lex_state = 21}, + [2438] = {.lex_state = 226, .external_lex_state = 16}, + [2439] = {.lex_state = 246, .external_lex_state = 14}, + [2440] = {.lex_state = 226, .external_lex_state = 21}, + [2441] = {.lex_state = 226, .external_lex_state = 16}, + [2442] = {.lex_state = 221, .external_lex_state = 2}, + [2443] = {.lex_state = 246, .external_lex_state = 14}, + [2444] = {.lex_state = 138, .external_lex_state = 9}, + [2445] = {.lex_state = 171, .external_lex_state = 5}, + [2446] = {.lex_state = 173, .external_lex_state = 4}, + [2447] = {.lex_state = 71, .external_lex_state = 2}, + [2448] = {.lex_state = 138, .external_lex_state = 9}, + [2449] = {.lex_state = 199, .external_lex_state = 5}, + [2450] = {.lex_state = 132, .external_lex_state = 4}, + [2451] = {.lex_state = 221, .external_lex_state = 2}, + [2452] = {.lex_state = 246, .external_lex_state = 14}, + [2453] = {.lex_state = 138, .external_lex_state = 9}, + [2454] = {.lex_state = 171, .external_lex_state = 5}, + [2455] = {.lex_state = 173, .external_lex_state = 4}, + [2456] = {.lex_state = 246, .external_lex_state = 6}, + [2457] = {.lex_state = 246, .external_lex_state = 6}, + [2458] = {.lex_state = 246, .external_lex_state = 6}, + [2459] = {.lex_state = 187}, [2460] = {.lex_state = 224, .external_lex_state = 16}, - [2461] = {.lex_state = 224, .external_lex_state = 16}, - [2462] = {.lex_state = 228, .external_lex_state = 25}, - [2463] = {.lex_state = 269, .external_lex_state = 8}, - [2464] = {.lex_state = 204}, - [2465] = {.lex_state = 94}, - [2466] = {.lex_state = 269, .external_lex_state = 20}, - [2467] = {.lex_state = 269, .external_lex_state = 20}, - [2468] = {.lex_state = 181}, - [2469] = {.lex_state = 106}, - [2470] = {.lex_state = 269, .external_lex_state = 20}, - [2471] = {.lex_state = 269, .external_lex_state = 20}, - [2472] = {.lex_state = 269, .external_lex_state = 20}, - [2473] = {.lex_state = 78}, - [2474] = {.lex_state = 187, .external_lex_state = 6}, - [2475] = {.lex_state = 189, .external_lex_state = 16}, - [2476] = {.lex_state = 189, .external_lex_state = 16}, - [2477] = {.lex_state = 163, .external_lex_state = 4}, - [2478] = {.lex_state = 167, .external_lex_state = 8}, - [2479] = {.lex_state = 71, .external_lex_state = 2}, - [2480] = {.lex_state = 98, .external_lex_state = 4}, - [2481] = {.lex_state = 129, .external_lex_state = 8}, - [2482] = {.lex_state = 71, .external_lex_state = 2}, - [2483] = {.lex_state = 163, .external_lex_state = 4}, - [2484] = {.lex_state = 167, .external_lex_state = 8}, - [2485] = {.lex_state = 71, .external_lex_state = 2}, - [2486] = {.lex_state = 71}, - [2487] = {.lex_state = 94}, - [2488] = {.lex_state = 94}, - [2489] = {.lex_state = 271, .external_lex_state = 21}, - [2490] = {.lex_state = 271, .external_lex_state = 7}, - [2491] = {.lex_state = 161}, - [2492] = {.lex_state = 71}, - [2493] = {.lex_state = 94}, - [2494] = {.lex_state = 259, .external_lex_state = 3}, - [2495] = {.lex_state = 204}, - [2496] = {.lex_state = 259, .external_lex_state = 14}, - [2497] = {.lex_state = 259, .external_lex_state = 14}, - [2498] = {.lex_state = 259, .external_lex_state = 14}, - [2499] = {.lex_state = 259, .external_lex_state = 14}, - [2500] = {.lex_state = 259, .external_lex_state = 14}, - [2501] = {.lex_state = 181}, - [2502] = {.lex_state = 222, .external_lex_state = 16}, - [2503] = {.lex_state = 78}, - [2504] = {.lex_state = 189, .external_lex_state = 16}, - [2505] = {.lex_state = 189, .external_lex_state = 16}, - [2506] = {.lex_state = 259, .external_lex_state = 14}, - [2507] = {.lex_state = 224, .external_lex_state = 24}, - [2508] = {.lex_state = 224, .external_lex_state = 16}, - [2509] = {.lex_state = 259, .external_lex_state = 14}, - [2510] = {.lex_state = 224, .external_lex_state = 24}, - [2511] = {.lex_state = 224, .external_lex_state = 16}, - [2512] = {.lex_state = 217, .external_lex_state = 2}, - [2513] = {.lex_state = 259, .external_lex_state = 14}, - [2514] = {.lex_state = 163, .external_lex_state = 4}, - [2515] = {.lex_state = 167, .external_lex_state = 8}, - [2516] = {.lex_state = 71, .external_lex_state = 2}, - [2517] = {.lex_state = 98, .external_lex_state = 4}, - [2518] = {.lex_state = 129, .external_lex_state = 8}, - [2519] = {.lex_state = 217, .external_lex_state = 2}, - [2520] = {.lex_state = 259, .external_lex_state = 14}, - [2521] = {.lex_state = 163, .external_lex_state = 4}, - [2522] = {.lex_state = 167, .external_lex_state = 8}, - [2523] = {.lex_state = 259, .external_lex_state = 11}, - [2524] = {.lex_state = 259, .external_lex_state = 11}, - [2525] = {.lex_state = 259, .external_lex_state = 11}, - [2526] = {.lex_state = 181}, - [2527] = {.lex_state = 222, .external_lex_state = 16}, - [2528] = {.lex_state = 78}, - [2529] = {.lex_state = 189, .external_lex_state = 16}, - [2530] = {.lex_state = 189, .external_lex_state = 16}, - [2531] = {.lex_state = 259, .external_lex_state = 11}, - [2532] = {.lex_state = 224, .external_lex_state = 24}, - [2533] = {.lex_state = 224, .external_lex_state = 16}, - [2534] = {.lex_state = 259, .external_lex_state = 11}, - [2535] = {.lex_state = 224, .external_lex_state = 24}, - [2536] = {.lex_state = 224, .external_lex_state = 16}, - [2537] = {.lex_state = 217, .external_lex_state = 2}, - [2538] = {.lex_state = 259, .external_lex_state = 11}, - [2539] = {.lex_state = 163, .external_lex_state = 4}, - [2540] = {.lex_state = 167, .external_lex_state = 8}, - [2541] = {.lex_state = 71, .external_lex_state = 2}, - [2542] = {.lex_state = 98, .external_lex_state = 4}, - [2543] = {.lex_state = 129, .external_lex_state = 8}, - [2544] = {.lex_state = 217, .external_lex_state = 2}, - [2545] = {.lex_state = 259, .external_lex_state = 11}, - [2546] = {.lex_state = 163, .external_lex_state = 4}, - [2547] = {.lex_state = 167, .external_lex_state = 8}, - [2548] = {.lex_state = 265, .external_lex_state = 5}, - [2549] = {.lex_state = 265, .external_lex_state = 5}, - [2550] = {.lex_state = 212, .external_lex_state = 23}, - [2551] = {.lex_state = 212, .external_lex_state = 23}, - [2552] = {.lex_state = 212, .external_lex_state = 16}, - [2553] = {.lex_state = 222, .external_lex_state = 16}, - [2554] = {.lex_state = 265, .external_lex_state = 5}, - [2555] = {.lex_state = 224, .external_lex_state = 24}, - [2556] = {.lex_state = 224, .external_lex_state = 16}, - [2557] = {.lex_state = 224, .external_lex_state = 24}, - [2558] = {.lex_state = 224, .external_lex_state = 16}, - [2559] = {.lex_state = 224, .external_lex_state = 16}, - [2560] = {.lex_state = 265, .external_lex_state = 5}, - [2561] = {.lex_state = 224, .external_lex_state = 16}, - [2562] = {.lex_state = 224, .external_lex_state = 16}, - [2563] = {.lex_state = 265, .external_lex_state = 5}, - [2564] = {.lex_state = 217, .external_lex_state = 2}, - [2565] = {.lex_state = 71, .external_lex_state = 2}, - [2566] = {.lex_state = 265, .external_lex_state = 5}, - [2567] = {.lex_state = 217, .external_lex_state = 2}, - [2568] = {.lex_state = 273, .external_lex_state = 21}, - [2569] = {.lex_state = 271, .external_lex_state = 5}, - [2570] = {.lex_state = 271, .external_lex_state = 5}, - [2571] = {.lex_state = 94}, - [2572] = {.lex_state = 271, .external_lex_state = 5}, - [2573] = {.lex_state = 271, .external_lex_state = 5}, - [2574] = {.lex_state = 181}, - [2575] = {.lex_state = 106}, - [2576] = {.lex_state = 271, .external_lex_state = 5}, - [2577] = {.lex_state = 271, .external_lex_state = 5}, - [2578] = {.lex_state = 271, .external_lex_state = 5}, - [2579] = {.lex_state = 78}, - [2580] = {.lex_state = 187, .external_lex_state = 6}, - [2581] = {.lex_state = 189, .external_lex_state = 16}, - [2582] = {.lex_state = 189, .external_lex_state = 16}, - [2583] = {.lex_state = 163, .external_lex_state = 4}, - [2584] = {.lex_state = 167, .external_lex_state = 8}, - [2585] = {.lex_state = 71, .external_lex_state = 2}, - [2586] = {.lex_state = 98, .external_lex_state = 4}, - [2587] = {.lex_state = 129, .external_lex_state = 8}, - [2588] = {.lex_state = 71, .external_lex_state = 2}, - [2589] = {.lex_state = 163, .external_lex_state = 4}, - [2590] = {.lex_state = 167, .external_lex_state = 8}, - [2591] = {.lex_state = 71, .external_lex_state = 2}, - [2592] = {.lex_state = 271, .external_lex_state = 7}, - [2593] = {.lex_state = 253, .external_lex_state = 2}, - [2594] = {.lex_state = 253, .external_lex_state = 2}, - [2595] = {.lex_state = 217, .external_lex_state = 2}, - [2596] = {.lex_state = 94}, - [2597] = {.lex_state = 98, .external_lex_state = 4}, - [2598] = {.lex_state = 129, .external_lex_state = 8}, - [2599] = {.lex_state = 217, .external_lex_state = 2}, - [2600] = {.lex_state = 217, .external_lex_state = 2}, - [2601] = {.lex_state = 217, .external_lex_state = 2}, - [2602] = {.lex_state = 94}, - [2603] = {.lex_state = 98, .external_lex_state = 4}, - [2604] = {.lex_state = 129, .external_lex_state = 8}, - [2605] = {.lex_state = 217, .external_lex_state = 2}, - [2606] = {.lex_state = 212, .external_lex_state = 23}, - [2607] = {.lex_state = 212, .external_lex_state = 23}, - [2608] = {.lex_state = 228, .external_lex_state = 25}, - [2609] = {.lex_state = 228, .external_lex_state = 25}, - [2610] = {.lex_state = 269, .external_lex_state = 8}, - [2611] = {.lex_state = 269, .external_lex_state = 20}, - [2612] = {.lex_state = 269, .external_lex_state = 20}, - [2613] = {.lex_state = 269, .external_lex_state = 20}, - [2614] = {.lex_state = 181}, - [2615] = {.lex_state = 222, .external_lex_state = 16}, - [2616] = {.lex_state = 78}, - [2617] = {.lex_state = 189, .external_lex_state = 16}, - [2618] = {.lex_state = 189, .external_lex_state = 16}, - [2619] = {.lex_state = 269, .external_lex_state = 20}, - [2620] = {.lex_state = 224, .external_lex_state = 24}, - [2621] = {.lex_state = 224, .external_lex_state = 16}, - [2622] = {.lex_state = 269, .external_lex_state = 20}, - [2623] = {.lex_state = 224, .external_lex_state = 24}, - [2624] = {.lex_state = 224, .external_lex_state = 16}, - [2625] = {.lex_state = 217, .external_lex_state = 2}, - [2626] = {.lex_state = 269, .external_lex_state = 20}, - [2627] = {.lex_state = 163, .external_lex_state = 4}, - [2628] = {.lex_state = 167, .external_lex_state = 8}, - [2629] = {.lex_state = 71, .external_lex_state = 2}, - [2630] = {.lex_state = 98, .external_lex_state = 4}, - [2631] = {.lex_state = 129, .external_lex_state = 8}, - [2632] = {.lex_state = 217, .external_lex_state = 2}, - [2633] = {.lex_state = 269, .external_lex_state = 20}, - [2634] = {.lex_state = 163, .external_lex_state = 4}, - [2635] = {.lex_state = 167, .external_lex_state = 8}, - [2636] = {.lex_state = 94}, - [2637] = {.lex_state = 271, .external_lex_state = 25}, - [2638] = {.lex_state = 271, .external_lex_state = 25}, - [2639] = {.lex_state = 271, .external_lex_state = 25}, - [2640] = {.lex_state = 271, .external_lex_state = 25}, - [2641] = {.lex_state = 271, .external_lex_state = 21}, - [2642] = {.lex_state = 273, .external_lex_state = 21}, - [2643] = {.lex_state = 94}, - [2644] = {.lex_state = 251, .external_lex_state = 11}, - [2645] = {.lex_state = 251, .external_lex_state = 11}, - [2646] = {.lex_state = 259, .external_lex_state = 3}, - [2647] = {.lex_state = 204}, - [2648] = {.lex_state = 259, .external_lex_state = 14}, - [2649] = {.lex_state = 259, .external_lex_state = 14}, - [2650] = {.lex_state = 212, .external_lex_state = 23}, - [2651] = {.lex_state = 212, .external_lex_state = 23}, - [2652] = {.lex_state = 212, .external_lex_state = 16}, - [2653] = {.lex_state = 222, .external_lex_state = 16}, - [2654] = {.lex_state = 259, .external_lex_state = 14}, - [2655] = {.lex_state = 224, .external_lex_state = 24}, - [2656] = {.lex_state = 224, .external_lex_state = 16}, - [2657] = {.lex_state = 224, .external_lex_state = 24}, - [2658] = {.lex_state = 224, .external_lex_state = 16}, - [2659] = {.lex_state = 224, .external_lex_state = 16}, - [2660] = {.lex_state = 259, .external_lex_state = 14}, - [2661] = {.lex_state = 224, .external_lex_state = 16}, - [2662] = {.lex_state = 224, .external_lex_state = 16}, - [2663] = {.lex_state = 259, .external_lex_state = 14}, - [2664] = {.lex_state = 217, .external_lex_state = 2}, - [2665] = {.lex_state = 71, .external_lex_state = 2}, - [2666] = {.lex_state = 259, .external_lex_state = 14}, - [2667] = {.lex_state = 217, .external_lex_state = 2}, - [2668] = {.lex_state = 259, .external_lex_state = 11}, - [2669] = {.lex_state = 259, .external_lex_state = 11}, - [2670] = {.lex_state = 212, .external_lex_state = 23}, - [2671] = {.lex_state = 212, .external_lex_state = 23}, - [2672] = {.lex_state = 212, .external_lex_state = 16}, - [2673] = {.lex_state = 222, .external_lex_state = 16}, - [2674] = {.lex_state = 259, .external_lex_state = 11}, - [2675] = {.lex_state = 224, .external_lex_state = 24}, - [2676] = {.lex_state = 224, .external_lex_state = 16}, - [2677] = {.lex_state = 224, .external_lex_state = 24}, - [2678] = {.lex_state = 224, .external_lex_state = 16}, - [2679] = {.lex_state = 224, .external_lex_state = 16}, - [2680] = {.lex_state = 259, .external_lex_state = 11}, - [2681] = {.lex_state = 224, .external_lex_state = 16}, - [2682] = {.lex_state = 224, .external_lex_state = 16}, - [2683] = {.lex_state = 259, .external_lex_state = 11}, - [2684] = {.lex_state = 217, .external_lex_state = 2}, - [2685] = {.lex_state = 71, .external_lex_state = 2}, - [2686] = {.lex_state = 259, .external_lex_state = 11}, - [2687] = {.lex_state = 217, .external_lex_state = 2}, - [2688] = {.lex_state = 265, .external_lex_state = 5}, - [2689] = {.lex_state = 265, .external_lex_state = 5}, - [2690] = {.lex_state = 212, .external_lex_state = 23}, - [2691] = {.lex_state = 212, .external_lex_state = 23}, - [2692] = {.lex_state = 212, .external_lex_state = 16}, - [2693] = {.lex_state = 224, .external_lex_state = 16}, - [2694] = {.lex_state = 265, .external_lex_state = 5}, - [2695] = {.lex_state = 224, .external_lex_state = 16}, - [2696] = {.lex_state = 224, .external_lex_state = 16}, - [2697] = {.lex_state = 224, .external_lex_state = 16}, - [2698] = {.lex_state = 265, .external_lex_state = 5}, - [2699] = {.lex_state = 224, .external_lex_state = 16}, - [2700] = {.lex_state = 265, .external_lex_state = 5}, - [2701] = {.lex_state = 265, .external_lex_state = 5}, - [2702] = {.lex_state = 271, .external_lex_state = 5}, - [2703] = {.lex_state = 271, .external_lex_state = 5}, - [2704] = {.lex_state = 271, .external_lex_state = 5}, - [2705] = {.lex_state = 181}, - [2706] = {.lex_state = 222, .external_lex_state = 16}, - [2707] = {.lex_state = 78}, - [2708] = {.lex_state = 189, .external_lex_state = 16}, - [2709] = {.lex_state = 189, .external_lex_state = 16}, - [2710] = {.lex_state = 271, .external_lex_state = 5}, - [2711] = {.lex_state = 224, .external_lex_state = 24}, - [2712] = {.lex_state = 224, .external_lex_state = 16}, - [2713] = {.lex_state = 271, .external_lex_state = 5}, - [2714] = {.lex_state = 224, .external_lex_state = 24}, - [2715] = {.lex_state = 224, .external_lex_state = 16}, - [2716] = {.lex_state = 217, .external_lex_state = 2}, - [2717] = {.lex_state = 271, .external_lex_state = 5}, - [2718] = {.lex_state = 163, .external_lex_state = 4}, - [2719] = {.lex_state = 167, .external_lex_state = 8}, - [2720] = {.lex_state = 71, .external_lex_state = 2}, - [2721] = {.lex_state = 98, .external_lex_state = 4}, - [2722] = {.lex_state = 129, .external_lex_state = 8}, - [2723] = {.lex_state = 217, .external_lex_state = 2}, - [2724] = {.lex_state = 271, .external_lex_state = 5}, - [2725] = {.lex_state = 163, .external_lex_state = 4}, - [2726] = {.lex_state = 167, .external_lex_state = 8}, - [2727] = {.lex_state = 217, .external_lex_state = 2}, - [2728] = {.lex_state = 94}, - [2729] = {.lex_state = 98, .external_lex_state = 4}, - [2730] = {.lex_state = 129, .external_lex_state = 8}, - [2731] = {.lex_state = 217, .external_lex_state = 2}, - [2732] = {.lex_state = 94}, - [2733] = {.lex_state = 98, .external_lex_state = 4}, - [2734] = {.lex_state = 129, .external_lex_state = 8}, - [2735] = {.lex_state = 269, .external_lex_state = 20}, - [2736] = {.lex_state = 269, .external_lex_state = 20}, - [2737] = {.lex_state = 212, .external_lex_state = 23}, - [2738] = {.lex_state = 212, .external_lex_state = 23}, - [2739] = {.lex_state = 212, .external_lex_state = 16}, - [2740] = {.lex_state = 222, .external_lex_state = 16}, - [2741] = {.lex_state = 269, .external_lex_state = 20}, - [2742] = {.lex_state = 224, .external_lex_state = 24}, - [2743] = {.lex_state = 224, .external_lex_state = 16}, - [2744] = {.lex_state = 224, .external_lex_state = 24}, - [2745] = {.lex_state = 224, .external_lex_state = 16}, - [2746] = {.lex_state = 224, .external_lex_state = 16}, - [2747] = {.lex_state = 269, .external_lex_state = 20}, - [2748] = {.lex_state = 224, .external_lex_state = 16}, - [2749] = {.lex_state = 224, .external_lex_state = 16}, - [2750] = {.lex_state = 269, .external_lex_state = 20}, - [2751] = {.lex_state = 217, .external_lex_state = 2}, - [2752] = {.lex_state = 71, .external_lex_state = 2}, - [2753] = {.lex_state = 269, .external_lex_state = 20}, - [2754] = {.lex_state = 217, .external_lex_state = 2}, - [2755] = {.lex_state = 271, .external_lex_state = 25}, - [2756] = {.lex_state = 271, .external_lex_state = 25}, - [2757] = {.lex_state = 271, .external_lex_state = 25}, - [2758] = {.lex_state = 251, .external_lex_state = 11}, - [2759] = {.lex_state = 251, .external_lex_state = 11}, - [2760] = {.lex_state = 251, .external_lex_state = 11}, - [2761] = {.lex_state = 259, .external_lex_state = 3}, - [2762] = {.lex_state = 259, .external_lex_state = 14}, - [2763] = {.lex_state = 259, .external_lex_state = 14}, - [2764] = {.lex_state = 212, .external_lex_state = 23}, - [2765] = {.lex_state = 212, .external_lex_state = 23}, - [2766] = {.lex_state = 212, .external_lex_state = 16}, - [2767] = {.lex_state = 224, .external_lex_state = 16}, - [2768] = {.lex_state = 259, .external_lex_state = 14}, - [2769] = {.lex_state = 224, .external_lex_state = 16}, - [2770] = {.lex_state = 224, .external_lex_state = 16}, - [2771] = {.lex_state = 224, .external_lex_state = 16}, - [2772] = {.lex_state = 259, .external_lex_state = 14}, - [2773] = {.lex_state = 224, .external_lex_state = 16}, - [2774] = {.lex_state = 259, .external_lex_state = 14}, - [2775] = {.lex_state = 259, .external_lex_state = 14}, - [2776] = {.lex_state = 259, .external_lex_state = 11}, - [2777] = {.lex_state = 259, .external_lex_state = 11}, - [2778] = {.lex_state = 212, .external_lex_state = 23}, - [2779] = {.lex_state = 212, .external_lex_state = 23}, - [2780] = {.lex_state = 212, .external_lex_state = 16}, - [2781] = {.lex_state = 224, .external_lex_state = 16}, - [2782] = {.lex_state = 259, .external_lex_state = 11}, - [2783] = {.lex_state = 224, .external_lex_state = 16}, - [2784] = {.lex_state = 224, .external_lex_state = 16}, - [2785] = {.lex_state = 224, .external_lex_state = 16}, - [2786] = {.lex_state = 259, .external_lex_state = 11}, - [2787] = {.lex_state = 224, .external_lex_state = 16}, - [2788] = {.lex_state = 259, .external_lex_state = 11}, - [2789] = {.lex_state = 259, .external_lex_state = 11}, - [2790] = {.lex_state = 265, .external_lex_state = 5}, - [2791] = {.lex_state = 265, .external_lex_state = 5}, - [2792] = {.lex_state = 265, .external_lex_state = 5}, - [2793] = {.lex_state = 224, .external_lex_state = 16}, - [2794] = {.lex_state = 224, .external_lex_state = 16}, - [2795] = {.lex_state = 265, .external_lex_state = 5}, - [2796] = {.lex_state = 271, .external_lex_state = 5}, - [2797] = {.lex_state = 271, .external_lex_state = 5}, - [2798] = {.lex_state = 212, .external_lex_state = 23}, - [2799] = {.lex_state = 212, .external_lex_state = 23}, - [2800] = {.lex_state = 212, .external_lex_state = 16}, - [2801] = {.lex_state = 222, .external_lex_state = 16}, - [2802] = {.lex_state = 271, .external_lex_state = 5}, - [2803] = {.lex_state = 224, .external_lex_state = 24}, - [2804] = {.lex_state = 224, .external_lex_state = 16}, - [2805] = {.lex_state = 224, .external_lex_state = 24}, - [2806] = {.lex_state = 224, .external_lex_state = 16}, - [2807] = {.lex_state = 224, .external_lex_state = 16}, - [2808] = {.lex_state = 271, .external_lex_state = 5}, - [2809] = {.lex_state = 224, .external_lex_state = 16}, - [2810] = {.lex_state = 224, .external_lex_state = 16}, - [2811] = {.lex_state = 271, .external_lex_state = 5}, - [2812] = {.lex_state = 217, .external_lex_state = 2}, - [2813] = {.lex_state = 71, .external_lex_state = 2}, - [2814] = {.lex_state = 271, .external_lex_state = 5}, - [2815] = {.lex_state = 217, .external_lex_state = 2}, - [2816] = {.lex_state = 217, .external_lex_state = 2}, - [2817] = {.lex_state = 217, .external_lex_state = 2}, - [2818] = {.lex_state = 269, .external_lex_state = 20}, - [2819] = {.lex_state = 269, .external_lex_state = 20}, - [2820] = {.lex_state = 212, .external_lex_state = 23}, - [2821] = {.lex_state = 212, .external_lex_state = 23}, - [2822] = {.lex_state = 212, .external_lex_state = 16}, - [2823] = {.lex_state = 224, .external_lex_state = 16}, - [2824] = {.lex_state = 269, .external_lex_state = 20}, - [2825] = {.lex_state = 224, .external_lex_state = 16}, - [2826] = {.lex_state = 224, .external_lex_state = 16}, - [2827] = {.lex_state = 224, .external_lex_state = 16}, - [2828] = {.lex_state = 269, .external_lex_state = 20}, - [2829] = {.lex_state = 224, .external_lex_state = 16}, - [2830] = {.lex_state = 269, .external_lex_state = 20}, - [2831] = {.lex_state = 269, .external_lex_state = 20}, - [2832] = {.lex_state = 271, .external_lex_state = 25}, - [2833] = {.lex_state = 251, .external_lex_state = 11}, - [2834] = {.lex_state = 259, .external_lex_state = 14}, - [2835] = {.lex_state = 259, .external_lex_state = 14}, - [2836] = {.lex_state = 259, .external_lex_state = 14}, - [2837] = {.lex_state = 224, .external_lex_state = 16}, - [2838] = {.lex_state = 224, .external_lex_state = 16}, - [2839] = {.lex_state = 259, .external_lex_state = 14}, - [2840] = {.lex_state = 259, .external_lex_state = 11}, - [2841] = {.lex_state = 259, .external_lex_state = 11}, - [2842] = {.lex_state = 259, .external_lex_state = 11}, - [2843] = {.lex_state = 224, .external_lex_state = 16}, - [2844] = {.lex_state = 224, .external_lex_state = 16}, - [2845] = {.lex_state = 259, .external_lex_state = 11}, - [2846] = {.lex_state = 265, .external_lex_state = 5}, - [2847] = {.lex_state = 265, .external_lex_state = 5}, - [2848] = {.lex_state = 271, .external_lex_state = 5}, - [2849] = {.lex_state = 271, .external_lex_state = 5}, - [2850] = {.lex_state = 212, .external_lex_state = 23}, - [2851] = {.lex_state = 212, .external_lex_state = 23}, - [2852] = {.lex_state = 212, .external_lex_state = 16}, - [2853] = {.lex_state = 224, .external_lex_state = 16}, - [2854] = {.lex_state = 271, .external_lex_state = 5}, - [2855] = {.lex_state = 224, .external_lex_state = 16}, - [2856] = {.lex_state = 224, .external_lex_state = 16}, - [2857] = {.lex_state = 224, .external_lex_state = 16}, - [2858] = {.lex_state = 271, .external_lex_state = 5}, - [2859] = {.lex_state = 224, .external_lex_state = 16}, - [2860] = {.lex_state = 271, .external_lex_state = 5}, - [2861] = {.lex_state = 271, .external_lex_state = 5}, - [2862] = {.lex_state = 269, .external_lex_state = 20}, - [2863] = {.lex_state = 269, .external_lex_state = 20}, - [2864] = {.lex_state = 269, .external_lex_state = 20}, - [2865] = {.lex_state = 224, .external_lex_state = 16}, - [2866] = {.lex_state = 224, .external_lex_state = 16}, - [2867] = {.lex_state = 269, .external_lex_state = 20}, - [2868] = {.lex_state = 259, .external_lex_state = 14}, - [2869] = {.lex_state = 259, .external_lex_state = 14}, - [2870] = {.lex_state = 259, .external_lex_state = 11}, - [2871] = {.lex_state = 259, .external_lex_state = 11}, - [2872] = {.lex_state = 271, .external_lex_state = 5}, - [2873] = {.lex_state = 271, .external_lex_state = 5}, - [2874] = {.lex_state = 271, .external_lex_state = 5}, - [2875] = {.lex_state = 224, .external_lex_state = 16}, - [2876] = {.lex_state = 224, .external_lex_state = 16}, - [2877] = {.lex_state = 271, .external_lex_state = 5}, - [2878] = {.lex_state = 269, .external_lex_state = 20}, - [2879] = {.lex_state = 269, .external_lex_state = 20}, - [2880] = {.lex_state = 271, .external_lex_state = 5}, - [2881] = {.lex_state = 271, .external_lex_state = 5}, + [2461] = {.lex_state = 78}, + [2462] = {.lex_state = 195, .external_lex_state = 16}, + [2463] = {.lex_state = 195, .external_lex_state = 16}, + [2464] = {.lex_state = 246, .external_lex_state = 6}, + [2465] = {.lex_state = 226, .external_lex_state = 21}, + [2466] = {.lex_state = 226, .external_lex_state = 16}, + [2467] = {.lex_state = 246, .external_lex_state = 6}, + [2468] = {.lex_state = 226, .external_lex_state = 21}, + [2469] = {.lex_state = 226, .external_lex_state = 16}, + [2470] = {.lex_state = 221, .external_lex_state = 2}, + [2471] = {.lex_state = 246, .external_lex_state = 6}, + [2472] = {.lex_state = 138, .external_lex_state = 9}, + [2473] = {.lex_state = 171, .external_lex_state = 5}, + [2474] = {.lex_state = 173, .external_lex_state = 4}, + [2475] = {.lex_state = 71, .external_lex_state = 2}, + [2476] = {.lex_state = 138, .external_lex_state = 9}, + [2477] = {.lex_state = 199, .external_lex_state = 5}, + [2478] = {.lex_state = 132, .external_lex_state = 4}, + [2479] = {.lex_state = 221, .external_lex_state = 2}, + [2480] = {.lex_state = 246, .external_lex_state = 6}, + [2481] = {.lex_state = 138, .external_lex_state = 9}, + [2482] = {.lex_state = 171, .external_lex_state = 5}, + [2483] = {.lex_state = 173, .external_lex_state = 4}, + [2484] = {.lex_state = 252, .external_lex_state = 6}, + [2485] = {.lex_state = 252, .external_lex_state = 6}, + [2486] = {.lex_state = 96, .external_lex_state = 20}, + [2487] = {.lex_state = 96, .external_lex_state = 20}, + [2488] = {.lex_state = 96, .external_lex_state = 16}, + [2489] = {.lex_state = 224, .external_lex_state = 16}, + [2490] = {.lex_state = 252, .external_lex_state = 6}, + [2491] = {.lex_state = 226, .external_lex_state = 21}, + [2492] = {.lex_state = 226, .external_lex_state = 16}, + [2493] = {.lex_state = 226, .external_lex_state = 21}, + [2494] = {.lex_state = 226, .external_lex_state = 16}, + [2495] = {.lex_state = 226, .external_lex_state = 16}, + [2496] = {.lex_state = 252, .external_lex_state = 6}, + [2497] = {.lex_state = 226, .external_lex_state = 16}, + [2498] = {.lex_state = 226, .external_lex_state = 16}, + [2499] = {.lex_state = 252, .external_lex_state = 6}, + [2500] = {.lex_state = 221, .external_lex_state = 2}, + [2501] = {.lex_state = 221, .external_lex_state = 2}, + [2502] = {.lex_state = 138, .external_lex_state = 9}, + [2503] = {.lex_state = 71, .external_lex_state = 2}, + [2504] = {.lex_state = 71, .external_lex_state = 2}, + [2505] = {.lex_state = 138, .external_lex_state = 9}, + [2506] = {.lex_state = 252, .external_lex_state = 6}, + [2507] = {.lex_state = 221, .external_lex_state = 2}, + [2508] = {.lex_state = 221, .external_lex_state = 2}, + [2509] = {.lex_state = 138, .external_lex_state = 9}, + [2510] = {.lex_state = 242, .external_lex_state = 6}, + [2511] = {.lex_state = 242, .external_lex_state = 6}, + [2512] = {.lex_state = 94}, + [2513] = {.lex_state = 242, .external_lex_state = 6}, + [2514] = {.lex_state = 242, .external_lex_state = 6}, + [2515] = {.lex_state = 187}, + [2516] = {.lex_state = 107}, + [2517] = {.lex_state = 242, .external_lex_state = 6}, + [2518] = {.lex_state = 242, .external_lex_state = 6}, + [2519] = {.lex_state = 242, .external_lex_state = 6}, + [2520] = {.lex_state = 78}, + [2521] = {.lex_state = 193, .external_lex_state = 7}, + [2522] = {.lex_state = 195, .external_lex_state = 16}, + [2523] = {.lex_state = 195, .external_lex_state = 16}, + [2524] = {.lex_state = 171, .external_lex_state = 5}, + [2525] = {.lex_state = 173, .external_lex_state = 4}, + [2526] = {.lex_state = 71, .external_lex_state = 2}, + [2527] = {.lex_state = 199, .external_lex_state = 5}, + [2528] = {.lex_state = 132, .external_lex_state = 4}, + [2529] = {.lex_state = 71, .external_lex_state = 2}, + [2530] = {.lex_state = 171, .external_lex_state = 5}, + [2531] = {.lex_state = 173, .external_lex_state = 4}, + [2532] = {.lex_state = 71, .external_lex_state = 2}, + [2533] = {.lex_state = 244, .external_lex_state = 2}, + [2534] = {.lex_state = 244, .external_lex_state = 2}, + [2535] = {.lex_state = 221, .external_lex_state = 2}, + [2536] = {.lex_state = 94}, + [2537] = {.lex_state = 128, .external_lex_state = 5}, + [2538] = {.lex_state = 132, .external_lex_state = 4}, + [2539] = {.lex_state = 221, .external_lex_state = 2}, + [2540] = {.lex_state = 221, .external_lex_state = 2}, + [2541] = {.lex_state = 221, .external_lex_state = 2}, + [2542] = {.lex_state = 94}, + [2543] = {.lex_state = 128, .external_lex_state = 5}, + [2544] = {.lex_state = 132, .external_lex_state = 4}, + [2545] = {.lex_state = 221, .external_lex_state = 2}, + [2546] = {.lex_state = 96, .external_lex_state = 20}, + [2547] = {.lex_state = 96, .external_lex_state = 20}, + [2548] = {.lex_state = 256, .external_lex_state = 4}, + [2549] = {.lex_state = 256, .external_lex_state = 14}, + [2550] = {.lex_state = 256, .external_lex_state = 14}, + [2551] = {.lex_state = 256, .external_lex_state = 14}, + [2552] = {.lex_state = 187}, + [2553] = {.lex_state = 224, .external_lex_state = 16}, + [2554] = {.lex_state = 78}, + [2555] = {.lex_state = 195, .external_lex_state = 16}, + [2556] = {.lex_state = 195, .external_lex_state = 16}, + [2557] = {.lex_state = 256, .external_lex_state = 14}, + [2558] = {.lex_state = 226, .external_lex_state = 21}, + [2559] = {.lex_state = 226, .external_lex_state = 16}, + [2560] = {.lex_state = 256, .external_lex_state = 14}, + [2561] = {.lex_state = 226, .external_lex_state = 21}, + [2562] = {.lex_state = 226, .external_lex_state = 16}, + [2563] = {.lex_state = 221, .external_lex_state = 2}, + [2564] = {.lex_state = 256, .external_lex_state = 14}, + [2565] = {.lex_state = 138, .external_lex_state = 9}, + [2566] = {.lex_state = 171, .external_lex_state = 5}, + [2567] = {.lex_state = 173, .external_lex_state = 4}, + [2568] = {.lex_state = 71, .external_lex_state = 2}, + [2569] = {.lex_state = 138, .external_lex_state = 9}, + [2570] = {.lex_state = 199, .external_lex_state = 5}, + [2571] = {.lex_state = 132, .external_lex_state = 4}, + [2572] = {.lex_state = 221, .external_lex_state = 2}, + [2573] = {.lex_state = 256, .external_lex_state = 14}, + [2574] = {.lex_state = 138, .external_lex_state = 9}, + [2575] = {.lex_state = 171, .external_lex_state = 5}, + [2576] = {.lex_state = 173, .external_lex_state = 4}, + [2577] = {.lex_state = 246, .external_lex_state = 4}, + [2578] = {.lex_state = 212}, + [2579] = {.lex_state = 246, .external_lex_state = 14}, + [2580] = {.lex_state = 246, .external_lex_state = 14}, + [2581] = {.lex_state = 96, .external_lex_state = 20}, + [2582] = {.lex_state = 96, .external_lex_state = 20}, + [2583] = {.lex_state = 96, .external_lex_state = 16}, + [2584] = {.lex_state = 224, .external_lex_state = 16}, + [2585] = {.lex_state = 246, .external_lex_state = 14}, + [2586] = {.lex_state = 226, .external_lex_state = 21}, + [2587] = {.lex_state = 226, .external_lex_state = 16}, + [2588] = {.lex_state = 226, .external_lex_state = 21}, + [2589] = {.lex_state = 226, .external_lex_state = 16}, + [2590] = {.lex_state = 226, .external_lex_state = 16}, + [2591] = {.lex_state = 246, .external_lex_state = 14}, + [2592] = {.lex_state = 226, .external_lex_state = 16}, + [2593] = {.lex_state = 226, .external_lex_state = 16}, + [2594] = {.lex_state = 246, .external_lex_state = 14}, + [2595] = {.lex_state = 221, .external_lex_state = 2}, + [2596] = {.lex_state = 221, .external_lex_state = 2}, + [2597] = {.lex_state = 138, .external_lex_state = 9}, + [2598] = {.lex_state = 71, .external_lex_state = 2}, + [2599] = {.lex_state = 71, .external_lex_state = 2}, + [2600] = {.lex_state = 138, .external_lex_state = 9}, + [2601] = {.lex_state = 246, .external_lex_state = 14}, + [2602] = {.lex_state = 221, .external_lex_state = 2}, + [2603] = {.lex_state = 221, .external_lex_state = 2}, + [2604] = {.lex_state = 138, .external_lex_state = 9}, + [2605] = {.lex_state = 246, .external_lex_state = 6}, + [2606] = {.lex_state = 246, .external_lex_state = 6}, + [2607] = {.lex_state = 96, .external_lex_state = 20}, + [2608] = {.lex_state = 96, .external_lex_state = 20}, + [2609] = {.lex_state = 96, .external_lex_state = 16}, + [2610] = {.lex_state = 224, .external_lex_state = 16}, + [2611] = {.lex_state = 246, .external_lex_state = 6}, + [2612] = {.lex_state = 226, .external_lex_state = 21}, + [2613] = {.lex_state = 226, .external_lex_state = 16}, + [2614] = {.lex_state = 226, .external_lex_state = 21}, + [2615] = {.lex_state = 226, .external_lex_state = 16}, + [2616] = {.lex_state = 226, .external_lex_state = 16}, + [2617] = {.lex_state = 246, .external_lex_state = 6}, + [2618] = {.lex_state = 226, .external_lex_state = 16}, + [2619] = {.lex_state = 226, .external_lex_state = 16}, + [2620] = {.lex_state = 246, .external_lex_state = 6}, + [2621] = {.lex_state = 221, .external_lex_state = 2}, + [2622] = {.lex_state = 221, .external_lex_state = 2}, + [2623] = {.lex_state = 138, .external_lex_state = 9}, + [2624] = {.lex_state = 71, .external_lex_state = 2}, + [2625] = {.lex_state = 71, .external_lex_state = 2}, + [2626] = {.lex_state = 138, .external_lex_state = 9}, + [2627] = {.lex_state = 246, .external_lex_state = 6}, + [2628] = {.lex_state = 221, .external_lex_state = 2}, + [2629] = {.lex_state = 221, .external_lex_state = 2}, + [2630] = {.lex_state = 138, .external_lex_state = 9}, + [2631] = {.lex_state = 252, .external_lex_state = 6}, + [2632] = {.lex_state = 252, .external_lex_state = 6}, + [2633] = {.lex_state = 96, .external_lex_state = 20}, + [2634] = {.lex_state = 96, .external_lex_state = 20}, + [2635] = {.lex_state = 96, .external_lex_state = 16}, + [2636] = {.lex_state = 226, .external_lex_state = 16}, + [2637] = {.lex_state = 252, .external_lex_state = 6}, + [2638] = {.lex_state = 226, .external_lex_state = 16}, + [2639] = {.lex_state = 226, .external_lex_state = 16}, + [2640] = {.lex_state = 226, .external_lex_state = 16}, + [2641] = {.lex_state = 252, .external_lex_state = 6}, + [2642] = {.lex_state = 226, .external_lex_state = 16}, + [2643] = {.lex_state = 252, .external_lex_state = 6}, + [2644] = {.lex_state = 221, .external_lex_state = 2}, + [2645] = {.lex_state = 71, .external_lex_state = 2}, + [2646] = {.lex_state = 252, .external_lex_state = 6}, + [2647] = {.lex_state = 221, .external_lex_state = 2}, + [2648] = {.lex_state = 242, .external_lex_state = 6}, + [2649] = {.lex_state = 242, .external_lex_state = 6}, + [2650] = {.lex_state = 242, .external_lex_state = 6}, + [2651] = {.lex_state = 187}, + [2652] = {.lex_state = 224, .external_lex_state = 16}, + [2653] = {.lex_state = 78}, + [2654] = {.lex_state = 195, .external_lex_state = 16}, + [2655] = {.lex_state = 195, .external_lex_state = 16}, + [2656] = {.lex_state = 242, .external_lex_state = 6}, + [2657] = {.lex_state = 226, .external_lex_state = 21}, + [2658] = {.lex_state = 226, .external_lex_state = 16}, + [2659] = {.lex_state = 242, .external_lex_state = 6}, + [2660] = {.lex_state = 226, .external_lex_state = 21}, + [2661] = {.lex_state = 226, .external_lex_state = 16}, + [2662] = {.lex_state = 221, .external_lex_state = 2}, + [2663] = {.lex_state = 242, .external_lex_state = 6}, + [2664] = {.lex_state = 138, .external_lex_state = 9}, + [2665] = {.lex_state = 171, .external_lex_state = 5}, + [2666] = {.lex_state = 173, .external_lex_state = 4}, + [2667] = {.lex_state = 71, .external_lex_state = 2}, + [2668] = {.lex_state = 138, .external_lex_state = 9}, + [2669] = {.lex_state = 199, .external_lex_state = 5}, + [2670] = {.lex_state = 132, .external_lex_state = 4}, + [2671] = {.lex_state = 221, .external_lex_state = 2}, + [2672] = {.lex_state = 242, .external_lex_state = 6}, + [2673] = {.lex_state = 138, .external_lex_state = 9}, + [2674] = {.lex_state = 171, .external_lex_state = 5}, + [2675] = {.lex_state = 173, .external_lex_state = 4}, + [2676] = {.lex_state = 221, .external_lex_state = 2}, + [2677] = {.lex_state = 94}, + [2678] = {.lex_state = 128, .external_lex_state = 5}, + [2679] = {.lex_state = 132, .external_lex_state = 4}, + [2680] = {.lex_state = 221, .external_lex_state = 2}, + [2681] = {.lex_state = 94}, + [2682] = {.lex_state = 128, .external_lex_state = 5}, + [2683] = {.lex_state = 132, .external_lex_state = 4}, + [2684] = {.lex_state = 256, .external_lex_state = 14}, + [2685] = {.lex_state = 256, .external_lex_state = 14}, + [2686] = {.lex_state = 96, .external_lex_state = 20}, + [2687] = {.lex_state = 96, .external_lex_state = 20}, + [2688] = {.lex_state = 96, .external_lex_state = 16}, + [2689] = {.lex_state = 224, .external_lex_state = 16}, + [2690] = {.lex_state = 256, .external_lex_state = 14}, + [2691] = {.lex_state = 226, .external_lex_state = 21}, + [2692] = {.lex_state = 226, .external_lex_state = 16}, + [2693] = {.lex_state = 226, .external_lex_state = 21}, + [2694] = {.lex_state = 226, .external_lex_state = 16}, + [2695] = {.lex_state = 226, .external_lex_state = 16}, + [2696] = {.lex_state = 256, .external_lex_state = 14}, + [2697] = {.lex_state = 226, .external_lex_state = 16}, + [2698] = {.lex_state = 226, .external_lex_state = 16}, + [2699] = {.lex_state = 256, .external_lex_state = 14}, + [2700] = {.lex_state = 221, .external_lex_state = 2}, + [2701] = {.lex_state = 221, .external_lex_state = 2}, + [2702] = {.lex_state = 138, .external_lex_state = 9}, + [2703] = {.lex_state = 71, .external_lex_state = 2}, + [2704] = {.lex_state = 71, .external_lex_state = 2}, + [2705] = {.lex_state = 138, .external_lex_state = 9}, + [2706] = {.lex_state = 256, .external_lex_state = 14}, + [2707] = {.lex_state = 221, .external_lex_state = 2}, + [2708] = {.lex_state = 221, .external_lex_state = 2}, + [2709] = {.lex_state = 138, .external_lex_state = 9}, + [2710] = {.lex_state = 246, .external_lex_state = 4}, + [2711] = {.lex_state = 246, .external_lex_state = 14}, + [2712] = {.lex_state = 246, .external_lex_state = 14}, + [2713] = {.lex_state = 96, .external_lex_state = 20}, + [2714] = {.lex_state = 96, .external_lex_state = 20}, + [2715] = {.lex_state = 96, .external_lex_state = 16}, + [2716] = {.lex_state = 226, .external_lex_state = 16}, + [2717] = {.lex_state = 246, .external_lex_state = 14}, + [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 = 246, .external_lex_state = 14}, + [2722] = {.lex_state = 226, .external_lex_state = 16}, + [2723] = {.lex_state = 246, .external_lex_state = 14}, + [2724] = {.lex_state = 221, .external_lex_state = 2}, + [2725] = {.lex_state = 71, .external_lex_state = 2}, + [2726] = {.lex_state = 246, .external_lex_state = 14}, + [2727] = {.lex_state = 221, .external_lex_state = 2}, + [2728] = {.lex_state = 246, .external_lex_state = 6}, + [2729] = {.lex_state = 246, .external_lex_state = 6}, + [2730] = {.lex_state = 96, .external_lex_state = 20}, + [2731] = {.lex_state = 96, .external_lex_state = 20}, + [2732] = {.lex_state = 96, .external_lex_state = 16}, + [2733] = {.lex_state = 226, .external_lex_state = 16}, + [2734] = {.lex_state = 246, .external_lex_state = 6}, + [2735] = {.lex_state = 226, .external_lex_state = 16}, + [2736] = {.lex_state = 226, .external_lex_state = 16}, + [2737] = {.lex_state = 226, .external_lex_state = 16}, + [2738] = {.lex_state = 246, .external_lex_state = 6}, + [2739] = {.lex_state = 226, .external_lex_state = 16}, + [2740] = {.lex_state = 246, .external_lex_state = 6}, + [2741] = {.lex_state = 221, .external_lex_state = 2}, + [2742] = {.lex_state = 71, .external_lex_state = 2}, + [2743] = {.lex_state = 246, .external_lex_state = 6}, + [2744] = {.lex_state = 221, .external_lex_state = 2}, + [2745] = {.lex_state = 252, .external_lex_state = 6}, + [2746] = {.lex_state = 252, .external_lex_state = 6}, + [2747] = {.lex_state = 252, .external_lex_state = 6}, + [2748] = {.lex_state = 226, .external_lex_state = 16}, + [2749] = {.lex_state = 226, .external_lex_state = 16}, + [2750] = {.lex_state = 252, .external_lex_state = 6}, + [2751] = {.lex_state = 252, .external_lex_state = 6}, + [2752] = {.lex_state = 252, .external_lex_state = 6}, + [2753] = {.lex_state = 242, .external_lex_state = 6}, + [2754] = {.lex_state = 242, .external_lex_state = 6}, + [2755] = {.lex_state = 96, .external_lex_state = 20}, + [2756] = {.lex_state = 96, .external_lex_state = 20}, + [2757] = {.lex_state = 96, .external_lex_state = 16}, + [2758] = {.lex_state = 224, .external_lex_state = 16}, + [2759] = {.lex_state = 242, .external_lex_state = 6}, + [2760] = {.lex_state = 226, .external_lex_state = 21}, + [2761] = {.lex_state = 226, .external_lex_state = 16}, + [2762] = {.lex_state = 226, .external_lex_state = 21}, + [2763] = {.lex_state = 226, .external_lex_state = 16}, + [2764] = {.lex_state = 226, .external_lex_state = 16}, + [2765] = {.lex_state = 242, .external_lex_state = 6}, + [2766] = {.lex_state = 226, .external_lex_state = 16}, + [2767] = {.lex_state = 226, .external_lex_state = 16}, + [2768] = {.lex_state = 242, .external_lex_state = 6}, + [2769] = {.lex_state = 221, .external_lex_state = 2}, + [2770] = {.lex_state = 221, .external_lex_state = 2}, + [2771] = {.lex_state = 138, .external_lex_state = 9}, + [2772] = {.lex_state = 71, .external_lex_state = 2}, + [2773] = {.lex_state = 71, .external_lex_state = 2}, + [2774] = {.lex_state = 138, .external_lex_state = 9}, + [2775] = {.lex_state = 242, .external_lex_state = 6}, + [2776] = {.lex_state = 221, .external_lex_state = 2}, + [2777] = {.lex_state = 221, .external_lex_state = 2}, + [2778] = {.lex_state = 138, .external_lex_state = 9}, + [2779] = {.lex_state = 221, .external_lex_state = 2}, + [2780] = {.lex_state = 221, .external_lex_state = 2}, + [2781] = {.lex_state = 256, .external_lex_state = 14}, + [2782] = {.lex_state = 256, .external_lex_state = 14}, + [2783] = {.lex_state = 96, .external_lex_state = 20}, + [2784] = {.lex_state = 96, .external_lex_state = 20}, + [2785] = {.lex_state = 96, .external_lex_state = 16}, + [2786] = {.lex_state = 226, .external_lex_state = 16}, + [2787] = {.lex_state = 256, .external_lex_state = 14}, + [2788] = {.lex_state = 226, .external_lex_state = 16}, + [2789] = {.lex_state = 226, .external_lex_state = 16}, + [2790] = {.lex_state = 226, .external_lex_state = 16}, + [2791] = {.lex_state = 256, .external_lex_state = 14}, + [2792] = {.lex_state = 226, .external_lex_state = 16}, + [2793] = {.lex_state = 256, .external_lex_state = 14}, + [2794] = {.lex_state = 221, .external_lex_state = 2}, + [2795] = {.lex_state = 71, .external_lex_state = 2}, + [2796] = {.lex_state = 256, .external_lex_state = 14}, + [2797] = {.lex_state = 221, .external_lex_state = 2}, + [2798] = {.lex_state = 246, .external_lex_state = 14}, + [2799] = {.lex_state = 246, .external_lex_state = 14}, + [2800] = {.lex_state = 246, .external_lex_state = 14}, + [2801] = {.lex_state = 226, .external_lex_state = 16}, + [2802] = {.lex_state = 226, .external_lex_state = 16}, + [2803] = {.lex_state = 246, .external_lex_state = 14}, + [2804] = {.lex_state = 246, .external_lex_state = 14}, + [2805] = {.lex_state = 246, .external_lex_state = 14}, + [2806] = {.lex_state = 246, .external_lex_state = 6}, + [2807] = {.lex_state = 246, .external_lex_state = 6}, + [2808] = {.lex_state = 246, .external_lex_state = 6}, + [2809] = {.lex_state = 226, .external_lex_state = 16}, + [2810] = {.lex_state = 226, .external_lex_state = 16}, + [2811] = {.lex_state = 246, .external_lex_state = 6}, + [2812] = {.lex_state = 246, .external_lex_state = 6}, + [2813] = {.lex_state = 246, .external_lex_state = 6}, + [2814] = {.lex_state = 252, .external_lex_state = 6}, + [2815] = {.lex_state = 252, .external_lex_state = 6}, + [2816] = {.lex_state = 242, .external_lex_state = 6}, + [2817] = {.lex_state = 242, .external_lex_state = 6}, + [2818] = {.lex_state = 96, .external_lex_state = 20}, + [2819] = {.lex_state = 96, .external_lex_state = 20}, + [2820] = {.lex_state = 96, .external_lex_state = 16}, + [2821] = {.lex_state = 226, .external_lex_state = 16}, + [2822] = {.lex_state = 242, .external_lex_state = 6}, + [2823] = {.lex_state = 226, .external_lex_state = 16}, + [2824] = {.lex_state = 226, .external_lex_state = 16}, + [2825] = {.lex_state = 226, .external_lex_state = 16}, + [2826] = {.lex_state = 242, .external_lex_state = 6}, + [2827] = {.lex_state = 226, .external_lex_state = 16}, + [2828] = {.lex_state = 242, .external_lex_state = 6}, + [2829] = {.lex_state = 221, .external_lex_state = 2}, + [2830] = {.lex_state = 71, .external_lex_state = 2}, + [2831] = {.lex_state = 242, .external_lex_state = 6}, + [2832] = {.lex_state = 221, .external_lex_state = 2}, + [2833] = {.lex_state = 256, .external_lex_state = 14}, + [2834] = {.lex_state = 256, .external_lex_state = 14}, + [2835] = {.lex_state = 256, .external_lex_state = 14}, + [2836] = {.lex_state = 226, .external_lex_state = 16}, + [2837] = {.lex_state = 226, .external_lex_state = 16}, + [2838] = {.lex_state = 256, .external_lex_state = 14}, + [2839] = {.lex_state = 256, .external_lex_state = 14}, + [2840] = {.lex_state = 256, .external_lex_state = 14}, + [2841] = {.lex_state = 246, .external_lex_state = 14}, + [2842] = {.lex_state = 246, .external_lex_state = 14}, + [2843] = {.lex_state = 246, .external_lex_state = 6}, + [2844] = {.lex_state = 246, .external_lex_state = 6}, + [2845] = {.lex_state = 242, .external_lex_state = 6}, + [2846] = {.lex_state = 242, .external_lex_state = 6}, + [2847] = {.lex_state = 242, .external_lex_state = 6}, + [2848] = {.lex_state = 226, .external_lex_state = 16}, + [2849] = {.lex_state = 226, .external_lex_state = 16}, + [2850] = {.lex_state = 242, .external_lex_state = 6}, + [2851] = {.lex_state = 242, .external_lex_state = 6}, + [2852] = {.lex_state = 242, .external_lex_state = 6}, + [2853] = {.lex_state = 256, .external_lex_state = 14}, + [2854] = {.lex_state = 256, .external_lex_state = 14}, + [2855] = {.lex_state = 242, .external_lex_state = 6}, + [2856] = {.lex_state = 242, .external_lex_state = 6}, }; enum { @@ -8232,7 +7964,7 @@ static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LF] = anon_sym_LF, }; -static bool ts_external_scanner_states[26][EXTERNAL_TOKEN_COUNT] = { +static bool ts_external_scanner_states[22][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token_heredoc_start] = true, [ts_external_token__simple_heredoc_body] = true, @@ -8253,35 +7985,38 @@ static bool ts_external_scanner_states[26][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_variable_name] = true, }, [3] = { + [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, - [ts_external_token_LF] = true, + [ts_external_token_RBRACE] = true, }, [4] = { + [ts_external_token__simple_heredoc_body] = true, + [ts_external_token__heredoc_body_beginning] = true, + [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, [ts_external_token_LF] = true, }, [5] = { [ts_external_token__simple_heredoc_body] = true, [ts_external_token__heredoc_body_beginning] = true, [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, [ts_external_token_LF] = true, }, [6] = { - [ts_external_token_variable_name] = true, - }, - [7] = { [ts_external_token__simple_heredoc_body] = true, [ts_external_token__heredoc_body_beginning] = true, [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, [ts_external_token_LF] = true, }, + [7] = { + [ts_external_token_variable_name] = true, + }, [8] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, - [ts_external_token_LF] = true, + [ts_external_token__empty_value] = true, }, [9] = { - [ts_external_token__empty_value] = true, + [ts_external_token_LF] = true, }, [10] = { [ts_external_token__concat] = true, @@ -8298,6 +8033,9 @@ static bool ts_external_scanner_states[26][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_RBRACK] = true, }, [14] = { + [ts_external_token__simple_heredoc_body] = true, + [ts_external_token__heredoc_body_beginning] = true, + [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, [ts_external_token_LF] = true, @@ -8315,39 +8053,19 @@ static bool ts_external_scanner_states[26][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_end] = true, }, [18] = { - [ts_external_token_regex] = true, - }, - [19] = { [ts_external_token_heredoc_start] = true, }, + [19] = { + [ts_external_token_regex] = true, + }, [20] = { - [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, - [ts_external_token_variable_name] = true, - [ts_external_token_LF] = true, + [ts_external_token_RBRACE] = true, }, [21] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_LF] = true, - }, - [22] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, - [ts_external_token_RBRACE] = true, - }, - [23] = { - [ts_external_token__concat] = true, - [ts_external_token_RBRACE] = true, - }, - [24] = { [ts_external_token_regex] = true, [ts_external_token_RBRACE] = true, }, - [25] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token_LF] = true, - }, }; static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { @@ -8446,35 +8164,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3), }, [1] = { - [sym_program] = STATE(26), - [sym__terminated_statement] = STATE(32), - [sym_for_statement] = STATE(27), - [sym_c_style_for_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_function_definition] = STATE(27), - [sym_subshell] = STATE(27), - [sym_pipeline] = STATE(27), - [sym_list] = STATE(27), - [sym_negated_command] = STATE(27), - [sym_test_command] = STATE(27), - [sym_declaration_command] = STATE(27), - [sym_unset_command] = STATE(27), - [sym_command] = STATE(27), - [sym_command_name] = STATE(28), - [sym_variable_assignment] = STATE(29), - [sym_subscript] = STATE(30), - [sym_file_redirect] = STATE(33), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(20), - [sym_simple_expansion] = STATE(20), - [sym_string_expansion] = STATE(20), - [sym_expansion] = STATE(20), - [sym_command_substitution] = STATE(20), - [sym_process_substitution] = STATE(20), - [aux_sym__statements_repeat1] = STATE(32), - [aux_sym_command_repeat1] = STATE(33), + [sym_program] = STATE(27), + [sym__terminated_statement] = STATE(33), + [sym_redirected_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_c_style_for_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_function_definition] = STATE(28), + [sym_compound_statement] = STATE(28), + [sym_subshell] = STATE(28), + [sym_pipeline] = STATE(28), + [sym_list] = STATE(28), + [sym_negated_command] = STATE(28), + [sym_test_command] = STATE(28), + [sym_declaration_command] = STATE(28), + [sym_unset_command] = STATE(28), + [sym_command] = STATE(28), + [sym_command_name] = STATE(29), + [sym_variable_assignment] = STATE(30), + [sym_subscript] = STATE(31), + [sym_file_redirect] = STATE(34), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(21), + [sym_simple_expansion] = STATE(21), + [sym_string_expansion] = STATE(21), + [sym_expansion] = STATE(21), + [sym_command_substitution] = STATE(21), + [sym_process_substitution] = STATE(21), + [aux_sym__statements_repeat1] = STATE(33), + [aux_sym_command_repeat1] = STATE(34), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [ts_builtin_sym_end] = ACTIONS(9), @@ -8485,1020 +8205,1161 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(19), [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(29), - [anon_sym_declare] = ACTIONS(31), - [anon_sym_typeset] = ACTIONS(31), - [anon_sym_export] = ACTIONS(31), - [anon_sym_readonly] = ACTIONS(31), - [anon_sym_local] = ACTIONS(31), - [anon_sym_unset] = ACTIONS(33), - [anon_sym_unsetenv] = ACTIONS(33), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(45), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(33), + [anon_sym_typeset] = ACTIONS(33), + [anon_sym_export] = ACTIONS(33), + [anon_sym_readonly] = ACTIONS(33), + [anon_sym_local] = ACTIONS(33), + [anon_sym_unset] = ACTIONS(35), + [anon_sym_unsetenv] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(41), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(47), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(59), }, [2] = { - [anon_sym_LT] = ACTIONS(59), - [anon_sym_GT] = ACTIONS(59), - [anon_sym_GT_GT] = ACTIONS(61), - [anon_sym_AMP_GT] = ACTIONS(59), - [anon_sym_AMP_GT_GT] = ACTIONS(61), - [anon_sym_LT_AMP] = ACTIONS(61), - [anon_sym_GT_AMP] = ACTIONS(61), - [sym_comment] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_GT] = ACTIONS(61), + [anon_sym_GT_GT] = ACTIONS(63), + [anon_sym_AMP_GT] = ACTIONS(61), + [anon_sym_AMP_GT_GT] = ACTIONS(63), + [anon_sym_LT_AMP] = ACTIONS(63), + [anon_sym_GT_AMP] = ACTIONS(63), + [sym_comment] = ACTIONS(57), }, [3] = { - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(65), - [sym_comment] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(67), + [anon_sym_PLUS_EQ] = ACTIONS(67), + [sym_comment] = ACTIONS(57), }, [4] = { - [anon_sym_LPAREN_LPAREN] = ACTIONS(67), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(69), + [anon_sym_LPAREN_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(71), }, [5] = { - [sym__expression] = STATE(49), - [sym_binary_expression] = STATE(49), - [sym_unary_expression] = STATE(49), - [sym_postfix_expression] = STATE(49), - [sym_parenthesized_expression] = STATE(49), - [sym_concatenation] = STATE(49), - [sym_string] = STATE(44), - [sym_simple_expansion] = STATE(44), - [sym_string_expansion] = STATE(44), - [sym_expansion] = STATE(44), - [sym_command_substitution] = STATE(44), - [sym_process_substitution] = STATE(44), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(73), - [sym__special_characters] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(79), - [sym_raw_string] = ACTIONS(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), - [anon_sym_BQUOTE] = ACTIONS(87), - [anon_sym_LT_LPAREN] = ACTIONS(89), - [anon_sym_GT_LPAREN] = ACTIONS(89), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(91), - [sym_test_operator] = ACTIONS(93), + [sym__expression] = STATE(50), + [sym_binary_expression] = STATE(50), + [sym_unary_expression] = STATE(50), + [sym_postfix_expression] = STATE(50), + [sym_parenthesized_expression] = STATE(50), + [sym_concatenation] = STATE(50), + [sym_string] = STATE(45), + [sym_simple_expansion] = STATE(45), + [sym_string_expansion] = STATE(45), + [sym_expansion] = STATE(45), + [sym_command_substitution] = STATE(45), + [sym_process_substitution] = STATE(45), + [anon_sym_LPAREN] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [sym__special_characters] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(81), + [sym_raw_string] = ACTIONS(83), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(85), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(89), + [anon_sym_LT_LPAREN] = ACTIONS(91), + [anon_sym_GT_LPAREN] = ACTIONS(91), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(93), + [sym_test_operator] = ACTIONS(95), }, [6] = { - [sym__terminated_statement] = STATE(62), - [sym_for_statement] = STATE(63), - [sym_c_style_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_if_statement] = STATE(63), - [sym_case_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_subshell] = STATE(63), - [sym_pipeline] = STATE(63), - [sym_list] = STATE(63), - [sym_negated_command] = STATE(63), - [sym_test_command] = STATE(63), - [sym_declaration_command] = STATE(63), - [sym_unset_command] = STATE(63), - [sym_command] = STATE(63), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(65), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym_command_repeat1] = STATE(67), + [sym__terminated_statement] = STATE(58), + [sym_redirected_statement] = STATE(59), + [sym_for_statement] = STATE(59), + [sym_c_style_for_statement] = STATE(59), + [sym_while_statement] = STATE(59), + [sym_if_statement] = STATE(59), + [sym_case_statement] = STATE(59), + [sym_function_definition] = STATE(59), + [sym_compound_statement] = STATE(59), + [sym_subshell] = STATE(59), + [sym_pipeline] = STATE(59), + [sym_list] = STATE(59), + [sym_negated_command] = STATE(59), + [sym_test_command] = STATE(59), + [sym_declaration_command] = STATE(59), + [sym_unset_command] = STATE(59), + [sym_command] = STATE(59), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(61), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym_command_repeat1] = STATE(63), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), + [sym_variable_name] = ACTIONS(97), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(101), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_typeset] = ACTIONS(101), + [anon_sym_export] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_local] = ACTIONS(101), + [anon_sym_unset] = ACTIONS(103), + [anon_sym_unsetenv] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [7] = { - [sym__terminated_statement] = STATE(68), - [sym_for_statement] = STATE(63), - [sym_c_style_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_if_statement] = STATE(63), - [sym_case_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_subshell] = STATE(63), - [sym_pipeline] = STATE(63), - [sym_list] = STATE(63), - [sym_negated_command] = STATE(63), - [sym_test_command] = STATE(63), - [sym_declaration_command] = STATE(63), - [sym_unset_command] = STATE(63), - [sym_command] = STATE(63), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(65), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym_command_repeat1] = STATE(67), + [sym__terminated_statement] = STATE(64), + [sym_redirected_statement] = STATE(59), + [sym_for_statement] = STATE(59), + [sym_c_style_for_statement] = STATE(59), + [sym_while_statement] = STATE(59), + [sym_if_statement] = STATE(59), + [sym_case_statement] = STATE(59), + [sym_function_definition] = STATE(59), + [sym_compound_statement] = STATE(59), + [sym_subshell] = STATE(59), + [sym_pipeline] = STATE(59), + [sym_list] = STATE(59), + [sym_negated_command] = STATE(59), + [sym_test_command] = STATE(59), + [sym_declaration_command] = STATE(59), + [sym_unset_command] = STATE(59), + [sym_command] = STATE(59), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(61), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym_command_repeat1] = STATE(63), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), + [sym_variable_name] = ACTIONS(97), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(101), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_typeset] = ACTIONS(101), + [anon_sym_export] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_local] = ACTIONS(101), + [anon_sym_unset] = ACTIONS(103), + [anon_sym_unsetenv] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [8] = { - [sym_concatenation] = STATE(77), - [sym_string] = STATE(72), - [sym_simple_expansion] = STATE(72), - [sym_string_expansion] = STATE(72), - [sym_expansion] = STATE(72), - [sym_command_substitution] = STATE(72), - [sym_process_substitution] = STATE(72), - [sym__special_characters] = ACTIONS(119), - [anon_sym_DQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [sym_raw_string] = ACTIONS(125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(127), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(129), - [anon_sym_BQUOTE] = ACTIONS(131), - [anon_sym_LT_LPAREN] = ACTIONS(133), - [anon_sym_GT_LPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(125), + [sym_concatenation] = STATE(73), + [sym_string] = STATE(68), + [sym_simple_expansion] = STATE(68), + [sym_string_expansion] = STATE(68), + [sym_expansion] = STATE(68), + [sym_command_substitution] = STATE(68), + [sym_process_substitution] = STATE(68), + [sym__special_characters] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(115), + [sym_raw_string] = ACTIONS(117), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(119), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_LT_LPAREN] = ACTIONS(125), + [anon_sym_GT_LPAREN] = ACTIONS(125), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(117), }, [9] = { - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(135), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(127), }, [10] = { - [sym__terminated_statement] = STATE(95), - [sym_for_statement] = STATE(91), - [sym_c_style_for_statement] = STATE(91), - [sym_while_statement] = STATE(91), - [sym_if_statement] = STATE(91), - [sym_case_statement] = STATE(91), - [sym_function_definition] = STATE(91), - [sym_subshell] = STATE(91), - [sym_pipeline] = STATE(91), - [sym_list] = STATE(91), - [sym_negated_command] = STATE(91), - [sym_test_command] = STATE(91), - [sym_declaration_command] = STATE(91), - [sym_unset_command] = STATE(91), - [sym_command] = STATE(91), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(93), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(95), - [aux_sym_command_repeat1] = STATE(96), + [sym__terminated_statement] = STATE(86), + [sym_redirected_statement] = STATE(82), + [sym_for_statement] = STATE(82), + [sym_c_style_for_statement] = STATE(82), + [sym_while_statement] = STATE(82), + [sym_if_statement] = STATE(82), + [sym_case_statement] = STATE(82), + [sym_function_definition] = STATE(82), + [sym_compound_statement] = STATE(82), + [sym_subshell] = STATE(82), + [sym_pipeline] = STATE(82), + [sym_list] = STATE(82), + [sym_negated_command] = STATE(82), + [sym_test_command] = STATE(82), + [sym_declaration_command] = STATE(82), + [sym_unset_command] = STATE(82), + [sym_command] = STATE(82), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(84), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(86), + [aux_sym_command_repeat1] = STATE(87), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), + [sym_variable_name] = ACTIONS(129), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [11] = { - [sym_subshell] = STATE(98), - [sym_test_command] = STATE(98), - [sym_command] = STATE(98), - [sym_command_name] = STATE(28), - [sym_variable_assignment] = STATE(33), - [sym_subscript] = STATE(99), - [sym_file_redirect] = STATE(33), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(20), - [sym_simple_expansion] = STATE(20), - [sym_string_expansion] = STATE(20), - [sym_expansion] = STATE(20), - [sym_command_substitution] = STATE(20), - [sym_process_substitution] = STATE(20), - [aux_sym_command_repeat1] = STATE(33), + [sym__terminated_statement] = STATE(91), + [sym_redirected_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_c_style_for_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_function_definition] = STATE(89), + [sym_compound_statement] = STATE(89), + [sym_subshell] = STATE(89), + [sym_pipeline] = STATE(89), + [sym_list] = STATE(89), + [sym_negated_command] = STATE(89), + [sym_test_command] = STATE(89), + [sym_declaration_command] = STATE(89), + [sym_unset_command] = STATE(89), + [sym_command] = STATE(89), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(90), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(91), + [aux_sym_command_repeat1] = STATE(63), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(161), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(29), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(45), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_typeset] = ACTIONS(101), + [anon_sym_export] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_local] = ACTIONS(101), + [anon_sym_unset] = ACTIONS(103), + [anon_sym_unsetenv] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [12] = { - [sym__expression] = STATE(110), - [sym_binary_expression] = STATE(110), - [sym_unary_expression] = STATE(110), - [sym_postfix_expression] = STATE(110), - [sym_parenthesized_expression] = STATE(110), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(105), - [sym_simple_expansion] = STATE(105), - [sym_string_expansion] = STATE(105), - [sym_expansion] = STATE(105), - [sym_command_substitution] = STATE(105), - [sym_process_substitution] = STATE(105), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [sym__special_characters] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_DOLLAR] = ACTIONS(171), - [sym_raw_string] = ACTIONS(173), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), - [anon_sym_BQUOTE] = ACTIONS(179), - [anon_sym_LT_LPAREN] = ACTIONS(181), - [anon_sym_GT_LPAREN] = ACTIONS(181), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(183), - [sym_test_operator] = ACTIONS(185), + [sym_subshell] = STATE(93), + [sym_test_command] = STATE(93), + [sym_command] = STATE(93), + [sym_command_name] = STATE(29), + [sym_variable_assignment] = STATE(34), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(34), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(21), + [sym_simple_expansion] = STATE(21), + [sym_string_expansion] = STATE(21), + [sym_expansion] = STATE(21), + [sym_command_substitution] = STATE(21), + [sym_process_substitution] = STATE(21), + [aux_sym_command_repeat1] = STATE(34), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(145), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(41), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(47), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(47), }, [13] = { - [sym__expression] = STATE(114), - [sym_binary_expression] = STATE(114), - [sym_unary_expression] = STATE(114), - [sym_postfix_expression] = STATE(114), - [sym_parenthesized_expression] = STATE(114), - [sym_concatenation] = STATE(114), - [sym_string] = STATE(113), - [sym_simple_expansion] = STATE(113), - [sym_string_expansion] = STATE(113), - [sym_expansion] = STATE(113), - [sym_command_substitution] = STATE(113), - [sym_process_substitution] = STATE(113), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(187), - [sym__special_characters] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(79), - [sym_raw_string] = ACTIONS(191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), - [anon_sym_BQUOTE] = ACTIONS(87), - [anon_sym_LT_LPAREN] = ACTIONS(89), - [anon_sym_GT_LPAREN] = ACTIONS(89), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(193), - [sym_test_operator] = ACTIONS(195), + [sym__expression] = STATE(105), + [sym_binary_expression] = STATE(105), + [sym_unary_expression] = STATE(105), + [sym_postfix_expression] = STATE(105), + [sym_parenthesized_expression] = STATE(105), + [sym_concatenation] = STATE(105), + [sym_string] = STATE(100), + [sym_simple_expansion] = STATE(100), + [sym_string_expansion] = STATE(100), + [sym_expansion] = STATE(100), + [sym_command_substitution] = STATE(100), + [sym_process_substitution] = STATE(100), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(149), + [sym__special_characters] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(155), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(163), + [anon_sym_LT_LPAREN] = ACTIONS(165), + [anon_sym_GT_LPAREN] = ACTIONS(165), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(167), + [sym_test_operator] = ACTIONS(169), }, [14] = { - [sym_variable_assignment] = STATE(125), - [sym_subscript] = STATE(124), - [sym_concatenation] = STATE(125), - [sym_string] = STATE(119), - [sym_simple_expansion] = STATE(119), - [sym_string_expansion] = STATE(119), - [sym_expansion] = STATE(119), - [sym_command_substitution] = STATE(119), - [sym_process_substitution] = STATE(119), - [aux_sym_declaration_command_repeat1] = STATE(125), - [sym_variable_name] = ACTIONS(197), - [ts_builtin_sym_end] = ACTIONS(199), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_PIPE] = ACTIONS(201), - [anon_sym_SEMI_SEMI] = ACTIONS(199), - [anon_sym_PIPE_AMP] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [sym__special_characters] = ACTIONS(203), - [anon_sym_DQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR] = ACTIONS(207), - [sym_raw_string] = ACTIONS(209), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_BQUOTE] = ACTIONS(215), - [anon_sym_LT_LPAREN] = ACTIONS(217), - [anon_sym_GT_LPAREN] = ACTIONS(217), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(219), - [sym_word] = ACTIONS(221), - [anon_sym_LF] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(201), + [sym__expression] = STATE(109), + [sym_binary_expression] = STATE(109), + [sym_unary_expression] = STATE(109), + [sym_postfix_expression] = STATE(109), + [sym_parenthesized_expression] = STATE(109), + [sym_concatenation] = STATE(109), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_string_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [anon_sym_LPAREN] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(171), + [sym__special_characters] = ACTIONS(173), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(81), + [sym_raw_string] = ACTIONS(175), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(85), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(89), + [anon_sym_LT_LPAREN] = ACTIONS(91), + [anon_sym_GT_LPAREN] = ACTIONS(91), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(177), + [sym_test_operator] = ACTIONS(179), }, [15] = { - [sym_concatenation] = STATE(134), - [sym_string] = STATE(129), - [sym_simple_expansion] = STATE(129), - [sym_string_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [sym_process_substitution] = STATE(129), - [aux_sym_unset_command_repeat1] = STATE(134), - [ts_builtin_sym_end] = ACTIONS(223), - [anon_sym_SEMI] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_SEMI_SEMI] = ACTIONS(223), - [anon_sym_PIPE_AMP] = ACTIONS(223), - [anon_sym_AMP_AMP] = ACTIONS(223), - [anon_sym_PIPE_PIPE] = ACTIONS(223), - [sym__special_characters] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [sym_raw_string] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [anon_sym_LT_LPAREN] = ACTIONS(241), - [anon_sym_GT_LPAREN] = ACTIONS(241), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(243), - [sym_word] = ACTIONS(245), - [anon_sym_LF] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(225), + [sym_variable_assignment] = STATE(120), + [sym_subscript] = STATE(119), + [sym_concatenation] = STATE(120), + [sym_string] = STATE(114), + [sym_simple_expansion] = STATE(114), + [sym_string_expansion] = STATE(114), + [sym_expansion] = STATE(114), + [sym_command_substitution] = STATE(114), + [sym_process_substitution] = STATE(114), + [aux_sym_declaration_command_repeat1] = STATE(120), + [sym__simple_heredoc_body] = ACTIONS(181), + [sym__heredoc_body_beginning] = ACTIONS(181), + [sym_file_descriptor] = ACTIONS(181), + [sym_variable_name] = ACTIONS(183), + [ts_builtin_sym_end] = ACTIONS(181), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(181), + [anon_sym_PIPE_AMP] = ACTIONS(181), + [anon_sym_AMP_AMP] = ACTIONS(181), + [anon_sym_PIPE_PIPE] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(181), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(181), + [anon_sym_LT_AMP] = ACTIONS(181), + [anon_sym_GT_AMP] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(181), + [anon_sym_LT_LT_LT] = ACTIONS(181), + [sym__special_characters] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(193), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(199), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(203), + [sym_word] = ACTIONS(205), + [anon_sym_LF] = ACTIONS(181), + [anon_sym_AMP] = ACTIONS(185), }, [16] = { - [sym_concatenation] = STATE(143), - [sym_string] = STATE(138), - [sym_simple_expansion] = STATE(138), - [sym_string_expansion] = STATE(138), - [sym_expansion] = STATE(138), - [sym_command_substitution] = STATE(138), - [sym_process_substitution] = STATE(138), - [sym__special_characters] = ACTIONS(247), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR] = ACTIONS(251), - [sym_raw_string] = ACTIONS(253), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(255), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), - [anon_sym_BQUOTE] = ACTIONS(259), - [anon_sym_LT_LPAREN] = ACTIONS(261), - [anon_sym_GT_LPAREN] = ACTIONS(261), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(253), + [sym_concatenation] = STATE(129), + [sym_string] = STATE(124), + [sym_simple_expansion] = STATE(124), + [sym_string_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [sym_process_substitution] = STATE(124), + [aux_sym_unset_command_repeat1] = STATE(129), + [sym__simple_heredoc_body] = ACTIONS(207), + [sym__heredoc_body_beginning] = ACTIONS(207), + [sym_file_descriptor] = ACTIONS(207), + [ts_builtin_sym_end] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(209), + [anon_sym_PIPE] = ACTIONS(209), + [anon_sym_SEMI_SEMI] = ACTIONS(207), + [anon_sym_PIPE_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_GT_GT] = ACTIONS(207), + [anon_sym_AMP_GT] = ACTIONS(209), + [anon_sym_AMP_GT_GT] = ACTIONS(207), + [anon_sym_LT_AMP] = ACTIONS(207), + [anon_sym_GT_AMP] = ACTIONS(207), + [anon_sym_LT_LT] = ACTIONS(209), + [anon_sym_LT_LT_DASH] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [sym__special_characters] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(215), + [sym_raw_string] = ACTIONS(217), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), + [anon_sym_BQUOTE] = ACTIONS(223), + [anon_sym_LT_LPAREN] = ACTIONS(225), + [anon_sym_GT_LPAREN] = ACTIONS(225), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(227), + [sym_word] = ACTIONS(229), + [anon_sym_LF] = ACTIONS(207), + [anon_sym_AMP] = ACTIONS(209), }, [17] = { - [aux_sym_concatenation_repeat1] = STATE(145), - [sym__simple_heredoc_body] = ACTIONS(263), - [sym__heredoc_body_beginning] = ACTIONS(263), - [sym_file_descriptor] = ACTIONS(263), - [sym__concat] = ACTIONS(265), - [ts_builtin_sym_end] = ACTIONS(263), - [anon_sym_SEMI] = ACTIONS(267), - [anon_sym_PIPE] = ACTIONS(267), - [anon_sym_SEMI_SEMI] = ACTIONS(263), - [anon_sym_PIPE_AMP] = ACTIONS(263), - [anon_sym_AMP_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(263), - [anon_sym_EQ_TILDE] = ACTIONS(267), - [anon_sym_EQ_EQ] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_GT_GT] = ACTIONS(263), - [anon_sym_AMP_GT] = ACTIONS(267), - [anon_sym_AMP_GT_GT] = ACTIONS(263), - [anon_sym_LT_AMP] = ACTIONS(263), - [anon_sym_GT_AMP] = ACTIONS(263), - [anon_sym_LT_LT] = ACTIONS(267), - [anon_sym_LT_LT_DASH] = ACTIONS(263), - [anon_sym_LT_LT_LT] = ACTIONS(263), - [sym__special_characters] = ACTIONS(263), - [anon_sym_DQUOTE] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(267), - [sym_raw_string] = ACTIONS(263), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(263), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(263), - [anon_sym_BQUOTE] = ACTIONS(263), - [anon_sym_LT_LPAREN] = ACTIONS(263), - [anon_sym_GT_LPAREN] = ACTIONS(263), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(267), - [anon_sym_LF] = ACTIONS(263), - [anon_sym_AMP] = ACTIONS(267), + [sym_concatenation] = STATE(138), + [sym_string] = STATE(133), + [sym_simple_expansion] = STATE(133), + [sym_string_expansion] = STATE(133), + [sym_expansion] = STATE(133), + [sym_command_substitution] = STATE(133), + [sym_process_substitution] = STATE(133), + [sym__special_characters] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [sym_raw_string] = ACTIONS(237), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(239), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(237), }, [18] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(152), - [anon_sym_DQUOTE] = ACTIONS(269), - [anon_sym_DOLLAR] = ACTIONS(271), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [aux_sym_concatenation_repeat1] = STATE(140), + [sym__simple_heredoc_body] = ACTIONS(247), + [sym__heredoc_body_beginning] = ACTIONS(247), + [sym_file_descriptor] = ACTIONS(247), + [sym__concat] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(251), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_SEMI_SEMI] = ACTIONS(247), + [anon_sym_PIPE_AMP] = ACTIONS(247), + [anon_sym_AMP_AMP] = ACTIONS(247), + [anon_sym_PIPE_PIPE] = ACTIONS(247), + [anon_sym_EQ_TILDE] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(251), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(247), + [anon_sym_AMP_GT] = ACTIONS(251), + [anon_sym_AMP_GT_GT] = ACTIONS(247), + [anon_sym_LT_AMP] = ACTIONS(247), + [anon_sym_GT_AMP] = ACTIONS(247), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_LT_LT_DASH] = ACTIONS(247), + [anon_sym_LT_LT_LT] = ACTIONS(247), + [sym__special_characters] = ACTIONS(247), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(247), + [anon_sym_BQUOTE] = ACTIONS(247), + [anon_sym_LT_LPAREN] = ACTIONS(247), + [anon_sym_GT_LPAREN] = ACTIONS(247), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(247), + [anon_sym_AMP] = ACTIONS(251), }, [19] = { - [sym_string] = STATE(154), - [anon_sym_DASH] = ACTIONS(283), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(283), - [sym_raw_string] = ACTIONS(285), - [anon_sym_POUND] = ACTIONS(283), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(287), - [anon_sym_STAR] = ACTIONS(289), - [anon_sym_AT] = ACTIONS(289), - [anon_sym_QMARK] = ACTIONS(289), - [anon_sym_0] = ACTIONS(287), - [anon_sym__] = ACTIONS(287), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(147), + [anon_sym_DQUOTE] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(255), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [20] = { - [aux_sym_concatenation_repeat1] = STATE(145), - [sym__simple_heredoc_body] = ACTIONS(291), - [sym__heredoc_body_beginning] = ACTIONS(291), - [sym_file_descriptor] = ACTIONS(291), - [sym__concat] = ACTIONS(265), - [ts_builtin_sym_end] = ACTIONS(291), - [anon_sym_SEMI] = ACTIONS(293), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_SEMI_SEMI] = ACTIONS(291), - [anon_sym_PIPE_AMP] = ACTIONS(291), - [anon_sym_AMP_AMP] = ACTIONS(291), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_EQ_TILDE] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_GT_GT] = ACTIONS(291), - [anon_sym_AMP_GT] = ACTIONS(293), - [anon_sym_AMP_GT_GT] = ACTIONS(291), - [anon_sym_LT_AMP] = ACTIONS(291), - [anon_sym_GT_AMP] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_LT_LT_DASH] = ACTIONS(291), - [anon_sym_LT_LT_LT] = ACTIONS(291), - [sym__special_characters] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(291), - [anon_sym_DOLLAR] = ACTIONS(293), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(291), - [anon_sym_LT_LPAREN] = ACTIONS(291), - [anon_sym_GT_LPAREN] = ACTIONS(291), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(293), - [anon_sym_LF] = ACTIONS(291), - [anon_sym_AMP] = ACTIONS(293), + [sym_string] = STATE(149), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(267), + [sym_raw_string] = ACTIONS(269), + [anon_sym_POUND] = ACTIONS(267), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(273), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_QMARK] = ACTIONS(273), + [anon_sym_0] = ACTIONS(271), + [anon_sym__] = ACTIONS(271), }, [21] = { - [sym_subscript] = STATE(159), - [sym_variable_name] = ACTIONS(295), - [anon_sym_BANG] = ACTIONS(297), - [anon_sym_DASH] = ACTIONS(299), - [anon_sym_DOLLAR] = ACTIONS(299), - [anon_sym_POUND] = ACTIONS(297), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(301), - [anon_sym_STAR] = ACTIONS(303), - [anon_sym_AT] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(303), - [anon_sym_0] = ACTIONS(301), - [anon_sym__] = ACTIONS(301), + [aux_sym_concatenation_repeat1] = STATE(140), + [sym__simple_heredoc_body] = ACTIONS(275), + [sym__heredoc_body_beginning] = ACTIONS(275), + [sym_file_descriptor] = ACTIONS(275), + [sym__concat] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_SEMI_SEMI] = ACTIONS(275), + [anon_sym_PIPE_AMP] = ACTIONS(275), + [anon_sym_AMP_AMP] = ACTIONS(275), + [anon_sym_PIPE_PIPE] = ACTIONS(275), + [anon_sym_EQ_TILDE] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(277), + [anon_sym_GT_GT] = ACTIONS(275), + [anon_sym_AMP_GT] = ACTIONS(277), + [anon_sym_AMP_GT_GT] = ACTIONS(275), + [anon_sym_LT_AMP] = ACTIONS(275), + [anon_sym_GT_AMP] = ACTIONS(275), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(275), + [anon_sym_LT_LT_LT] = ACTIONS(275), + [sym__special_characters] = ACTIONS(275), + [anon_sym_DQUOTE] = ACTIONS(275), + [anon_sym_DOLLAR] = ACTIONS(277), + [sym_raw_string] = ACTIONS(275), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [anon_sym_BQUOTE] = ACTIONS(275), + [anon_sym_LT_LPAREN] = ACTIONS(275), + [anon_sym_GT_LPAREN] = ACTIONS(275), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(277), + [anon_sym_LF] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), }, [22] = { - [sym__terminated_statement] = STATE(162), - [sym_for_statement] = STATE(160), - [sym_c_style_for_statement] = STATE(160), - [sym_while_statement] = STATE(160), - [sym_if_statement] = STATE(160), - [sym_case_statement] = STATE(160), - [sym_function_definition] = STATE(160), - [sym_subshell] = STATE(160), - [sym_pipeline] = STATE(160), - [sym_list] = STATE(160), - [sym_negated_command] = STATE(160), - [sym_test_command] = STATE(160), - [sym_declaration_command] = STATE(160), - [sym_unset_command] = STATE(160), - [sym_command] = STATE(160), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(161), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(162), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_subscript] = STATE(154), + [sym_variable_name] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(281), + [anon_sym_DASH] = ACTIONS(283), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_POUND] = ACTIONS(281), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_QMARK] = ACTIONS(287), + [anon_sym_0] = ACTIONS(285), + [anon_sym__] = ACTIONS(285), }, [23] = { - [sym__terminated_statement] = STATE(175), - [sym_for_statement] = STATE(172), - [sym_c_style_for_statement] = STATE(172), - [sym_while_statement] = STATE(172), - [sym_if_statement] = STATE(172), - [sym_case_statement] = STATE(172), - [sym_function_definition] = STATE(172), - [sym_subshell] = STATE(172), - [sym_pipeline] = STATE(172), - [sym_list] = STATE(172), - [sym_negated_command] = STATE(172), - [sym_test_command] = STATE(172), - [sym_declaration_command] = STATE(172), - [sym_unset_command] = STATE(172), - [sym_command] = STATE(172), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(174), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(175), - [aux_sym_command_repeat1] = STATE(176), + [sym__terminated_statement] = STATE(157), + [sym_redirected_statement] = STATE(155), + [sym_for_statement] = STATE(155), + [sym_c_style_for_statement] = STATE(155), + [sym_while_statement] = STATE(155), + [sym_if_statement] = STATE(155), + [sym_case_statement] = STATE(155), + [sym_function_definition] = STATE(155), + [sym_compound_statement] = STATE(155), + [sym_subshell] = STATE(155), + [sym_pipeline] = STATE(155), + [sym_list] = STATE(155), + [sym_negated_command] = STATE(155), + [sym_test_command] = STATE(155), + [sym_declaration_command] = STATE(155), + [sym_unset_command] = STATE(155), + [sym_command] = STATE(155), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(156), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(157), + [aux_sym_command_repeat1] = STATE(87), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), + [sym_variable_name] = ACTIONS(129), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [24] = { - [sym__terminated_statement] = STATE(179), - [sym_for_statement] = STATE(177), - [sym_c_style_for_statement] = STATE(177), - [sym_while_statement] = STATE(177), - [sym_if_statement] = STATE(177), - [sym_case_statement] = STATE(177), - [sym_function_definition] = STATE(177), - [sym_subshell] = STATE(177), - [sym_pipeline] = STATE(177), - [sym_list] = STATE(177), - [sym_negated_command] = STATE(177), - [sym_test_command] = STATE(177), - [sym_declaration_command] = STATE(177), - [sym_unset_command] = STATE(177), - [sym_command] = STATE(177), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(178), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(179), - [aux_sym_command_repeat1] = STATE(96), + [sym__terminated_statement] = STATE(164), + [sym_redirected_statement] = STATE(161), + [sym_for_statement] = STATE(161), + [sym_c_style_for_statement] = STATE(161), + [sym_while_statement] = STATE(161), + [sym_if_statement] = STATE(161), + [sym_case_statement] = STATE(161), + [sym_function_definition] = STATE(161), + [sym_compound_statement] = STATE(161), + [sym_subshell] = STATE(161), + [sym_pipeline] = STATE(161), + [sym_list] = STATE(161), + [sym_negated_command] = STATE(161), + [sym_test_command] = STATE(161), + [sym_declaration_command] = STATE(161), + [sym_unset_command] = STATE(161), + [sym_command] = STATE(161), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(163), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(164), + [aux_sym_command_repeat1] = STATE(165), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), + [sym_variable_name] = ACTIONS(97), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [25] = { - [aux_sym_concatenation_repeat1] = STATE(145), - [sym__simple_heredoc_body] = ACTIONS(291), - [sym__heredoc_body_beginning] = ACTIONS(291), - [sym_file_descriptor] = ACTIONS(291), - [sym__concat] = ACTIONS(265), - [ts_builtin_sym_end] = ACTIONS(291), - [anon_sym_SEMI] = ACTIONS(293), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_SEMI_SEMI] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_PIPE_AMP] = ACTIONS(291), - [anon_sym_AMP_AMP] = ACTIONS(291), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_EQ_TILDE] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_GT_GT] = ACTIONS(291), - [anon_sym_AMP_GT] = ACTIONS(293), - [anon_sym_AMP_GT_GT] = ACTIONS(291), - [anon_sym_LT_AMP] = ACTIONS(291), - [anon_sym_GT_AMP] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_LT_LT_DASH] = ACTIONS(291), - [anon_sym_LT_LT_LT] = ACTIONS(291), - [sym__special_characters] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(291), - [anon_sym_DOLLAR] = ACTIONS(293), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(291), - [anon_sym_LT_LPAREN] = ACTIONS(291), - [anon_sym_GT_LPAREN] = ACTIONS(291), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(293), - [anon_sym_LF] = ACTIONS(291), - [anon_sym_AMP] = ACTIONS(293), + [sym__terminated_statement] = STATE(168), + [sym_redirected_statement] = STATE(166), + [sym_for_statement] = STATE(166), + [sym_c_style_for_statement] = STATE(166), + [sym_while_statement] = STATE(166), + [sym_if_statement] = STATE(166), + [sym_case_statement] = STATE(166), + [sym_function_definition] = STATE(166), + [sym_compound_statement] = STATE(166), + [sym_subshell] = STATE(166), + [sym_pipeline] = STATE(166), + [sym_list] = STATE(166), + [sym_negated_command] = STATE(166), + [sym_test_command] = STATE(166), + [sym_declaration_command] = STATE(166), + [sym_unset_command] = STATE(166), + [sym_command] = STATE(166), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(167), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(168), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [26] = { - [ts_builtin_sym_end] = ACTIONS(325), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(140), + [sym__simple_heredoc_body] = ACTIONS(275), + [sym__heredoc_body_beginning] = ACTIONS(275), + [sym_file_descriptor] = ACTIONS(275), + [sym__concat] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_SEMI_SEMI] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym_PIPE_AMP] = ACTIONS(275), + [anon_sym_AMP_AMP] = ACTIONS(275), + [anon_sym_PIPE_PIPE] = ACTIONS(275), + [anon_sym_EQ_TILDE] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(277), + [anon_sym_GT_GT] = ACTIONS(275), + [anon_sym_AMP_GT] = ACTIONS(277), + [anon_sym_AMP_GT_GT] = ACTIONS(275), + [anon_sym_LT_AMP] = ACTIONS(275), + [anon_sym_GT_AMP] = ACTIONS(275), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(275), + [anon_sym_LT_LT_LT] = ACTIONS(275), + [sym__special_characters] = ACTIONS(275), + [anon_sym_DQUOTE] = ACTIONS(275), + [anon_sym_DOLLAR] = ACTIONS(277), + [sym_raw_string] = ACTIONS(275), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [anon_sym_BQUOTE] = ACTIONS(275), + [anon_sym_LT_LPAREN] = ACTIONS(275), + [anon_sym_GT_LPAREN] = ACTIONS(275), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(277), + [anon_sym_LF] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), }, [27] = { - [ts_builtin_sym_end] = ACTIONS(327), - [anon_sym_SEMI] = ACTIONS(329), - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(333), - [anon_sym_PIPE_AMP] = ACTIONS(335), - [anon_sym_AMP_AMP] = ACTIONS(337), - [anon_sym_PIPE_PIPE] = ACTIONS(337), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(333), - [anon_sym_AMP] = ACTIONS(329), + [ts_builtin_sym_end] = ACTIONS(297), + [sym_comment] = ACTIONS(57), }, [28] = { - [sym_file_redirect] = STATE(194), - [sym_heredoc_redirect] = STATE(194), - [sym_heredoc_body] = STATE(193), - [sym_herestring_redirect] = STATE(194), - [sym_concatenation] = STATE(195), - [sym_string] = STATE(192), - [sym_simple_expansion] = STATE(192), - [sym_string_expansion] = STATE(192), - [sym_expansion] = STATE(192), - [sym_command_substitution] = STATE(192), - [sym_process_substitution] = STATE(192), - [aux_sym_while_statement_repeat1] = STATE(194), - [aux_sym_command_repeat2] = STATE(195), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(343), - [ts_builtin_sym_end] = ACTIONS(345), - [anon_sym_SEMI] = ACTIONS(347), - [anon_sym_PIPE] = ACTIONS(347), - [anon_sym_SEMI_SEMI] = ACTIONS(345), - [anon_sym_PIPE_AMP] = ACTIONS(345), - [anon_sym_AMP_AMP] = ACTIONS(345), - [anon_sym_PIPE_PIPE] = ACTIONS(345), - [anon_sym_EQ_TILDE] = ACTIONS(349), - [anon_sym_EQ_EQ] = ACTIONS(349), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(353), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(353), - [anon_sym_LT_AMP] = ACTIONS(353), - [anon_sym_GT_AMP] = ACTIONS(353), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(359), - [sym__special_characters] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(363), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(365), - [anon_sym_LF] = ACTIONS(345), - [anon_sym_AMP] = ACTIONS(347), + [sym_file_redirect] = STATE(180), + [sym_heredoc_redirect] = STATE(180), + [sym_heredoc_body] = STATE(179), + [sym_herestring_redirect] = STATE(180), + [aux_sym_redirected_statement_repeat1] = STATE(180), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(303), + [ts_builtin_sym_end] = ACTIONS(305), + [anon_sym_SEMI] = ACTIONS(307), + [anon_sym_PIPE] = ACTIONS(309), + [anon_sym_SEMI_SEMI] = ACTIONS(311), + [anon_sym_PIPE_AMP] = ACTIONS(313), + [anon_sym_AMP_AMP] = ACTIONS(315), + [anon_sym_PIPE_PIPE] = ACTIONS(315), + [anon_sym_LT] = ACTIONS(317), + [anon_sym_GT] = ACTIONS(317), + [anon_sym_GT_GT] = ACTIONS(319), + [anon_sym_AMP_GT] = ACTIONS(317), + [anon_sym_AMP_GT_GT] = ACTIONS(319), + [anon_sym_LT_AMP] = ACTIONS(319), + [anon_sym_GT_AMP] = ACTIONS(319), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(325), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(307), }, [29] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), + [sym_concatenation] = STATE(184), + [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_repeat2] = STATE(184), + [sym__simple_heredoc_body] = ACTIONS(327), + [sym__heredoc_body_beginning] = ACTIONS(327), + [sym_file_descriptor] = ACTIONS(327), [ts_builtin_sym_end] = ACTIONS(327), [anon_sym_SEMI] = ACTIONS(329), - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(333), - [anon_sym_PIPE_AMP] = ACTIONS(335), - [anon_sym_AMP_AMP] = ACTIONS(337), - [anon_sym_PIPE_PIPE] = ACTIONS(337), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(333), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_SEMI_SEMI] = ACTIONS(327), + [anon_sym_PIPE_AMP] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(327), + [anon_sym_EQ_TILDE] = ACTIONS(331), + [anon_sym_EQ_EQ] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(327), + [anon_sym_AMP_GT] = ACTIONS(329), + [anon_sym_AMP_GT_GT] = ACTIONS(327), + [anon_sym_LT_AMP] = ACTIONS(327), + [anon_sym_GT_AMP] = ACTIONS(327), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_LT_LT_DASH] = ACTIONS(327), + [anon_sym_LT_LT_LT] = ACTIONS(327), + [sym__special_characters] = ACTIONS(333), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(337), + [anon_sym_LF] = ACTIONS(327), [anon_sym_AMP] = ACTIONS(329), }, [30] = { - [anon_sym_EQ] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(65), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(180), + [sym_heredoc_redirect] = STATE(180), + [sym_heredoc_body] = STATE(179), + [sym_herestring_redirect] = STATE(180), + [aux_sym_redirected_statement_repeat1] = STATE(180), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [ts_builtin_sym_end] = ACTIONS(305), + [anon_sym_SEMI] = ACTIONS(307), + [anon_sym_PIPE] = ACTIONS(309), + [anon_sym_SEMI_SEMI] = ACTIONS(311), + [anon_sym_PIPE_AMP] = ACTIONS(313), + [anon_sym_AMP_AMP] = ACTIONS(315), + [anon_sym_PIPE_PIPE] = ACTIONS(315), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(325), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(311), + [anon_sym_AMP] = ACTIONS(307), }, [31] = { - [sym__simple_heredoc_body] = ACTIONS(291), - [sym__heredoc_body_beginning] = ACTIONS(291), - [sym_file_descriptor] = ACTIONS(291), - [ts_builtin_sym_end] = ACTIONS(291), - [anon_sym_SEMI] = ACTIONS(293), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_RPAREN] = ACTIONS(291), - [anon_sym_SEMI_SEMI] = ACTIONS(291), - [anon_sym_PIPE_AMP] = ACTIONS(291), - [anon_sym_AMP_AMP] = ACTIONS(291), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_EQ_TILDE] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_GT_GT] = ACTIONS(291), - [anon_sym_AMP_GT] = ACTIONS(293), - [anon_sym_AMP_GT_GT] = ACTIONS(291), - [anon_sym_LT_AMP] = ACTIONS(291), - [anon_sym_GT_AMP] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_LT_LT_DASH] = ACTIONS(291), - [anon_sym_LT_LT_LT] = ACTIONS(291), - [sym__special_characters] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(291), - [anon_sym_DOLLAR] = ACTIONS(293), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(291), - [anon_sym_LT_LPAREN] = ACTIONS(291), - [anon_sym_GT_LPAREN] = ACTIONS(291), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(293), - [anon_sym_LF] = ACTIONS(291), - [anon_sym_AMP] = ACTIONS(293), + [anon_sym_EQ] = ACTIONS(67), + [anon_sym_PLUS_EQ] = ACTIONS(67), + [sym_comment] = ACTIONS(57), }, [32] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(196), - [sym_c_style_for_statement] = STATE(196), - [sym_while_statement] = STATE(196), - [sym_if_statement] = STATE(196), - [sym_case_statement] = STATE(196), - [sym_function_definition] = STATE(196), - [sym_subshell] = STATE(196), - [sym_pipeline] = STATE(196), - [sym_list] = STATE(196), - [sym_negated_command] = STATE(196), - [sym_test_command] = STATE(196), - [sym_declaration_command] = STATE(196), - [sym_unset_command] = STATE(196), - [sym_command] = STATE(196), - [sym_command_name] = STATE(28), - [sym_variable_assignment] = STATE(197), - [sym_subscript] = STATE(30), - [sym_file_redirect] = STATE(33), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(20), - [sym_simple_expansion] = STATE(20), - [sym_string_expansion] = STATE(20), - [sym_expansion] = STATE(20), - [sym_command_substitution] = STATE(20), - [sym_process_substitution] = STATE(20), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(33), + [sym__simple_heredoc_body] = ACTIONS(275), + [sym__heredoc_body_beginning] = ACTIONS(275), + [sym_file_descriptor] = ACTIONS(275), + [ts_builtin_sym_end] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_RPAREN] = ACTIONS(275), + [anon_sym_SEMI_SEMI] = ACTIONS(275), + [anon_sym_PIPE_AMP] = ACTIONS(275), + [anon_sym_AMP_AMP] = ACTIONS(275), + [anon_sym_PIPE_PIPE] = ACTIONS(275), + [anon_sym_EQ_TILDE] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(277), + [anon_sym_GT_GT] = ACTIONS(275), + [anon_sym_AMP_GT] = ACTIONS(277), + [anon_sym_AMP_GT_GT] = ACTIONS(275), + [anon_sym_LT_AMP] = ACTIONS(275), + [anon_sym_GT_AMP] = ACTIONS(275), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(275), + [anon_sym_LT_LT_LT] = ACTIONS(275), + [sym__special_characters] = ACTIONS(275), + [anon_sym_DQUOTE] = ACTIONS(275), + [anon_sym_DOLLAR] = ACTIONS(277), + [sym_raw_string] = ACTIONS(275), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [anon_sym_BQUOTE] = ACTIONS(275), + [anon_sym_LT_LPAREN] = ACTIONS(275), + [anon_sym_GT_LPAREN] = ACTIONS(275), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(277), + [anon_sym_LF] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + }, + [33] = { + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(185), + [sym_for_statement] = STATE(185), + [sym_c_style_for_statement] = STATE(185), + [sym_while_statement] = STATE(185), + [sym_if_statement] = STATE(185), + [sym_case_statement] = STATE(185), + [sym_function_definition] = STATE(185), + [sym_compound_statement] = STATE(185), + [sym_subshell] = STATE(185), + [sym_pipeline] = STATE(185), + [sym_list] = STATE(185), + [sym_negated_command] = STATE(185), + [sym_test_command] = STATE(185), + [sym_declaration_command] = STATE(185), + [sym_unset_command] = STATE(185), + [sym_command] = STATE(185), + [sym_command_name] = STATE(29), + [sym_variable_assignment] = STATE(186), + [sym_subscript] = STATE(31), + [sym_file_redirect] = STATE(34), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(21), + [sym_simple_expansion] = STATE(21), + [sym_string_expansion] = STATE(21), + [sym_expansion] = STATE(21), + [sym_command_substitution] = STATE(21), + [sym_process_substitution] = STATE(21), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(34), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), @@ -9508,1824 +9369,2091 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(19), [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(29), - [anon_sym_declare] = ACTIONS(31), - [anon_sym_typeset] = ACTIONS(31), - [anon_sym_export] = ACTIONS(31), - [anon_sym_readonly] = ACTIONS(31), - [anon_sym_local] = ACTIONS(31), - [anon_sym_unset] = ACTIONS(33), - [anon_sym_unsetenv] = ACTIONS(33), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(45), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(57), - }, - [33] = { - [sym_command_name] = STATE(199), - [sym_variable_assignment] = STATE(200), - [sym_subscript] = STATE(99), - [sym_file_redirect] = STATE(200), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(20), - [sym_simple_expansion] = STATE(20), - [sym_string_expansion] = STATE(20), - [sym_expansion] = STATE(20), - [sym_command_substitution] = STATE(20), - [sym_process_substitution] = STATE(20), - [aux_sym_command_repeat1] = STATE(200), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(371), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(45), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(33), + [anon_sym_typeset] = ACTIONS(33), + [anon_sym_export] = ACTIONS(33), + [anon_sym_readonly] = ACTIONS(33), + [anon_sym_local] = ACTIONS(33), + [anon_sym_unset] = ACTIONS(35), + [anon_sym_unsetenv] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(41), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(47), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(59), }, [34] = { - [sym_concatenation] = STATE(203), - [sym_string] = STATE(202), - [sym_simple_expansion] = STATE(202), - [sym_string_expansion] = STATE(202), - [sym_expansion] = STATE(202), - [sym_command_substitution] = STATE(202), - [sym_process_substitution] = STATE(202), - [sym__special_characters] = ACTIONS(373), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR] = ACTIONS(251), - [sym_raw_string] = ACTIONS(375), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(255), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), - [anon_sym_BQUOTE] = ACTIONS(259), - [anon_sym_LT_LPAREN] = ACTIONS(261), - [anon_sym_GT_LPAREN] = ACTIONS(261), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(375), + [sym_command_name] = STATE(188), + [sym_variable_assignment] = STATE(189), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(189), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(21), + [sym_simple_expansion] = STATE(21), + [sym_string_expansion] = STATE(21), + [sym_expansion] = STATE(21), + [sym_command_substitution] = STATE(21), + [sym_process_substitution] = STATE(21), + [aux_sym_command_repeat1] = STATE(189), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(145), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(47), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(47), }, [35] = { - [sym_concatenation] = STATE(206), - [sym_string] = STATE(205), - [sym_simple_expansion] = STATE(205), - [sym_string_expansion] = STATE(205), - [sym_expansion] = STATE(205), - [sym_command_substitution] = STATE(205), - [sym_process_substitution] = STATE(205), - [sym__special_characters] = ACTIONS(377), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_DOLLAR] = ACTIONS(171), - [sym_raw_string] = ACTIONS(379), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), - [anon_sym_BQUOTE] = ACTIONS(179), - [anon_sym_LT_LPAREN] = ACTIONS(181), - [anon_sym_GT_LPAREN] = ACTIONS(181), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(379), + [sym_concatenation] = STATE(192), + [sym_string] = STATE(191), + [sym_simple_expansion] = STATE(191), + [sym_string_expansion] = STATE(191), + [sym_expansion] = STATE(191), + [sym_command_substitution] = STATE(191), + [sym_process_substitution] = STATE(191), + [sym__special_characters] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [sym_raw_string] = ACTIONS(347), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(239), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(347), }, [36] = { - [sym_concatenation] = STATE(207), + [sym_concatenation] = STATE(195), + [sym_string] = STATE(194), + [sym_simple_expansion] = STATE(194), + [sym_string_expansion] = STATE(194), + [sym_expansion] = STATE(194), + [sym_command_substitution] = STATE(194), + [sym_process_substitution] = STATE(194), + [sym__special_characters] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(155), + [sym_raw_string] = ACTIONS(351), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(163), + [anon_sym_LT_LPAREN] = ACTIONS(165), + [anon_sym_GT_LPAREN] = ACTIONS(165), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(351), + }, + [37] = { + [sym_concatenation] = STATE(196), + [sym_string] = STATE(201), + [sym_array] = STATE(196), + [sym_simple_expansion] = STATE(201), + [sym_string_expansion] = STATE(201), + [sym_expansion] = STATE(201), + [sym_command_substitution] = STATE(201), + [sym_process_substitution] = STATE(201), + [sym__empty_value] = ACTIONS(353), + [anon_sym_LPAREN] = ACTIONS(355), + [sym__special_characters] = ACTIONS(357), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_DOLLAR] = ACTIONS(361), + [sym_raw_string] = ACTIONS(363), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(365), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(369), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(363), + }, + [38] = { + [sym__expression] = STATE(217), + [sym_binary_expression] = STATE(217), + [sym_unary_expression] = STATE(217), + [sym_postfix_expression] = STATE(217), + [sym_parenthesized_expression] = STATE(217), + [sym_concatenation] = STATE(217), [sym_string] = STATE(212), - [sym_array] = STATE(207), [sym_simple_expansion] = STATE(212), [sym_string_expansion] = STATE(212), [sym_expansion] = STATE(212), [sym_command_substitution] = STATE(212), [sym_process_substitution] = STATE(212), - [sym__empty_value] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(383), - [sym__special_characters] = ACTIONS(385), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_DOLLAR] = ACTIONS(389), - [sym_raw_string] = ACTIONS(391), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(393), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(395), - [anon_sym_BQUOTE] = ACTIONS(397), - [anon_sym_LT_LPAREN] = ACTIONS(399), - [anon_sym_GT_LPAREN] = ACTIONS(399), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(391), - }, - [37] = { - [sym__expression] = STATE(228), - [sym_binary_expression] = STATE(228), - [sym_unary_expression] = STATE(228), - [sym_postfix_expression] = STATE(228), - [sym_parenthesized_expression] = STATE(228), - [sym_concatenation] = STATE(228), - [sym_string] = STATE(223), - [sym_simple_expansion] = STATE(223), - [sym_string_expansion] = STATE(223), - [sym_expansion] = STATE(223), - [sym_command_substitution] = STATE(223), - [sym_process_substitution] = STATE(223), - [anon_sym_SEMI] = ACTIONS(401), - [anon_sym_SEMI_SEMI] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_BANG] = ACTIONS(407), - [sym__special_characters] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [anon_sym_BQUOTE] = ACTIONS(421), - [anon_sym_LT_LPAREN] = ACTIONS(423), - [anon_sym_GT_LPAREN] = ACTIONS(423), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(425), - [sym_test_operator] = ACTIONS(427), - [anon_sym_LF] = ACTIONS(403), - [anon_sym_AMP] = ACTIONS(403), - }, - [38] = { - [anon_sym_in] = ACTIONS(429), - [anon_sym_SEMI] = ACTIONS(431), - [anon_sym_SEMI_SEMI] = ACTIONS(433), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(433), - [anon_sym_AMP] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(373), + [anon_sym_SEMI_SEMI] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(379), + [sym__special_characters] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(385), + [sym_raw_string] = ACTIONS(387), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(389), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(391), + [anon_sym_BQUOTE] = ACTIONS(393), + [anon_sym_LT_LPAREN] = ACTIONS(395), + [anon_sym_GT_LPAREN] = ACTIONS(395), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(397), + [sym_test_operator] = ACTIONS(399), + [anon_sym_LF] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(375), }, [39] = { - [sym__expression] = STATE(241), - [sym_binary_expression] = STATE(241), - [sym_unary_expression] = STATE(241), - [sym_postfix_expression] = STATE(241), - [sym_parenthesized_expression] = STATE(241), - [sym_concatenation] = STATE(241), - [sym_string] = STATE(236), - [sym_simple_expansion] = STATE(236), - [sym_string_expansion] = STATE(236), - [sym_expansion] = STATE(236), - [sym_command_substitution] = STATE(236), - [sym_process_substitution] = STATE(236), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [sym__special_characters] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(443), - [sym_raw_string] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), - [anon_sym_BQUOTE] = ACTIONS(451), - [anon_sym_LT_LPAREN] = ACTIONS(453), - [anon_sym_GT_LPAREN] = ACTIONS(453), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(455), - [sym_test_operator] = ACTIONS(457), + [anon_sym_in] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(403), + [anon_sym_SEMI_SEMI] = ACTIONS(405), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(405), + [anon_sym_AMP] = ACTIONS(405), }, [40] = { - [sym__expression] = STATE(242), - [sym_binary_expression] = STATE(242), - [sym_unary_expression] = STATE(242), - [sym_postfix_expression] = STATE(242), - [sym_parenthesized_expression] = STATE(242), - [sym_concatenation] = STATE(242), - [sym_string] = STATE(44), - [sym_simple_expansion] = STATE(44), - [sym_string_expansion] = STATE(44), - [sym_expansion] = STATE(44), - [sym_command_substitution] = STATE(44), - [sym_process_substitution] = STATE(44), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(73), - [sym__special_characters] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(79), - [sym_raw_string] = ACTIONS(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), - [anon_sym_BQUOTE] = ACTIONS(87), - [anon_sym_LT_LPAREN] = ACTIONS(89), - [anon_sym_GT_LPAREN] = ACTIONS(89), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(91), - [sym_test_operator] = ACTIONS(93), + [sym__expression] = STATE(230), + [sym_binary_expression] = STATE(230), + [sym_unary_expression] = STATE(230), + [sym_postfix_expression] = STATE(230), + [sym_parenthesized_expression] = STATE(230), + [sym_concatenation] = STATE(230), + [sym_string] = STATE(225), + [sym_simple_expansion] = STATE(225), + [sym_string_expansion] = STATE(225), + [sym_expansion] = STATE(225), + [sym_command_substitution] = STATE(225), + [sym_process_substitution] = STATE(225), + [anon_sym_LPAREN] = ACTIONS(407), + [anon_sym_BANG] = ACTIONS(409), + [sym__special_characters] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(415), + [sym_raw_string] = ACTIONS(417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(427), + [sym_test_operator] = ACTIONS(429), }, [41] = { - [aux_sym_concatenation_repeat1] = STATE(244), - [sym__concat] = ACTIONS(459), - [anon_sym_RPAREN_RPAREN] = ACTIONS(461), - [anon_sym_AMP_AMP] = ACTIONS(461), - [anon_sym_PIPE_PIPE] = ACTIONS(461), - [anon_sym_EQ_TILDE] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(463), - [anon_sym_PLUS_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_DASH_EQ] = ACTIONS(461), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(461), + [sym__expression] = STATE(231), + [sym_binary_expression] = STATE(231), + [sym_unary_expression] = STATE(231), + [sym_postfix_expression] = STATE(231), + [sym_parenthesized_expression] = STATE(231), + [sym_concatenation] = STATE(231), + [sym_string] = STATE(45), + [sym_simple_expansion] = STATE(45), + [sym_string_expansion] = STATE(45), + [sym_expansion] = STATE(45), + [sym_command_substitution] = STATE(45), + [sym_process_substitution] = STATE(45), + [anon_sym_LPAREN] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [sym__special_characters] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(81), + [sym_raw_string] = ACTIONS(83), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(85), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(89), + [anon_sym_LT_LPAREN] = ACTIONS(91), + [anon_sym_GT_LPAREN] = ACTIONS(91), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(93), + [sym_test_operator] = ACTIONS(95), }, [42] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(247), - [anon_sym_DQUOTE] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(467), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [aux_sym_concatenation_repeat1] = STATE(233), + [sym__concat] = ACTIONS(431), + [anon_sym_RPAREN_RPAREN] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(433), + [anon_sym_PIPE_PIPE] = ACTIONS(433), + [anon_sym_EQ_TILDE] = ACTIONS(433), + [anon_sym_EQ_EQ] = ACTIONS(433), + [anon_sym_EQ] = ACTIONS(435), + [anon_sym_PLUS_EQ] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_BANG_EQ] = ACTIONS(433), + [anon_sym_PLUS] = ACTIONS(435), + [anon_sym_DASH] = ACTIONS(435), + [anon_sym_DASH_EQ] = ACTIONS(433), + [anon_sym_LT_EQ] = ACTIONS(433), + [anon_sym_GT_EQ] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_DASH_DASH] = ACTIONS(433), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(433), }, [43] = { - [sym_string] = STATE(249), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(469), - [sym_raw_string] = ACTIONS(471), - [anon_sym_POUND] = ACTIONS(469), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(473), - [anon_sym_STAR] = ACTIONS(475), - [anon_sym_AT] = ACTIONS(475), - [anon_sym_QMARK] = ACTIONS(475), - [anon_sym_0] = ACTIONS(473), - [anon_sym__] = ACTIONS(473), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(236), + [anon_sym_DQUOTE] = ACTIONS(437), + [anon_sym_DOLLAR] = ACTIONS(439), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [44] = { - [aux_sym_concatenation_repeat1] = STATE(244), - [sym__concat] = ACTIONS(459), - [anon_sym_RPAREN_RPAREN] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(477), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_EQ_TILDE] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(477), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_LT] = ACTIONS(479), - [anon_sym_GT] = ACTIONS(479), - [anon_sym_BANG_EQ] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(477), - [anon_sym_PLUS_PLUS] = ACTIONS(477), - [anon_sym_DASH_DASH] = ACTIONS(477), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(477), + [sym_string] = STATE(238), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(441), + [sym_raw_string] = ACTIONS(443), + [anon_sym_POUND] = ACTIONS(441), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(447), + [anon_sym_QMARK] = ACTIONS(447), + [anon_sym_0] = ACTIONS(445), + [anon_sym__] = ACTIONS(445), }, [45] = { - [sym_subscript] = STATE(254), - [sym_variable_name] = ACTIONS(481), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_DOLLAR] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(483), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(487), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_AT] = ACTIONS(489), - [anon_sym_QMARK] = ACTIONS(489), - [anon_sym_0] = ACTIONS(487), - [anon_sym__] = ACTIONS(487), + [aux_sym_concatenation_repeat1] = STATE(233), + [sym__concat] = ACTIONS(431), + [anon_sym_RPAREN_RPAREN] = ACTIONS(449), + [anon_sym_AMP_AMP] = ACTIONS(449), + [anon_sym_PIPE_PIPE] = ACTIONS(449), + [anon_sym_EQ_TILDE] = ACTIONS(449), + [anon_sym_EQ_EQ] = ACTIONS(449), + [anon_sym_EQ] = ACTIONS(451), + [anon_sym_PLUS_EQ] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_BANG_EQ] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DASH_EQ] = ACTIONS(449), + [anon_sym_LT_EQ] = ACTIONS(449), + [anon_sym_GT_EQ] = ACTIONS(449), + [anon_sym_PLUS_PLUS] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(449), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(449), }, [46] = { - [sym__terminated_statement] = STATE(257), - [sym_for_statement] = STATE(255), - [sym_c_style_for_statement] = STATE(255), - [sym_while_statement] = STATE(255), - [sym_if_statement] = STATE(255), - [sym_case_statement] = STATE(255), - [sym_function_definition] = STATE(255), - [sym_subshell] = STATE(255), - [sym_pipeline] = STATE(255), - [sym_list] = STATE(255), - [sym_negated_command] = STATE(255), - [sym_test_command] = STATE(255), - [sym_declaration_command] = STATE(255), - [sym_unset_command] = STATE(255), - [sym_command] = STATE(255), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(256), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(257), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_subscript] = STATE(243), + [sym_variable_name] = ACTIONS(453), + [anon_sym_BANG] = ACTIONS(455), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_DOLLAR] = ACTIONS(457), + [anon_sym_POUND] = ACTIONS(455), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(461), + [anon_sym_0] = ACTIONS(459), + [anon_sym__] = ACTIONS(459), }, [47] = { - [sym__terminated_statement] = STATE(260), - [sym_for_statement] = STATE(258), - [sym_c_style_for_statement] = STATE(258), - [sym_while_statement] = STATE(258), - [sym_if_statement] = STATE(258), - [sym_case_statement] = STATE(258), - [sym_function_definition] = STATE(258), - [sym_subshell] = STATE(258), - [sym_pipeline] = STATE(258), - [sym_list] = STATE(258), - [sym_negated_command] = STATE(258), - [sym_test_command] = STATE(258), - [sym_declaration_command] = STATE(258), - [sym_unset_command] = STATE(258), - [sym_command] = STATE(258), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(259), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(260), - [aux_sym_command_repeat1] = STATE(176), + [sym__terminated_statement] = STATE(246), + [sym_redirected_statement] = STATE(244), + [sym_for_statement] = STATE(244), + [sym_c_style_for_statement] = STATE(244), + [sym_while_statement] = STATE(244), + [sym_if_statement] = STATE(244), + [sym_case_statement] = STATE(244), + [sym_function_definition] = STATE(244), + [sym_compound_statement] = STATE(244), + [sym_subshell] = STATE(244), + [sym_pipeline] = STATE(244), + [sym_list] = STATE(244), + [sym_negated_command] = STATE(244), + [sym_test_command] = STATE(244), + [sym_declaration_command] = STATE(244), + [sym_unset_command] = STATE(244), + [sym_command] = STATE(244), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(245), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(246), + [aux_sym_command_repeat1] = STATE(87), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), + [sym_variable_name] = ACTIONS(129), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [48] = { - [sym__terminated_statement] = STATE(263), - [sym_for_statement] = STATE(261), - [sym_c_style_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_negated_command] = STATE(261), - [sym_test_command] = STATE(261), - [sym_declaration_command] = STATE(261), - [sym_unset_command] = STATE(261), - [sym_command] = STATE(261), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(262), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(263), - [aux_sym_command_repeat1] = STATE(96), + [sym__terminated_statement] = STATE(249), + [sym_redirected_statement] = STATE(247), + [sym_for_statement] = STATE(247), + [sym_c_style_for_statement] = STATE(247), + [sym_while_statement] = STATE(247), + [sym_if_statement] = STATE(247), + [sym_case_statement] = STATE(247), + [sym_function_definition] = STATE(247), + [sym_compound_statement] = STATE(247), + [sym_subshell] = STATE(247), + [sym_pipeline] = STATE(247), + [sym_list] = STATE(247), + [sym_negated_command] = STATE(247), + [sym_test_command] = STATE(247), + [sym_declaration_command] = STATE(247), + [sym_unset_command] = STATE(247), + [sym_command] = STATE(247), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(248), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(249), + [aux_sym_command_repeat1] = STATE(165), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), + [sym_variable_name] = ACTIONS(97), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [49] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(491), - [anon_sym_AMP_AMP] = ACTIONS(493), - [anon_sym_PIPE_PIPE] = ACTIONS(493), - [anon_sym_EQ_TILDE] = ACTIONS(495), - [anon_sym_EQ_EQ] = ACTIONS(495), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(493), - [anon_sym_LT] = ACTIONS(497), - [anon_sym_GT] = ACTIONS(497), - [anon_sym_BANG_EQ] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(497), - [anon_sym_DASH] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(493), - [anon_sym_LT_EQ] = ACTIONS(493), - [anon_sym_GT_EQ] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(493), + [sym__terminated_statement] = STATE(252), + [sym_redirected_statement] = STATE(250), + [sym_for_statement] = STATE(250), + [sym_c_style_for_statement] = STATE(250), + [sym_while_statement] = STATE(250), + [sym_if_statement] = STATE(250), + [sym_case_statement] = STATE(250), + [sym_function_definition] = STATE(250), + [sym_compound_statement] = STATE(250), + [sym_subshell] = STATE(250), + [sym_pipeline] = STATE(250), + [sym_list] = STATE(250), + [sym_negated_command] = STATE(250), + [sym_test_command] = STATE(250), + [sym_declaration_command] = STATE(250), + [sym_unset_command] = STATE(250), + [sym_command] = STATE(250), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(251), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(252), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [50] = { - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [sym_comment] = ACTIONS(55), + [anon_sym_RPAREN_RPAREN] = ACTIONS(463), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(465), + [anon_sym_EQ_TILDE] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(467), + [anon_sym_EQ] = ACTIONS(469), + [anon_sym_PLUS_EQ] = ACTIONS(465), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(465), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_EQ] = ACTIONS(465), + [anon_sym_LT_EQ] = ACTIONS(465), + [anon_sym_GT_EQ] = ACTIONS(465), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(465), }, [51] = { - [sym__expression] = STATE(269), - [sym_binary_expression] = STATE(269), - [sym_unary_expression] = STATE(269), - [sym_postfix_expression] = STATE(269), - [sym_parenthesized_expression] = STATE(269), - [sym_concatenation] = STATE(269), - [sym_string] = STATE(44), - [sym_simple_expansion] = STATE(44), - [sym_string_expansion] = STATE(44), - [sym_expansion] = STATE(44), - [sym_command_substitution] = STATE(44), - [sym_process_substitution] = STATE(44), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(73), - [sym__special_characters] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(79), - [sym_raw_string] = ACTIONS(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), - [anon_sym_BQUOTE] = ACTIONS(87), - [anon_sym_LT_LPAREN] = ACTIONS(89), - [anon_sym_GT_LPAREN] = ACTIONS(89), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(91), - [sym_test_operator] = ACTIONS(93), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(473), + [anon_sym_PLUS_EQ] = ACTIONS(473), + [sym_comment] = ACTIONS(57), }, [52] = { - [sym__terminated_statement] = STATE(270), - [sym_for_statement] = STATE(63), - [sym_c_style_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_if_statement] = STATE(63), - [sym_case_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_subshell] = STATE(63), - [sym_pipeline] = STATE(63), - [sym_list] = STATE(63), - [sym_negated_command] = STATE(63), - [sym_test_command] = STATE(63), - [sym_declaration_command] = STATE(63), - [sym_unset_command] = STATE(63), - [sym_command] = STATE(63), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(65), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym_command_repeat1] = STATE(67), + [sym_subshell] = STATE(93), + [sym_test_command] = STATE(93), + [sym_command] = STATE(93), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(63), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym_command_repeat1] = STATE(63), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(101), + [sym_variable_name] = ACTIONS(145), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(107), }, [53] = { - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(503), + [sym_variable_assignment] = STATE(262), + [sym_subscript] = STATE(261), + [sym_concatenation] = STATE(262), + [sym_string] = STATE(260), + [sym_simple_expansion] = STATE(260), + [sym_string_expansion] = STATE(260), + [sym_expansion] = STATE(260), + [sym_command_substitution] = STATE(260), + [sym_process_substitution] = STATE(260), + [aux_sym_declaration_command_repeat1] = STATE(262), + [sym__simple_heredoc_body] = ACTIONS(181), + [sym__heredoc_body_beginning] = ACTIONS(181), + [sym_file_descriptor] = ACTIONS(181), + [sym_variable_name] = ACTIONS(475), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(181), + [anon_sym_PIPE_AMP] = ACTIONS(181), + [anon_sym_AMP_AMP] = ACTIONS(181), + [anon_sym_PIPE_PIPE] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(181), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(181), + [anon_sym_LT_AMP] = ACTIONS(181), + [anon_sym_GT_AMP] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(181), + [anon_sym_LT_LT_LT] = ACTIONS(181), + [sym__special_characters] = ACTIONS(477), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(479), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(199), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(481), + [sym_word] = ACTIONS(483), + [anon_sym_LF] = ACTIONS(181), + [anon_sym_AMP] = ACTIONS(185), }, [54] = { - [sym_subshell] = STATE(98), - [sym_test_command] = STATE(98), - [sym_command] = STATE(98), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(67), - [sym_subscript] = STATE(99), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(161), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(115), + [sym_concatenation] = STATE(265), + [sym_string] = STATE(264), + [sym_simple_expansion] = STATE(264), + [sym_string_expansion] = STATE(264), + [sym_expansion] = STATE(264), + [sym_command_substitution] = STATE(264), + [sym_process_substitution] = STATE(264), + [aux_sym_unset_command_repeat1] = STATE(265), + [sym__simple_heredoc_body] = ACTIONS(207), + [sym__heredoc_body_beginning] = ACTIONS(207), + [sym_file_descriptor] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(209), + [anon_sym_PIPE] = ACTIONS(209), + [anon_sym_SEMI_SEMI] = ACTIONS(207), + [anon_sym_PIPE_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_GT_GT] = ACTIONS(207), + [anon_sym_AMP_GT] = ACTIONS(209), + [anon_sym_AMP_GT_GT] = ACTIONS(207), + [anon_sym_LT_AMP] = ACTIONS(207), + [anon_sym_GT_AMP] = ACTIONS(207), + [anon_sym_LT_LT] = ACTIONS(209), + [anon_sym_LT_LT_DASH] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [sym__special_characters] = ACTIONS(485), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(215), + [sym_raw_string] = ACTIONS(487), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), + [anon_sym_BQUOTE] = ACTIONS(223), + [anon_sym_LT_LPAREN] = ACTIONS(225), + [anon_sym_GT_LPAREN] = ACTIONS(225), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(489), + [sym_word] = ACTIONS(491), + [anon_sym_LF] = ACTIONS(207), + [anon_sym_AMP] = ACTIONS(209), }, [55] = { - [sym__expression] = STATE(272), - [sym_binary_expression] = STATE(272), - [sym_unary_expression] = STATE(272), - [sym_postfix_expression] = STATE(272), - [sym_parenthesized_expression] = STATE(272), - [sym_concatenation] = STATE(272), - [sym_string] = STATE(105), - [sym_simple_expansion] = STATE(105), - [sym_string_expansion] = STATE(105), - [sym_expansion] = STATE(105), - [sym_command_substitution] = STATE(105), - [sym_process_substitution] = STATE(105), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [sym__special_characters] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_DOLLAR] = ACTIONS(171), - [sym_raw_string] = ACTIONS(173), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), - [anon_sym_BQUOTE] = ACTIONS(179), - [anon_sym_LT_LPAREN] = ACTIONS(181), - [anon_sym_GT_LPAREN] = ACTIONS(181), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(183), - [sym_test_operator] = ACTIONS(185), + [aux_sym_concatenation_repeat1] = STATE(266), + [sym__simple_heredoc_body] = ACTIONS(247), + [sym__heredoc_body_beginning] = ACTIONS(247), + [sym_file_descriptor] = ACTIONS(247), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(251), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_SEMI_SEMI] = ACTIONS(247), + [anon_sym_PIPE_AMP] = ACTIONS(247), + [anon_sym_AMP_AMP] = ACTIONS(247), + [anon_sym_PIPE_PIPE] = ACTIONS(247), + [anon_sym_EQ_TILDE] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(251), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(247), + [anon_sym_AMP_GT] = ACTIONS(251), + [anon_sym_AMP_GT_GT] = ACTIONS(247), + [anon_sym_LT_AMP] = ACTIONS(247), + [anon_sym_GT_AMP] = ACTIONS(247), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_LT_LT_DASH] = ACTIONS(247), + [anon_sym_LT_LT_LT] = ACTIONS(247), + [sym__special_characters] = ACTIONS(247), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(247), + [anon_sym_BQUOTE] = ACTIONS(247), + [anon_sym_LT_LPAREN] = ACTIONS(247), + [anon_sym_GT_LPAREN] = ACTIONS(247), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(247), + [anon_sym_AMP] = ACTIONS(251), }, [56] = { - [sym__expression] = STATE(273), - [sym_binary_expression] = STATE(273), - [sym_unary_expression] = STATE(273), - [sym_postfix_expression] = STATE(273), - [sym_parenthesized_expression] = STATE(273), - [sym_concatenation] = STATE(273), - [sym_string] = STATE(113), - [sym_simple_expansion] = STATE(113), - [sym_string_expansion] = STATE(113), - [sym_expansion] = STATE(113), - [sym_command_substitution] = STATE(113), - [sym_process_substitution] = STATE(113), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(187), - [sym__special_characters] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(79), - [sym_raw_string] = ACTIONS(191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), - [anon_sym_BQUOTE] = ACTIONS(87), - [anon_sym_LT_LPAREN] = ACTIONS(89), - [anon_sym_GT_LPAREN] = ACTIONS(89), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(193), - [sym_test_operator] = ACTIONS(195), + [aux_sym_concatenation_repeat1] = STATE(266), + [sym__simple_heredoc_body] = ACTIONS(275), + [sym__heredoc_body_beginning] = ACTIONS(275), + [sym_file_descriptor] = ACTIONS(275), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_SEMI_SEMI] = ACTIONS(275), + [anon_sym_PIPE_AMP] = ACTIONS(275), + [anon_sym_AMP_AMP] = ACTIONS(275), + [anon_sym_PIPE_PIPE] = ACTIONS(275), + [anon_sym_EQ_TILDE] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(277), + [anon_sym_GT_GT] = ACTIONS(275), + [anon_sym_AMP_GT] = ACTIONS(277), + [anon_sym_AMP_GT_GT] = ACTIONS(275), + [anon_sym_LT_AMP] = ACTIONS(275), + [anon_sym_GT_AMP] = ACTIONS(275), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(275), + [anon_sym_LT_LT_LT] = ACTIONS(275), + [sym__special_characters] = ACTIONS(275), + [anon_sym_DQUOTE] = ACTIONS(275), + [anon_sym_DOLLAR] = ACTIONS(277), + [sym_raw_string] = ACTIONS(275), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [anon_sym_BQUOTE] = ACTIONS(275), + [anon_sym_LT_LPAREN] = ACTIONS(275), + [anon_sym_GT_LPAREN] = ACTIONS(275), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(277), + [anon_sym_LF] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), }, [57] = { - [sym_variable_assignment] = STATE(278), - [sym_subscript] = STATE(277), - [sym_concatenation] = STATE(278), - [sym_string] = STATE(276), - [sym_simple_expansion] = STATE(276), - [sym_string_expansion] = STATE(276), - [sym_expansion] = STATE(276), - [sym_command_substitution] = STATE(276), - [sym_process_substitution] = STATE(276), - [aux_sym_declaration_command_repeat1] = STATE(278), - [sym_variable_name] = ACTIONS(505), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_PIPE] = ACTIONS(201), - [anon_sym_SEMI_SEMI] = ACTIONS(199), - [anon_sym_PIPE_AMP] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [sym__special_characters] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR] = ACTIONS(207), - [sym_raw_string] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_BQUOTE] = ACTIONS(215), - [anon_sym_LT_LPAREN] = ACTIONS(217), - [anon_sym_GT_LPAREN] = ACTIONS(217), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(511), - [sym_word] = ACTIONS(513), - [anon_sym_LF] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(201), + [aux_sym_concatenation_repeat1] = STATE(266), + [sym__simple_heredoc_body] = ACTIONS(275), + [sym__heredoc_body_beginning] = ACTIONS(275), + [sym_file_descriptor] = ACTIONS(275), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_SEMI_SEMI] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym_PIPE_AMP] = ACTIONS(275), + [anon_sym_AMP_AMP] = ACTIONS(275), + [anon_sym_PIPE_PIPE] = ACTIONS(275), + [anon_sym_EQ_TILDE] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(277), + [anon_sym_GT_GT] = ACTIONS(275), + [anon_sym_AMP_GT] = ACTIONS(277), + [anon_sym_AMP_GT_GT] = ACTIONS(275), + [anon_sym_LT_AMP] = ACTIONS(275), + [anon_sym_GT_AMP] = ACTIONS(275), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(275), + [anon_sym_LT_LT_LT] = ACTIONS(275), + [sym__special_characters] = ACTIONS(275), + [anon_sym_DQUOTE] = ACTIONS(275), + [anon_sym_DOLLAR] = ACTIONS(277), + [sym_raw_string] = ACTIONS(275), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [anon_sym_BQUOTE] = ACTIONS(275), + [anon_sym_LT_LPAREN] = ACTIONS(275), + [anon_sym_GT_LPAREN] = ACTIONS(275), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(277), + [anon_sym_LF] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), }, [58] = { - [sym_concatenation] = STATE(281), - [sym_string] = STATE(280), - [sym_simple_expansion] = STATE(280), - [sym_string_expansion] = STATE(280), - [sym_expansion] = STATE(280), - [sym_command_substitution] = STATE(280), - [sym_process_substitution] = STATE(280), - [aux_sym_unset_command_repeat1] = STATE(281), - [anon_sym_SEMI] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_SEMI_SEMI] = ACTIONS(223), - [anon_sym_PIPE_AMP] = ACTIONS(223), - [anon_sym_AMP_AMP] = ACTIONS(223), - [anon_sym_PIPE_PIPE] = ACTIONS(223), - [sym__special_characters] = ACTIONS(515), - [anon_sym_DQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [sym_raw_string] = ACTIONS(517), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [anon_sym_LT_LPAREN] = ACTIONS(241), - [anon_sym_GT_LPAREN] = ACTIONS(241), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(519), - [sym_word] = ACTIONS(521), - [anon_sym_LF] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(225), + [sym_do_group] = STATE(268), + [anon_sym_do] = ACTIONS(493), + [sym_comment] = ACTIONS(57), }, [59] = { - [aux_sym_concatenation_repeat1] = STATE(282), - [sym__simple_heredoc_body] = ACTIONS(263), - [sym__heredoc_body_beginning] = ACTIONS(263), - [sym_file_descriptor] = ACTIONS(263), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(267), - [anon_sym_PIPE] = ACTIONS(267), - [anon_sym_SEMI_SEMI] = ACTIONS(263), - [anon_sym_PIPE_AMP] = ACTIONS(263), - [anon_sym_AMP_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(263), - [anon_sym_EQ_TILDE] = ACTIONS(267), - [anon_sym_EQ_EQ] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_GT_GT] = ACTIONS(263), - [anon_sym_AMP_GT] = ACTIONS(267), - [anon_sym_AMP_GT_GT] = ACTIONS(263), - [anon_sym_LT_AMP] = ACTIONS(263), - [anon_sym_GT_AMP] = ACTIONS(263), - [anon_sym_LT_LT] = ACTIONS(267), - [anon_sym_LT_LT_DASH] = ACTIONS(263), - [anon_sym_LT_LT_LT] = ACTIONS(263), - [sym__special_characters] = ACTIONS(263), - [anon_sym_DQUOTE] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(267), - [sym_raw_string] = ACTIONS(263), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(263), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(263), - [anon_sym_BQUOTE] = ACTIONS(263), - [anon_sym_LT_LPAREN] = ACTIONS(263), - [anon_sym_GT_LPAREN] = ACTIONS(263), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(267), - [anon_sym_LF] = ACTIONS(263), - [anon_sym_AMP] = ACTIONS(267), + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_heredoc_body] = STATE(275), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(497), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(501), + [anon_sym_PIPE_AMP] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_AMP_GT] = ACTIONS(507), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(511), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(497), }, [60] = { - [aux_sym_concatenation_repeat1] = STATE(282), - [sym__simple_heredoc_body] = ACTIONS(291), - [sym__heredoc_body_beginning] = ACTIONS(291), - [sym_file_descriptor] = ACTIONS(291), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(293), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_SEMI_SEMI] = ACTIONS(291), - [anon_sym_PIPE_AMP] = ACTIONS(291), - [anon_sym_AMP_AMP] = ACTIONS(291), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_EQ_TILDE] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_GT_GT] = ACTIONS(291), - [anon_sym_AMP_GT] = ACTIONS(293), - [anon_sym_AMP_GT_GT] = ACTIONS(291), - [anon_sym_LT_AMP] = ACTIONS(291), - [anon_sym_GT_AMP] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_LT_LT_DASH] = ACTIONS(291), - [anon_sym_LT_LT_LT] = ACTIONS(291), - [sym__special_characters] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(291), - [anon_sym_DOLLAR] = ACTIONS(293), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(291), - [anon_sym_LT_LPAREN] = ACTIONS(291), - [anon_sym_GT_LPAREN] = ACTIONS(291), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(293), - [anon_sym_LF] = ACTIONS(291), - [anon_sym_AMP] = ACTIONS(293), + [sym_concatenation] = STATE(280), + [sym_string] = STATE(279), + [sym_simple_expansion] = STATE(279), + [sym_string_expansion] = STATE(279), + [sym_expansion] = STATE(279), + [sym_command_substitution] = STATE(279), + [sym_process_substitution] = STATE(279), + [aux_sym_command_repeat2] = STATE(280), + [sym__simple_heredoc_body] = ACTIONS(327), + [sym__heredoc_body_beginning] = ACTIONS(327), + [sym_file_descriptor] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_SEMI_SEMI] = ACTIONS(327), + [anon_sym_PIPE_AMP] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(327), + [anon_sym_EQ_TILDE] = ACTIONS(513), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(327), + [anon_sym_AMP_GT] = ACTIONS(329), + [anon_sym_AMP_GT_GT] = ACTIONS(327), + [anon_sym_LT_AMP] = ACTIONS(327), + [anon_sym_GT_AMP] = ACTIONS(327), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_LT_LT_DASH] = ACTIONS(327), + [anon_sym_LT_LT_LT] = ACTIONS(327), + [sym__special_characters] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(519), + [anon_sym_LF] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(329), }, [61] = { - [aux_sym_concatenation_repeat1] = STATE(282), - [sym__simple_heredoc_body] = ACTIONS(291), - [sym__heredoc_body_beginning] = ACTIONS(291), - [sym_file_descriptor] = ACTIONS(291), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(293), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_SEMI_SEMI] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(523), - [anon_sym_PIPE_AMP] = ACTIONS(291), - [anon_sym_AMP_AMP] = ACTIONS(291), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_EQ_TILDE] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_GT_GT] = ACTIONS(291), - [anon_sym_AMP_GT] = ACTIONS(293), - [anon_sym_AMP_GT_GT] = ACTIONS(291), - [anon_sym_LT_AMP] = ACTIONS(291), - [anon_sym_GT_AMP] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_LT_LT_DASH] = ACTIONS(291), - [anon_sym_LT_LT_LT] = ACTIONS(291), - [sym__special_characters] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(291), - [anon_sym_DOLLAR] = ACTIONS(293), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(291), - [anon_sym_LT_LPAREN] = ACTIONS(291), - [anon_sym_GT_LPAREN] = ACTIONS(291), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(293), - [anon_sym_LF] = ACTIONS(291), - [anon_sym_AMP] = ACTIONS(293), + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_heredoc_body] = STATE(275), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(497), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(501), + [anon_sym_PIPE_AMP] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(511), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(497), }, [62] = { - [sym_do_group] = STATE(285), - [anon_sym_do] = ACTIONS(525), - [sym_comment] = ACTIONS(55), + [anon_sym_EQ] = ACTIONS(473), + [anon_sym_PLUS_EQ] = ACTIONS(473), + [sym_comment] = ACTIONS(57), }, [63] = { - [anon_sym_SEMI] = ACTIONS(527), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_SEMI_SEMI] = ACTIONS(531), - [anon_sym_PIPE_AMP] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(535), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(527), + [sym_command_name] = STATE(281), + [sym_variable_assignment] = STATE(189), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(189), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym_command_repeat1] = STATE(189), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(145), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(521), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(107), }, [64] = { - [sym_file_redirect] = STATE(295), - [sym_heredoc_redirect] = STATE(295), - [sym_heredoc_body] = STATE(193), - [sym_herestring_redirect] = STATE(295), - [sym_concatenation] = STATE(296), - [sym_string] = STATE(294), - [sym_simple_expansion] = STATE(294), - [sym_string_expansion] = STATE(294), - [sym_expansion] = STATE(294), - [sym_command_substitution] = STATE(294), - [sym_process_substitution] = STATE(294), - [aux_sym_while_statement_repeat1] = STATE(295), - [aux_sym_command_repeat2] = STATE(296), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(537), - [anon_sym_SEMI] = ACTIONS(347), - [anon_sym_PIPE] = ACTIONS(347), - [anon_sym_SEMI_SEMI] = ACTIONS(345), - [anon_sym_PIPE_AMP] = ACTIONS(345), - [anon_sym_AMP_AMP] = ACTIONS(345), - [anon_sym_PIPE_PIPE] = ACTIONS(345), - [anon_sym_EQ_TILDE] = ACTIONS(539), - [anon_sym_EQ_EQ] = ACTIONS(539), - [anon_sym_LT] = ACTIONS(541), - [anon_sym_GT] = ACTIONS(541), - [anon_sym_GT_GT] = ACTIONS(543), - [anon_sym_AMP_GT] = ACTIONS(541), - [anon_sym_AMP_GT_GT] = ACTIONS(543), - [anon_sym_LT_AMP] = ACTIONS(543), - [anon_sym_GT_AMP] = ACTIONS(543), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(545), - [sym__special_characters] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(549), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(551), - [anon_sym_LF] = ACTIONS(345), - [anon_sym_AMP] = ACTIONS(347), + [anon_sym_then] = ACTIONS(523), + [sym_comment] = ACTIONS(57), }, [65] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(527), - [anon_sym_PIPE] = ACTIONS(529), + [aux_sym_concatenation_repeat1] = STATE(286), + [sym__concat] = ACTIONS(525), + [anon_sym_in] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(529), [anon_sym_SEMI_SEMI] = ACTIONS(531), - [anon_sym_PIPE_AMP] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), + [sym_comment] = ACTIONS(57), [anon_sym_LF] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(527), + [anon_sym_AMP] = ACTIONS(531), }, [66] = { - [anon_sym_EQ] = ACTIONS(501), - [anon_sym_PLUS_EQ] = ACTIONS(501), - [sym_comment] = ACTIONS(55), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(289), + [anon_sym_DQUOTE] = ACTIONS(533), + [anon_sym_DOLLAR] = ACTIONS(535), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [67] = { - [sym_command_name] = STATE(297), - [sym_variable_assignment] = STATE(200), - [sym_subscript] = STATE(99), - [sym_file_redirect] = STATE(200), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym_command_repeat1] = STATE(200), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(553), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(115), + [sym_string] = STATE(291), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_DQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(537), + [sym_raw_string] = ACTIONS(539), + [anon_sym_POUND] = ACTIONS(537), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_AT] = ACTIONS(543), + [anon_sym_QMARK] = ACTIONS(543), + [anon_sym_0] = ACTIONS(541), + [anon_sym__] = ACTIONS(541), }, [68] = { - [anon_sym_then] = ACTIONS(555), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(286), + [sym__concat] = ACTIONS(525), + [anon_sym_in] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(547), + [anon_sym_SEMI_SEMI] = ACTIONS(549), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(549), }, [69] = { - [aux_sym_concatenation_repeat1] = STATE(302), - [sym__concat] = ACTIONS(557), - [anon_sym_in] = ACTIONS(559), - [anon_sym_SEMI] = ACTIONS(561), - [anon_sym_SEMI_SEMI] = ACTIONS(563), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(563), + [sym_subscript] = STATE(298), + [sym_variable_name] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(555), + [anon_sym_DOLLAR] = ACTIONS(555), + [anon_sym_POUND] = ACTIONS(553), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(557), + [anon_sym_STAR] = ACTIONS(559), + [anon_sym_AT] = ACTIONS(559), + [anon_sym_QMARK] = ACTIONS(559), + [anon_sym_0] = ACTIONS(557), + [anon_sym__] = ACTIONS(557), }, [70] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(305), - [anon_sym_DQUOTE] = ACTIONS(565), - [anon_sym_DOLLAR] = ACTIONS(567), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym__terminated_statement] = STATE(301), + [sym_redirected_statement] = STATE(299), + [sym_for_statement] = STATE(299), + [sym_c_style_for_statement] = STATE(299), + [sym_while_statement] = STATE(299), + [sym_if_statement] = STATE(299), + [sym_case_statement] = STATE(299), + [sym_function_definition] = STATE(299), + [sym_compound_statement] = STATE(299), + [sym_subshell] = STATE(299), + [sym_pipeline] = STATE(299), + [sym_list] = STATE(299), + [sym_negated_command] = STATE(299), + [sym_test_command] = STATE(299), + [sym_declaration_command] = STATE(299), + [sym_unset_command] = STATE(299), + [sym_command] = STATE(299), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(300), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(301), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [71] = { - [sym_string] = STATE(307), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(569), - [sym_raw_string] = ACTIONS(571), - [anon_sym_POUND] = ACTIONS(569), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(575), - [anon_sym_AT] = ACTIONS(575), - [anon_sym_QMARK] = ACTIONS(575), - [anon_sym_0] = ACTIONS(573), - [anon_sym__] = ACTIONS(573), + [sym__terminated_statement] = STATE(304), + [sym_redirected_statement] = STATE(302), + [sym_for_statement] = STATE(302), + [sym_c_style_for_statement] = STATE(302), + [sym_while_statement] = STATE(302), + [sym_if_statement] = STATE(302), + [sym_case_statement] = STATE(302), + [sym_function_definition] = STATE(302), + [sym_compound_statement] = STATE(302), + [sym_subshell] = STATE(302), + [sym_pipeline] = STATE(302), + [sym_list] = STATE(302), + [sym_negated_command] = STATE(302), + [sym_test_command] = STATE(302), + [sym_declaration_command] = STATE(302), + [sym_unset_command] = STATE(302), + [sym_command] = STATE(302), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(303), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(304), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [72] = { - [aux_sym_concatenation_repeat1] = STATE(302), - [sym__concat] = ACTIONS(557), - [anon_sym_in] = ACTIONS(577), - [anon_sym_SEMI] = ACTIONS(579), - [anon_sym_SEMI_SEMI] = ACTIONS(581), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(581), - [anon_sym_AMP] = ACTIONS(581), + [sym__terminated_statement] = STATE(307), + [sym_redirected_statement] = STATE(305), + [sym_for_statement] = STATE(305), + [sym_c_style_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_compound_statement] = STATE(305), + [sym_subshell] = STATE(305), + [sym_pipeline] = STATE(305), + [sym_list] = STATE(305), + [sym_negated_command] = STATE(305), + [sym_test_command] = STATE(305), + [sym_declaration_command] = STATE(305), + [sym_unset_command] = STATE(305), + [sym_command] = STATE(305), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(306), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(307), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [73] = { - [sym_subscript] = STATE(314), - [sym_variable_name] = ACTIONS(583), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(587), - [anon_sym_POUND] = ACTIONS(585), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(591), - [anon_sym_0] = ACTIONS(589), - [anon_sym__] = ACTIONS(589), + [anon_sym_in] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(547), + [anon_sym_SEMI_SEMI] = ACTIONS(549), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(549), }, [74] = { - [sym__terminated_statement] = STATE(317), - [sym_for_statement] = STATE(315), - [sym_c_style_for_statement] = STATE(315), - [sym_while_statement] = STATE(315), - [sym_if_statement] = STATE(315), - [sym_case_statement] = STATE(315), - [sym_function_definition] = STATE(315), - [sym_subshell] = STATE(315), - [sym_pipeline] = STATE(315), - [sym_list] = STATE(315), - [sym_negated_command] = STATE(315), - [sym_test_command] = STATE(315), - [sym_declaration_command] = STATE(315), - [sym_unset_command] = STATE(315), - [sym_command] = STATE(315), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(316), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(317), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_compound_statement] = STATE(309), + [anon_sym_LPAREN] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(57), }, [75] = { - [sym__terminated_statement] = STATE(320), - [sym_for_statement] = STATE(318), - [sym_c_style_for_statement] = STATE(318), - [sym_while_statement] = STATE(318), - [sym_if_statement] = STATE(318), - [sym_case_statement] = STATE(318), - [sym_function_definition] = STATE(318), - [sym_subshell] = STATE(318), - [sym_pipeline] = STATE(318), - [sym_list] = STATE(318), - [sym_negated_command] = STATE(318), - [sym_test_command] = STATE(318), - [sym_declaration_command] = STATE(318), - [sym_unset_command] = STATE(318), - [sym_command] = STATE(318), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(319), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(320), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(563), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [sym_comment] = ACTIONS(57), }, [76] = { - [sym__terminated_statement] = STATE(323), - [sym_for_statement] = STATE(321), - [sym_c_style_for_statement] = STATE(321), - [sym_while_statement] = STATE(321), - [sym_if_statement] = STATE(321), - [sym_case_statement] = STATE(321), - [sym_function_definition] = STATE(321), - [sym_subshell] = STATE(321), - [sym_pipeline] = STATE(321), - [sym_list] = STATE(321), - [sym_negated_command] = STATE(321), - [sym_test_command] = STATE(321), - [sym_declaration_command] = STATE(321), - [sym_unset_command] = STATE(321), - [sym_command] = STATE(321), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(322), + [sym_subshell] = STATE(93), + [sym_test_command] = STATE(93), + [sym_command] = STATE(93), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(87), [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(323), - [aux_sym_command_repeat1] = STATE(96), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym_command_repeat1] = STATE(87), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), + [sym_variable_name] = ACTIONS(145), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(139), }, [77] = { - [anon_sym_in] = ACTIONS(577), - [anon_sym_SEMI] = ACTIONS(579), - [anon_sym_SEMI_SEMI] = ACTIONS(581), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(581), - [anon_sym_AMP] = ACTIONS(581), + [sym_variable_assignment] = STATE(315), + [sym_subscript] = STATE(314), + [sym_concatenation] = STATE(315), + [sym_string] = STATE(313), + [sym_simple_expansion] = STATE(313), + [sym_string_expansion] = STATE(313), + [sym_expansion] = STATE(313), + [sym_command_substitution] = STATE(313), + [sym_process_substitution] = STATE(313), + [aux_sym_declaration_command_repeat1] = STATE(315), + [sym__simple_heredoc_body] = ACTIONS(181), + [sym__heredoc_body_beginning] = ACTIONS(181), + [sym_file_descriptor] = ACTIONS(181), + [sym_variable_name] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(181), + [anon_sym_SEMI_SEMI] = ACTIONS(181), + [anon_sym_PIPE_AMP] = ACTIONS(181), + [anon_sym_AMP_AMP] = ACTIONS(181), + [anon_sym_PIPE_PIPE] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(181), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(181), + [anon_sym_LT_AMP] = ACTIONS(181), + [anon_sym_GT_AMP] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(181), + [anon_sym_LT_LT_LT] = ACTIONS(181), + [sym__special_characters] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(569), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(199), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(571), + [sym_word] = ACTIONS(573), + [anon_sym_LF] = ACTIONS(181), + [anon_sym_AMP] = ACTIONS(185), }, [78] = { - [sym_compound_statement] = STATE(326), - [anon_sym_LPAREN] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(595), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(318), + [sym_string] = STATE(317), + [sym_simple_expansion] = STATE(317), + [sym_string_expansion] = STATE(317), + [sym_expansion] = STATE(317), + [sym_command_substitution] = STATE(317), + [sym_process_substitution] = STATE(317), + [aux_sym_unset_command_repeat1] = STATE(318), + [sym__simple_heredoc_body] = ACTIONS(207), + [sym__heredoc_body_beginning] = ACTIONS(207), + [sym_file_descriptor] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(209), + [anon_sym_PIPE] = ACTIONS(209), + [anon_sym_RPAREN] = ACTIONS(207), + [anon_sym_SEMI_SEMI] = ACTIONS(207), + [anon_sym_PIPE_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_GT_GT] = ACTIONS(207), + [anon_sym_AMP_GT] = ACTIONS(209), + [anon_sym_AMP_GT_GT] = ACTIONS(207), + [anon_sym_LT_AMP] = ACTIONS(207), + [anon_sym_GT_AMP] = ACTIONS(207), + [anon_sym_LT_LT] = ACTIONS(209), + [anon_sym_LT_LT_DASH] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [sym__special_characters] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(215), + [sym_raw_string] = ACTIONS(577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), + [anon_sym_BQUOTE] = ACTIONS(223), + [anon_sym_LT_LPAREN] = ACTIONS(225), + [anon_sym_GT_LPAREN] = ACTIONS(225), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(579), + [sym_word] = ACTIONS(581), + [anon_sym_LF] = ACTIONS(207), + [anon_sym_AMP] = ACTIONS(209), }, [79] = { - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(597), - [anon_sym_PLUS_EQ] = ACTIONS(597), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(319), + [sym__simple_heredoc_body] = ACTIONS(247), + [sym__heredoc_body_beginning] = ACTIONS(247), + [sym_file_descriptor] = ACTIONS(247), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(251), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_RPAREN] = ACTIONS(247), + [anon_sym_SEMI_SEMI] = ACTIONS(247), + [anon_sym_PIPE_AMP] = ACTIONS(247), + [anon_sym_AMP_AMP] = ACTIONS(247), + [anon_sym_PIPE_PIPE] = ACTIONS(247), + [anon_sym_EQ_TILDE] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(251), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(247), + [anon_sym_AMP_GT] = ACTIONS(251), + [anon_sym_AMP_GT_GT] = ACTIONS(247), + [anon_sym_LT_AMP] = ACTIONS(247), + [anon_sym_GT_AMP] = ACTIONS(247), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_LT_LT_DASH] = ACTIONS(247), + [anon_sym_LT_LT_LT] = ACTIONS(247), + [sym__special_characters] = ACTIONS(247), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(247), + [anon_sym_BQUOTE] = ACTIONS(247), + [anon_sym_LT_LPAREN] = ACTIONS(247), + [anon_sym_GT_LPAREN] = ACTIONS(247), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(247), + [anon_sym_AMP] = ACTIONS(251), }, [80] = { - [sym__expression] = STATE(328), - [sym_binary_expression] = STATE(328), - [sym_unary_expression] = STATE(328), - [sym_postfix_expression] = STATE(328), - [sym_parenthesized_expression] = STATE(328), - [sym_concatenation] = STATE(328), - [sym_string] = STATE(44), - [sym_simple_expansion] = STATE(44), - [sym_string_expansion] = STATE(44), - [sym_expansion] = STATE(44), - [sym_command_substitution] = STATE(44), - [sym_process_substitution] = STATE(44), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(73), - [sym__special_characters] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(79), - [sym_raw_string] = ACTIONS(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), - [anon_sym_BQUOTE] = ACTIONS(87), - [anon_sym_LT_LPAREN] = ACTIONS(89), - [anon_sym_GT_LPAREN] = ACTIONS(89), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(91), - [sym_test_operator] = ACTIONS(93), + [aux_sym_concatenation_repeat1] = STATE(319), + [sym__simple_heredoc_body] = ACTIONS(275), + [sym__heredoc_body_beginning] = ACTIONS(275), + [sym_file_descriptor] = ACTIONS(275), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_RPAREN] = ACTIONS(275), + [anon_sym_SEMI_SEMI] = ACTIONS(275), + [anon_sym_PIPE_AMP] = ACTIONS(275), + [anon_sym_AMP_AMP] = ACTIONS(275), + [anon_sym_PIPE_PIPE] = ACTIONS(275), + [anon_sym_EQ_TILDE] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(277), + [anon_sym_GT_GT] = ACTIONS(275), + [anon_sym_AMP_GT] = ACTIONS(277), + [anon_sym_AMP_GT_GT] = ACTIONS(275), + [anon_sym_LT_AMP] = ACTIONS(275), + [anon_sym_GT_AMP] = ACTIONS(275), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(275), + [anon_sym_LT_LT_LT] = ACTIONS(275), + [sym__special_characters] = ACTIONS(275), + [anon_sym_DQUOTE] = ACTIONS(275), + [anon_sym_DOLLAR] = ACTIONS(277), + [sym_raw_string] = ACTIONS(275), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [anon_sym_BQUOTE] = ACTIONS(275), + [anon_sym_LT_LPAREN] = ACTIONS(275), + [anon_sym_GT_LPAREN] = ACTIONS(275), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(277), + [anon_sym_LF] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), }, [81] = { - [sym__terminated_statement] = STATE(329), - [sym_for_statement] = STATE(63), - [sym_c_style_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_if_statement] = STATE(63), - [sym_case_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_subshell] = STATE(63), - [sym_pipeline] = STATE(63), - [sym_list] = STATE(63), - [sym_negated_command] = STATE(63), - [sym_test_command] = STATE(63), - [sym_declaration_command] = STATE(63), - [sym_unset_command] = STATE(63), - [sym_command] = STATE(63), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(65), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [aux_sym_concatenation_repeat1] = STATE(319), + [sym__simple_heredoc_body] = ACTIONS(275), + [sym__heredoc_body_beginning] = ACTIONS(275), + [sym_file_descriptor] = ACTIONS(275), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_RPAREN] = ACTIONS(275), + [anon_sym_SEMI_SEMI] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym_PIPE_AMP] = ACTIONS(275), + [anon_sym_AMP_AMP] = ACTIONS(275), + [anon_sym_PIPE_PIPE] = ACTIONS(275), + [anon_sym_EQ_TILDE] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(277), + [anon_sym_GT_GT] = ACTIONS(275), + [anon_sym_AMP_GT] = ACTIONS(277), + [anon_sym_AMP_GT_GT] = ACTIONS(275), + [anon_sym_LT_AMP] = ACTIONS(275), + [anon_sym_GT_AMP] = ACTIONS(275), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(275), + [anon_sym_LT_LT_LT] = ACTIONS(275), + [sym__special_characters] = ACTIONS(275), + [anon_sym_DQUOTE] = ACTIONS(275), + [anon_sym_DOLLAR] = ACTIONS(277), + [sym_raw_string] = ACTIONS(275), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [anon_sym_BQUOTE] = ACTIONS(275), + [anon_sym_LT_LPAREN] = ACTIONS(275), + [anon_sym_GT_LPAREN] = ACTIONS(275), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(277), + [anon_sym_LF] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), }, [82] = { - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(599), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(327), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(589), + [anon_sym_SEMI_SEMI] = ACTIONS(591), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(591), + [anon_sym_AMP] = ACTIONS(585), }, [83] = { - [sym_subshell] = STATE(98), - [sym_test_command] = STATE(98), - [sym_command] = STATE(98), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(96), - [sym_subscript] = STATE(99), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(161), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(157), + [sym_concatenation] = STATE(332), + [sym_string] = STATE(331), + [sym_simple_expansion] = STATE(331), + [sym_string_expansion] = STATE(331), + [sym_expansion] = STATE(331), + [sym_command_substitution] = STATE(331), + [sym_process_substitution] = STATE(331), + [aux_sym_command_repeat2] = STATE(332), + [sym__simple_heredoc_body] = ACTIONS(327), + [sym__heredoc_body_beginning] = ACTIONS(327), + [sym_file_descriptor] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_RPAREN] = ACTIONS(327), + [anon_sym_SEMI_SEMI] = ACTIONS(327), + [anon_sym_PIPE_AMP] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(327), + [anon_sym_EQ_TILDE] = ACTIONS(603), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(327), + [anon_sym_AMP_GT] = ACTIONS(329), + [anon_sym_AMP_GT_GT] = ACTIONS(327), + [anon_sym_LT_AMP] = ACTIONS(327), + [anon_sym_GT_AMP] = ACTIONS(327), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_LT_LT_DASH] = ACTIONS(327), + [anon_sym_LT_LT_LT] = ACTIONS(327), + [sym__special_characters] = ACTIONS(605), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(607), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(329), }, [84] = { - [sym__expression] = STATE(331), - [sym_binary_expression] = STATE(331), - [sym_unary_expression] = STATE(331), - [sym_postfix_expression] = STATE(331), - [sym_parenthesized_expression] = STATE(331), - [sym_concatenation] = STATE(331), - [sym_string] = STATE(105), - [sym_simple_expansion] = STATE(105), - [sym_string_expansion] = STATE(105), - [sym_expansion] = STATE(105), - [sym_command_substitution] = STATE(105), - [sym_process_substitution] = STATE(105), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [sym__special_characters] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_DOLLAR] = ACTIONS(171), - [sym_raw_string] = ACTIONS(173), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), - [anon_sym_BQUOTE] = ACTIONS(179), - [anon_sym_LT_LPAREN] = ACTIONS(181), - [anon_sym_GT_LPAREN] = ACTIONS(181), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(183), - [sym_test_operator] = ACTIONS(185), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(327), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(589), + [anon_sym_SEMI_SEMI] = ACTIONS(591), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(591), + [anon_sym_AMP] = ACTIONS(585), }, [85] = { - [sym__expression] = STATE(332), - [sym_binary_expression] = STATE(332), - [sym_unary_expression] = STATE(332), - [sym_postfix_expression] = STATE(332), - [sym_parenthesized_expression] = STATE(332), - [sym_concatenation] = STATE(332), - [sym_string] = STATE(113), - [sym_simple_expansion] = STATE(113), - [sym_string_expansion] = STATE(113), - [sym_expansion] = STATE(113), - [sym_command_substitution] = STATE(113), - [sym_process_substitution] = STATE(113), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(187), - [sym__special_characters] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(79), - [sym_raw_string] = ACTIONS(191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), - [anon_sym_BQUOTE] = ACTIONS(87), - [anon_sym_LT_LPAREN] = ACTIONS(89), - [anon_sym_GT_LPAREN] = ACTIONS(89), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(193), - [sym_test_operator] = ACTIONS(195), + [anon_sym_EQ] = ACTIONS(563), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [sym_comment] = ACTIONS(57), }, [86] = { - [sym_variable_assignment] = STATE(337), - [sym_subscript] = STATE(336), - [sym_concatenation] = STATE(337), - [sym_string] = STATE(335), - [sym_simple_expansion] = STATE(335), - [sym_string_expansion] = STATE(335), - [sym_expansion] = STATE(335), - [sym_command_substitution] = STATE(335), - [sym_process_substitution] = STATE(335), - [aux_sym_declaration_command_repeat1] = STATE(337), - [sym_variable_name] = ACTIONS(601), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_PIPE] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(199), - [anon_sym_SEMI_SEMI] = ACTIONS(199), - [anon_sym_PIPE_AMP] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [sym__special_characters] = ACTIONS(603), - [anon_sym_DQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR] = ACTIONS(207), - [sym_raw_string] = ACTIONS(605), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_BQUOTE] = ACTIONS(215), - [anon_sym_LT_LPAREN] = ACTIONS(217), - [anon_sym_GT_LPAREN] = ACTIONS(217), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(607), - [sym_word] = ACTIONS(609), - [anon_sym_LF] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(201), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(333), + [sym_for_statement] = STATE(333), + [sym_c_style_for_statement] = STATE(333), + [sym_while_statement] = STATE(333), + [sym_if_statement] = STATE(333), + [sym_case_statement] = STATE(333), + [sym_function_definition] = STATE(333), + [sym_compound_statement] = STATE(333), + [sym_subshell] = STATE(333), + [sym_pipeline] = STATE(333), + [sym_list] = STATE(333), + [sym_negated_command] = STATE(333), + [sym_test_command] = STATE(333), + [sym_declaration_command] = STATE(333), + [sym_unset_command] = STATE(333), + [sym_command] = STATE(333), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(334), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [87] = { - [sym_concatenation] = STATE(340), - [sym_string] = STATE(339), - [sym_simple_expansion] = STATE(339), - [sym_string_expansion] = STATE(339), - [sym_expansion] = STATE(339), - [sym_command_substitution] = STATE(339), - [sym_process_substitution] = STATE(339), - [aux_sym_unset_command_repeat1] = STATE(340), - [anon_sym_SEMI] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_SEMI_SEMI] = ACTIONS(223), - [anon_sym_PIPE_AMP] = ACTIONS(223), - [anon_sym_AMP_AMP] = ACTIONS(223), - [anon_sym_PIPE_PIPE] = ACTIONS(223), + [sym_command_name] = STATE(335), + [sym_variable_assignment] = STATE(189), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(189), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym_command_repeat1] = STATE(189), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(145), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), [sym__special_characters] = ACTIONS(611), - [anon_sym_DQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [sym_raw_string] = ACTIONS(613), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [anon_sym_LT_LPAREN] = ACTIONS(241), - [anon_sym_GT_LPAREN] = ACTIONS(241), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(615), - [sym_word] = ACTIONS(617), - [anon_sym_LF] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(225), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(139), }, [88] = { - [aux_sym_concatenation_repeat1] = STATE(341), - [sym__simple_heredoc_body] = ACTIONS(263), - [sym__heredoc_body_beginning] = ACTIONS(263), - [sym_file_descriptor] = ACTIONS(263), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(267), - [anon_sym_PIPE] = ACTIONS(267), - [anon_sym_RPAREN] = ACTIONS(263), - [anon_sym_SEMI_SEMI] = ACTIONS(263), - [anon_sym_PIPE_AMP] = ACTIONS(263), - [anon_sym_AMP_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(263), - [anon_sym_EQ_TILDE] = ACTIONS(267), - [anon_sym_EQ_EQ] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_GT_GT] = ACTIONS(263), - [anon_sym_AMP_GT] = ACTIONS(267), - [anon_sym_AMP_GT_GT] = ACTIONS(263), - [anon_sym_LT_AMP] = ACTIONS(263), - [anon_sym_GT_AMP] = ACTIONS(263), - [anon_sym_LT_LT] = ACTIONS(267), - [anon_sym_LT_LT_DASH] = ACTIONS(263), - [anon_sym_LT_LT_LT] = ACTIONS(263), - [sym__special_characters] = ACTIONS(263), - [anon_sym_DQUOTE] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(267), - [sym_raw_string] = ACTIONS(263), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(263), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(263), - [anon_sym_BQUOTE] = ACTIONS(263), - [anon_sym_LT_LPAREN] = ACTIONS(263), - [anon_sym_GT_LPAREN] = ACTIONS(263), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(267), - [anon_sym_LF] = ACTIONS(263), - [anon_sym_AMP] = ACTIONS(267), + [sym__simple_heredoc_body] = ACTIONS(613), + [sym__heredoc_body_beginning] = ACTIONS(613), + [sym_file_descriptor] = ACTIONS(613), + [ts_builtin_sym_end] = ACTIONS(613), + [anon_sym_SEMI] = ACTIONS(615), + [anon_sym_esac] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_RPAREN] = ACTIONS(613), + [anon_sym_SEMI_SEMI] = ACTIONS(613), + [anon_sym_PIPE_AMP] = ACTIONS(613), + [anon_sym_AMP_AMP] = ACTIONS(613), + [anon_sym_PIPE_PIPE] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(613), + [anon_sym_AMP_GT] = ACTIONS(615), + [anon_sym_AMP_GT_GT] = ACTIONS(613), + [anon_sym_LT_AMP] = ACTIONS(613), + [anon_sym_GT_AMP] = ACTIONS(613), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_LT_LT_DASH] = ACTIONS(613), + [anon_sym_LT_LT_LT] = ACTIONS(613), + [anon_sym_BQUOTE] = ACTIONS(613), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(615), }, [89] = { - [aux_sym_concatenation_repeat1] = STATE(341), - [sym__simple_heredoc_body] = ACTIONS(291), - [sym__heredoc_body_beginning] = ACTIONS(291), - [sym_file_descriptor] = ACTIONS(291), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(293), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_RPAREN] = ACTIONS(291), - [anon_sym_SEMI_SEMI] = ACTIONS(291), - [anon_sym_PIPE_AMP] = ACTIONS(291), - [anon_sym_AMP_AMP] = ACTIONS(291), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_EQ_TILDE] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_GT_GT] = ACTIONS(291), - [anon_sym_AMP_GT] = ACTIONS(293), - [anon_sym_AMP_GT_GT] = ACTIONS(291), - [anon_sym_LT_AMP] = ACTIONS(291), - [anon_sym_GT_AMP] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_LT_LT_DASH] = ACTIONS(291), - [anon_sym_LT_LT_LT] = ACTIONS(291), - [sym__special_characters] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(291), - [anon_sym_DOLLAR] = ACTIONS(293), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(291), - [anon_sym_LT_LPAREN] = ACTIONS(291), - [anon_sym_GT_LPAREN] = ACTIONS(291), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(293), - [anon_sym_LF] = ACTIONS(291), - [anon_sym_AMP] = ACTIONS(293), + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_heredoc_body] = STATE(337), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(619), + [anon_sym_PIPE_AMP] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_AMP_GT] = ACTIONS(507), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(511), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(617), }, [90] = { - [aux_sym_concatenation_repeat1] = STATE(341), - [sym__simple_heredoc_body] = ACTIONS(291), - [sym__heredoc_body_beginning] = ACTIONS(291), - [sym_file_descriptor] = ACTIONS(291), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(293), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_RPAREN] = ACTIONS(291), - [anon_sym_SEMI_SEMI] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(619), - [anon_sym_PIPE_AMP] = ACTIONS(291), - [anon_sym_AMP_AMP] = ACTIONS(291), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_EQ_TILDE] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_GT_GT] = ACTIONS(291), - [anon_sym_AMP_GT] = ACTIONS(293), - [anon_sym_AMP_GT_GT] = ACTIONS(291), - [anon_sym_LT_AMP] = ACTIONS(291), - [anon_sym_GT_AMP] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_LT_LT_DASH] = ACTIONS(291), - [anon_sym_LT_LT_LT] = ACTIONS(291), - [sym__special_characters] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(291), - [anon_sym_DOLLAR] = ACTIONS(293), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(291), - [anon_sym_LT_LPAREN] = ACTIONS(291), - [anon_sym_GT_LPAREN] = ACTIONS(291), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(293), - [anon_sym_LF] = ACTIONS(291), - [anon_sym_AMP] = ACTIONS(293), + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_heredoc_body] = STATE(337), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(619), + [anon_sym_PIPE_AMP] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(511), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(617), }, [91] = { - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(625), - [anon_sym_SEMI_SEMI] = ACTIONS(627), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(621), + [sym__terminated_statement] = STATE(339), + [sym_redirected_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_c_style_for_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_function_definition] = STATE(89), + [sym_compound_statement] = STATE(89), + [sym_subshell] = STATE(89), + [sym_pipeline] = STATE(89), + [sym_list] = STATE(89), + [sym_negated_command] = STATE(89), + [sym_test_command] = STATE(89), + [sym_declaration_command] = STATE(89), + [sym_unset_command] = STATE(89), + [sym_command] = STATE(89), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(90), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(339), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_typeset] = ACTIONS(101), + [anon_sym_export] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_local] = ACTIONS(101), + [anon_sym_unset] = ACTIONS(103), + [anon_sym_unsetenv] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [92] = { - [sym_file_redirect] = STATE(353), - [sym_heredoc_redirect] = STATE(353), - [sym_heredoc_body] = STATE(193), - [sym_herestring_redirect] = STATE(353), - [sym_concatenation] = STATE(354), - [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), - [aux_sym_while_statement_repeat1] = STATE(353), - [aux_sym_command_repeat2] = STATE(354), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(633), - [anon_sym_SEMI] = ACTIONS(347), - [anon_sym_PIPE] = ACTIONS(347), - [anon_sym_RPAREN] = ACTIONS(345), - [anon_sym_SEMI_SEMI] = ACTIONS(345), - [anon_sym_PIPE_AMP] = ACTIONS(345), - [anon_sym_AMP_AMP] = ACTIONS(345), - [anon_sym_PIPE_PIPE] = ACTIONS(345), - [anon_sym_EQ_TILDE] = ACTIONS(635), - [anon_sym_EQ_EQ] = ACTIONS(635), - [anon_sym_LT] = ACTIONS(637), - [anon_sym_GT] = ACTIONS(637), - [anon_sym_GT_GT] = ACTIONS(639), - [anon_sym_AMP_GT] = ACTIONS(637), - [anon_sym_AMP_GT_GT] = ACTIONS(639), - [anon_sym_LT_AMP] = ACTIONS(639), - [anon_sym_GT_AMP] = ACTIONS(639), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(641), - [sym__special_characters] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(647), - [anon_sym_LF] = ACTIONS(345), - [anon_sym_AMP] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(623), + [anon_sym_PLUS_EQ] = ACTIONS(623), + [sym_comment] = ACTIONS(57), }, [93] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(623), + [sym__simple_heredoc_body] = ACTIONS(625), + [sym__heredoc_body_beginning] = ACTIONS(625), + [sym_file_descriptor] = ACTIONS(625), + [ts_builtin_sym_end] = ACTIONS(625), + [anon_sym_SEMI] = ACTIONS(627), + [anon_sym_esac] = ACTIONS(625), + [anon_sym_PIPE] = ACTIONS(627), [anon_sym_RPAREN] = ACTIONS(625), - [anon_sym_SEMI_SEMI] = ACTIONS(627), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(621), + [anon_sym_SEMI_SEMI] = ACTIONS(625), + [anon_sym_PIPE_AMP] = ACTIONS(625), + [anon_sym_AMP_AMP] = ACTIONS(625), + [anon_sym_PIPE_PIPE] = ACTIONS(625), + [anon_sym_LT] = ACTIONS(627), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_GT_GT] = ACTIONS(625), + [anon_sym_AMP_GT] = ACTIONS(627), + [anon_sym_AMP_GT_GT] = ACTIONS(625), + [anon_sym_LT_AMP] = ACTIONS(625), + [anon_sym_GT_AMP] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(627), + [anon_sym_LT_LT_DASH] = ACTIONS(625), + [anon_sym_LT_LT_LT] = ACTIONS(625), + [anon_sym_BQUOTE] = ACTIONS(625), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(625), + [anon_sym_AMP] = ACTIONS(627), }, [94] = { - [anon_sym_EQ] = ACTIONS(597), - [anon_sym_PLUS_EQ] = ACTIONS(597), - [sym_comment] = ACTIONS(55), + [anon_sym_EQ] = ACTIONS(623), + [anon_sym_PLUS_EQ] = ACTIONS(623), + [sym_comment] = ACTIONS(57), }, [95] = { - [sym__terminated_statement] = STATE(198), + [sym__expression] = STATE(341), + [sym_binary_expression] = STATE(341), + [sym_unary_expression] = STATE(341), + [sym_postfix_expression] = STATE(341), + [sym_parenthesized_expression] = STATE(341), + [sym_concatenation] = STATE(341), + [sym_string] = STATE(225), + [sym_simple_expansion] = STATE(225), + [sym_string_expansion] = STATE(225), + [sym_expansion] = STATE(225), + [sym_command_substitution] = STATE(225), + [sym_process_substitution] = STATE(225), + [anon_sym_LPAREN] = ACTIONS(407), + [anon_sym_BANG] = ACTIONS(409), + [sym__special_characters] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(415), + [sym_raw_string] = ACTIONS(417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(427), + [sym_test_operator] = ACTIONS(429), + }, + [96] = { + [sym__expression] = STATE(342), + [sym_binary_expression] = STATE(342), + [sym_unary_expression] = STATE(342), + [sym_postfix_expression] = STATE(342), + [sym_parenthesized_expression] = STATE(342), + [sym_concatenation] = STATE(342), + [sym_string] = STATE(100), + [sym_simple_expansion] = STATE(100), + [sym_string_expansion] = STATE(100), + [sym_expansion] = STATE(100), + [sym_command_substitution] = STATE(100), + [sym_process_substitution] = STATE(100), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(149), + [sym__special_characters] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(155), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(163), + [anon_sym_LT_LPAREN] = ACTIONS(165), + [anon_sym_GT_LPAREN] = ACTIONS(165), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(167), + [sym_test_operator] = ACTIONS(169), + }, + [97] = { + [aux_sym_concatenation_repeat1] = STATE(344), + [sym__concat] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(433), + [anon_sym_PIPE_PIPE] = ACTIONS(433), + [anon_sym_RBRACK] = ACTIONS(433), + [anon_sym_EQ_TILDE] = ACTIONS(433), + [anon_sym_EQ_EQ] = ACTIONS(433), + [anon_sym_EQ] = ACTIONS(435), + [anon_sym_PLUS_EQ] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_BANG_EQ] = ACTIONS(433), + [anon_sym_PLUS] = ACTIONS(435), + [anon_sym_DASH] = ACTIONS(435), + [anon_sym_DASH_EQ] = ACTIONS(433), + [anon_sym_LT_EQ] = ACTIONS(433), + [anon_sym_GT_EQ] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_DASH_DASH] = ACTIONS(433), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(433), + }, + [98] = { + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(347), + [anon_sym_DQUOTE] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(633), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), + }, + [99] = { + [sym_string] = STATE(349), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(635), + [sym_raw_string] = ACTIONS(637), + [anon_sym_POUND] = ACTIONS(635), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_AT] = ACTIONS(641), + [anon_sym_QMARK] = ACTIONS(641), + [anon_sym_0] = ACTIONS(639), + [anon_sym__] = ACTIONS(639), + }, + [100] = { + [aux_sym_concatenation_repeat1] = STATE(344), + [sym__concat] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(449), + [anon_sym_PIPE_PIPE] = ACTIONS(449), + [anon_sym_RBRACK] = ACTIONS(449), + [anon_sym_EQ_TILDE] = ACTIONS(449), + [anon_sym_EQ_EQ] = ACTIONS(449), + [anon_sym_EQ] = ACTIONS(451), + [anon_sym_PLUS_EQ] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_BANG_EQ] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DASH_EQ] = ACTIONS(449), + [anon_sym_LT_EQ] = ACTIONS(449), + [anon_sym_GT_EQ] = ACTIONS(449), + [anon_sym_PLUS_PLUS] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(449), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(449), + }, + [101] = { + [sym_subscript] = STATE(354), + [sym_variable_name] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_DOLLAR] = ACTIONS(647), + [anon_sym_POUND] = ACTIONS(645), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_AT] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(651), + [anon_sym_0] = ACTIONS(649), + [anon_sym__] = ACTIONS(649), + }, + [102] = { + [sym__terminated_statement] = STATE(357), + [sym_redirected_statement] = STATE(355), [sym_for_statement] = STATE(355), [sym_c_style_for_statement] = STATE(355), [sym_while_statement] = STATE(355), [sym_if_statement] = STATE(355), [sym_case_statement] = STATE(355), [sym_function_definition] = STATE(355), + [sym_compound_statement] = STATE(355), [sym_subshell] = STATE(355), [sym_pipeline] = STATE(355), [sym_list] = STATE(355), @@ -11334,2884 +11462,3459 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(355), [sym_unset_command] = STATE(355), [sym_command] = STATE(355), - [sym_command_name] = STATE(92), + [sym_command_name] = STATE(83), [sym_variable_assignment] = STATE(356), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(357), + [aux_sym_command_repeat1] = STATE(87), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), + [sym_variable_name] = ACTIONS(129), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), - }, - [96] = { - [sym_command_name] = STATE(357), - [sym_variable_assignment] = STATE(200), - [sym_subscript] = STATE(99), - [sym_file_redirect] = STATE(200), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym_command_repeat1] = STATE(200), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(649), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(157), - }, - [97] = { - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(651), - [anon_sym_PLUS_EQ] = ACTIONS(651), - [sym_comment] = ACTIONS(55), - }, - [98] = { - [ts_builtin_sym_end] = ACTIONS(653), - [anon_sym_SEMI] = ACTIONS(655), - [anon_sym_esac] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(655), - [anon_sym_RPAREN] = ACTIONS(653), - [anon_sym_SEMI_SEMI] = ACTIONS(653), - [anon_sym_PIPE_AMP] = ACTIONS(653), - [anon_sym_AMP_AMP] = ACTIONS(653), - [anon_sym_PIPE_PIPE] = ACTIONS(653), - [anon_sym_BQUOTE] = ACTIONS(653), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(653), - [anon_sym_AMP] = ACTIONS(655), - }, - [99] = { - [anon_sym_EQ] = ACTIONS(651), - [anon_sym_PLUS_EQ] = ACTIONS(651), - [sym_comment] = ACTIONS(55), - }, - [100] = { - [sym__expression] = STATE(359), - [sym_binary_expression] = STATE(359), - [sym_unary_expression] = STATE(359), - [sym_postfix_expression] = STATE(359), - [sym_parenthesized_expression] = STATE(359), - [sym_concatenation] = STATE(359), - [sym_string] = STATE(236), - [sym_simple_expansion] = STATE(236), - [sym_string_expansion] = STATE(236), - [sym_expansion] = STATE(236), - [sym_command_substitution] = STATE(236), - [sym_process_substitution] = STATE(236), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [sym__special_characters] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(443), - [sym_raw_string] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), - [anon_sym_BQUOTE] = ACTIONS(451), - [anon_sym_LT_LPAREN] = ACTIONS(453), - [anon_sym_GT_LPAREN] = ACTIONS(453), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(455), - [sym_test_operator] = ACTIONS(457), - }, - [101] = { - [sym__expression] = STATE(360), - [sym_binary_expression] = STATE(360), - [sym_unary_expression] = STATE(360), - [sym_postfix_expression] = STATE(360), - [sym_parenthesized_expression] = STATE(360), - [sym_concatenation] = STATE(360), - [sym_string] = STATE(105), - [sym_simple_expansion] = STATE(105), - [sym_string_expansion] = STATE(105), - [sym_expansion] = STATE(105), - [sym_command_substitution] = STATE(105), - [sym_process_substitution] = STATE(105), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [sym__special_characters] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_DOLLAR] = ACTIONS(171), - [sym_raw_string] = ACTIONS(173), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), - [anon_sym_BQUOTE] = ACTIONS(179), - [anon_sym_LT_LPAREN] = ACTIONS(181), - [anon_sym_GT_LPAREN] = ACTIONS(181), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(183), - [sym_test_operator] = ACTIONS(185), - }, - [102] = { - [aux_sym_concatenation_repeat1] = STATE(362), - [sym__concat] = ACTIONS(657), - [anon_sym_AMP_AMP] = ACTIONS(461), - [anon_sym_PIPE_PIPE] = ACTIONS(461), - [anon_sym_RBRACK] = ACTIONS(461), - [anon_sym_EQ_TILDE] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(463), - [anon_sym_PLUS_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_DASH_EQ] = ACTIONS(461), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(461), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [103] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(365), - [anon_sym_DQUOTE] = ACTIONS(659), - [anon_sym_DOLLAR] = ACTIONS(661), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym__terminated_statement] = STATE(360), + [sym_redirected_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_c_style_for_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_function_definition] = STATE(358), + [sym_compound_statement] = STATE(358), + [sym_subshell] = STATE(358), + [sym_pipeline] = STATE(358), + [sym_list] = STATE(358), + [sym_negated_command] = STATE(358), + [sym_test_command] = STATE(358), + [sym_declaration_command] = STATE(358), + [sym_unset_command] = STATE(358), + [sym_command] = STATE(358), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(359), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(360), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [104] = { - [sym_string] = STATE(367), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_DOLLAR] = ACTIONS(663), - [sym_raw_string] = ACTIONS(665), - [anon_sym_POUND] = ACTIONS(663), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(667), - [anon_sym_STAR] = ACTIONS(669), - [anon_sym_AT] = ACTIONS(669), - [anon_sym_QMARK] = ACTIONS(669), - [anon_sym_0] = ACTIONS(667), - [anon_sym__] = ACTIONS(667), + [sym__terminated_statement] = STATE(363), + [sym_redirected_statement] = STATE(361), + [sym_for_statement] = STATE(361), + [sym_c_style_for_statement] = STATE(361), + [sym_while_statement] = STATE(361), + [sym_if_statement] = STATE(361), + [sym_case_statement] = STATE(361), + [sym_function_definition] = STATE(361), + [sym_compound_statement] = STATE(361), + [sym_subshell] = STATE(361), + [sym_pipeline] = STATE(361), + [sym_list] = STATE(361), + [sym_negated_command] = STATE(361), + [sym_test_command] = STATE(361), + [sym_declaration_command] = STATE(361), + [sym_unset_command] = STATE(361), + [sym_command] = STATE(361), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(362), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(363), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [105] = { - [aux_sym_concatenation_repeat1] = STATE(362), - [sym__concat] = ACTIONS(657), - [anon_sym_AMP_AMP] = ACTIONS(477), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_RBRACK] = ACTIONS(477), - [anon_sym_EQ_TILDE] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(477), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_LT] = ACTIONS(479), - [anon_sym_GT] = ACTIONS(479), - [anon_sym_BANG_EQ] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(477), - [anon_sym_PLUS_PLUS] = ACTIONS(477), - [anon_sym_DASH_DASH] = ACTIONS(477), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(477), + [anon_sym_AMP_AMP] = ACTIONS(653), + [anon_sym_PIPE_PIPE] = ACTIONS(653), + [anon_sym_RBRACK] = ACTIONS(463), + [anon_sym_EQ_TILDE] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(657), + [anon_sym_PLUS_EQ] = ACTIONS(653), + [anon_sym_LT] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(657), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(657), + [anon_sym_DASH] = ACTIONS(657), + [anon_sym_DASH_EQ] = ACTIONS(653), + [anon_sym_LT_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(653), }, [106] = { - [sym_subscript] = STATE(372), - [sym_variable_name] = ACTIONS(671), - [anon_sym_BANG] = ACTIONS(673), - [anon_sym_DASH] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(675), - [anon_sym_POUND] = ACTIONS(673), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(677), - [anon_sym_STAR] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(679), - [anon_sym_QMARK] = ACTIONS(679), - [anon_sym_0] = ACTIONS(677), - [anon_sym__] = ACTIONS(677), + [sym__expression] = STATE(367), + [sym_binary_expression] = STATE(367), + [sym_unary_expression] = STATE(367), + [sym_postfix_expression] = STATE(367), + [sym_parenthesized_expression] = STATE(367), + [sym_concatenation] = STATE(367), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_string_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [anon_sym_LPAREN] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(171), + [sym__special_characters] = ACTIONS(173), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(81), + [sym_raw_string] = ACTIONS(175), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(85), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(89), + [anon_sym_LT_LPAREN] = ACTIONS(91), + [anon_sym_GT_LPAREN] = ACTIONS(91), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(177), + [sym_test_operator] = ACTIONS(179), }, [107] = { - [sym__terminated_statement] = STATE(375), - [sym_for_statement] = STATE(373), - [sym_c_style_for_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_case_statement] = STATE(373), - [sym_function_definition] = STATE(373), - [sym_subshell] = STATE(373), - [sym_pipeline] = STATE(373), - [sym_list] = STATE(373), - [sym_negated_command] = STATE(373), - [sym_test_command] = STATE(373), - [sym_declaration_command] = STATE(373), - [sym_unset_command] = STATE(373), - [sym_command] = STATE(373), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(374), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(375), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [aux_sym_concatenation_repeat1] = STATE(368), + [sym__concat] = ACTIONS(431), + [anon_sym_AMP_AMP] = ACTIONS(433), + [anon_sym_PIPE_PIPE] = ACTIONS(433), + [anon_sym_RBRACK_RBRACK] = ACTIONS(433), + [anon_sym_EQ_TILDE] = ACTIONS(433), + [anon_sym_EQ_EQ] = ACTIONS(433), + [anon_sym_EQ] = ACTIONS(435), + [anon_sym_PLUS_EQ] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_BANG_EQ] = ACTIONS(433), + [anon_sym_PLUS] = ACTIONS(435), + [anon_sym_DASH] = ACTIONS(435), + [anon_sym_DASH_EQ] = ACTIONS(433), + [anon_sym_LT_EQ] = ACTIONS(433), + [anon_sym_GT_EQ] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_DASH_DASH] = ACTIONS(433), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(433), }, [108] = { - [sym__terminated_statement] = STATE(378), - [sym_for_statement] = STATE(376), - [sym_c_style_for_statement] = STATE(376), - [sym_while_statement] = STATE(376), - [sym_if_statement] = STATE(376), - [sym_case_statement] = STATE(376), - [sym_function_definition] = STATE(376), - [sym_subshell] = STATE(376), - [sym_pipeline] = STATE(376), - [sym_list] = STATE(376), - [sym_negated_command] = STATE(376), - [sym_test_command] = STATE(376), - [sym_declaration_command] = STATE(376), - [sym_unset_command] = STATE(376), - [sym_command] = STATE(376), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(377), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(378), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [aux_sym_concatenation_repeat1] = STATE(368), + [sym__concat] = ACTIONS(431), + [anon_sym_AMP_AMP] = ACTIONS(449), + [anon_sym_PIPE_PIPE] = ACTIONS(449), + [anon_sym_RBRACK_RBRACK] = ACTIONS(449), + [anon_sym_EQ_TILDE] = ACTIONS(449), + [anon_sym_EQ_EQ] = ACTIONS(449), + [anon_sym_EQ] = ACTIONS(451), + [anon_sym_PLUS_EQ] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_BANG_EQ] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DASH_EQ] = ACTIONS(449), + [anon_sym_LT_EQ] = ACTIONS(449), + [anon_sym_GT_EQ] = ACTIONS(449), + [anon_sym_PLUS_PLUS] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(449), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(449), }, [109] = { - [sym__terminated_statement] = STATE(381), - [sym_for_statement] = STATE(379), - [sym_c_style_for_statement] = STATE(379), - [sym_while_statement] = STATE(379), - [sym_if_statement] = STATE(379), - [sym_case_statement] = STATE(379), - [sym_function_definition] = STATE(379), - [sym_subshell] = STATE(379), - [sym_pipeline] = STATE(379), - [sym_list] = STATE(379), - [sym_negated_command] = STATE(379), - [sym_test_command] = STATE(379), - [sym_declaration_command] = STATE(379), - [sym_unset_command] = STATE(379), - [sym_command] = STATE(379), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(380), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(381), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE_PIPE] = ACTIONS(661), + [anon_sym_RBRACK_RBRACK] = ACTIONS(463), + [anon_sym_EQ_TILDE] = ACTIONS(663), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(665), + [anon_sym_PLUS_EQ] = ACTIONS(661), + [anon_sym_LT] = ACTIONS(665), + [anon_sym_GT] = ACTIONS(665), + [anon_sym_BANG_EQ] = ACTIONS(661), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_DASH_EQ] = ACTIONS(661), + [anon_sym_LT_EQ] = ACTIONS(661), + [anon_sym_GT_EQ] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(661), }, [110] = { - [anon_sym_AMP_AMP] = ACTIONS(681), - [anon_sym_PIPE_PIPE] = ACTIONS(681), - [anon_sym_RBRACK] = ACTIONS(491), - [anon_sym_EQ_TILDE] = ACTIONS(683), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(685), - [anon_sym_PLUS_EQ] = ACTIONS(681), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(681), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(681), - [anon_sym_LT_EQ] = ACTIONS(681), - [anon_sym_GT_EQ] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(681), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(667), + [anon_sym_PLUS_EQ] = ACTIONS(667), + [sym_comment] = ACTIONS(57), }, [111] = { - [sym__expression] = STATE(385), - [sym_binary_expression] = STATE(385), - [sym_unary_expression] = STATE(385), - [sym_postfix_expression] = STATE(385), - [sym_parenthesized_expression] = STATE(385), - [sym_concatenation] = STATE(385), - [sym_string] = STATE(113), - [sym_simple_expansion] = STATE(113), - [sym_string_expansion] = STATE(113), - [sym_expansion] = STATE(113), - [sym_command_substitution] = STATE(113), - [sym_process_substitution] = STATE(113), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(187), - [sym__special_characters] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(79), - [sym_raw_string] = ACTIONS(191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), - [anon_sym_BQUOTE] = ACTIONS(87), - [anon_sym_LT_LPAREN] = ACTIONS(89), - [anon_sym_GT_LPAREN] = ACTIONS(89), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(193), - [sym_test_operator] = ACTIONS(195), + [aux_sym_concatenation_repeat1] = STATE(373), + [sym__simple_heredoc_body] = ACTIONS(669), + [sym__heredoc_body_beginning] = ACTIONS(669), + [sym_file_descriptor] = ACTIONS(669), + [sym__concat] = ACTIONS(671), + [sym_variable_name] = ACTIONS(669), + [ts_builtin_sym_end] = ACTIONS(669), + [anon_sym_SEMI] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(669), + [anon_sym_AMP_GT] = ACTIONS(673), + [anon_sym_AMP_GT_GT] = ACTIONS(669), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [anon_sym_LT_LT_LT] = ACTIONS(669), + [sym__special_characters] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(673), + [sym_raw_string] = ACTIONS(669), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(669), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), + [anon_sym_BQUOTE] = ACTIONS(669), + [anon_sym_LT_LPAREN] = ACTIONS(669), + [anon_sym_GT_LPAREN] = ACTIONS(669), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(673), + [sym_word] = ACTIONS(673), + [anon_sym_LF] = ACTIONS(669), + [anon_sym_AMP] = ACTIONS(673), }, [112] = { - [aux_sym_concatenation_repeat1] = STATE(386), - [sym__concat] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(461), - [anon_sym_PIPE_PIPE] = ACTIONS(461), - [anon_sym_RBRACK_RBRACK] = ACTIONS(461), - [anon_sym_EQ_TILDE] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(463), - [anon_sym_PLUS_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_DASH_EQ] = ACTIONS(461), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(461), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(376), + [anon_sym_DQUOTE] = ACTIONS(675), + [anon_sym_DOLLAR] = ACTIONS(677), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [113] = { - [aux_sym_concatenation_repeat1] = STATE(386), - [sym__concat] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(477), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_RBRACK_RBRACK] = ACTIONS(477), - [anon_sym_EQ_TILDE] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(477), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_LT] = ACTIONS(479), - [anon_sym_GT] = ACTIONS(479), - [anon_sym_BANG_EQ] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(477), - [anon_sym_PLUS_PLUS] = ACTIONS(477), - [anon_sym_DASH_DASH] = ACTIONS(477), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(477), + [sym_string] = STATE(378), + [anon_sym_DASH] = ACTIONS(679), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(679), + [sym_raw_string] = ACTIONS(681), + [anon_sym_POUND] = ACTIONS(679), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(683), + [anon_sym_STAR] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_0] = ACTIONS(683), + [anon_sym__] = ACTIONS(683), }, [114] = { - [anon_sym_AMP_AMP] = ACTIONS(689), - [anon_sym_PIPE_PIPE] = ACTIONS(689), - [anon_sym_RBRACK_RBRACK] = ACTIONS(491), - [anon_sym_EQ_TILDE] = ACTIONS(691), - [anon_sym_EQ_EQ] = ACTIONS(691), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_PLUS_EQ] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(693), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG_EQ] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_DASH_EQ] = ACTIONS(689), - [anon_sym_LT_EQ] = ACTIONS(689), - [anon_sym_GT_EQ] = ACTIONS(689), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(689), + [aux_sym_concatenation_repeat1] = STATE(373), + [sym__simple_heredoc_body] = ACTIONS(687), + [sym__heredoc_body_beginning] = ACTIONS(687), + [sym_file_descriptor] = ACTIONS(687), + [sym__concat] = ACTIONS(671), + [sym_variable_name] = ACTIONS(687), + [ts_builtin_sym_end] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_SEMI_SEMI] = ACTIONS(687), + [anon_sym_PIPE_AMP] = ACTIONS(687), + [anon_sym_AMP_AMP] = ACTIONS(687), + [anon_sym_PIPE_PIPE] = ACTIONS(687), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(687), + [anon_sym_AMP_GT] = ACTIONS(689), + [anon_sym_AMP_GT_GT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(687), + [anon_sym_LT_LT] = ACTIONS(689), + [anon_sym_LT_LT_DASH] = ACTIONS(687), + [anon_sym_LT_LT_LT] = ACTIONS(687), + [sym__special_characters] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(687), + [anon_sym_DOLLAR] = ACTIONS(689), + [sym_raw_string] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(687), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_BQUOTE] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(687), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(689), + [sym_word] = ACTIONS(689), + [anon_sym_LF] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(689), }, [115] = { - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(695), - [sym_comment] = ACTIONS(55), + [sym_subscript] = STATE(383), + [sym_variable_name] = ACTIONS(691), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(695), + [anon_sym_POUND] = ACTIONS(693), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(697), + [anon_sym_STAR] = ACTIONS(699), + [anon_sym_AT] = ACTIONS(699), + [anon_sym_QMARK] = ACTIONS(699), + [anon_sym_0] = ACTIONS(697), + [anon_sym__] = ACTIONS(697), }, [116] = { - [aux_sym_concatenation_repeat1] = STATE(391), - [sym__concat] = ACTIONS(697), - [sym_variable_name] = ACTIONS(699), - [ts_builtin_sym_end] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_SEMI_SEMI] = ACTIONS(699), - [anon_sym_PIPE_AMP] = ACTIONS(699), - [anon_sym_AMP_AMP] = ACTIONS(699), - [anon_sym_PIPE_PIPE] = ACTIONS(699), - [sym__special_characters] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(701), - [sym_raw_string] = ACTIONS(699), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), - [anon_sym_BQUOTE] = ACTIONS(699), - [anon_sym_LT_LPAREN] = ACTIONS(699), - [anon_sym_GT_LPAREN] = ACTIONS(699), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(701), - [sym_word] = ACTIONS(701), - [anon_sym_LF] = ACTIONS(699), - [anon_sym_AMP] = ACTIONS(701), + [sym__terminated_statement] = STATE(386), + [sym_redirected_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_c_style_for_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_if_statement] = STATE(384), + [sym_case_statement] = STATE(384), + [sym_function_definition] = STATE(384), + [sym_compound_statement] = STATE(384), + [sym_subshell] = STATE(384), + [sym_pipeline] = STATE(384), + [sym_list] = STATE(384), + [sym_negated_command] = STATE(384), + [sym_test_command] = STATE(384), + [sym_declaration_command] = STATE(384), + [sym_unset_command] = STATE(384), + [sym_command] = STATE(384), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(385), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(386), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [117] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(394), - [anon_sym_DQUOTE] = ACTIONS(703), - [anon_sym_DOLLAR] = ACTIONS(705), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym__terminated_statement] = STATE(389), + [sym_redirected_statement] = STATE(387), + [sym_for_statement] = STATE(387), + [sym_c_style_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_compound_statement] = STATE(387), + [sym_subshell] = STATE(387), + [sym_pipeline] = STATE(387), + [sym_list] = STATE(387), + [sym_negated_command] = STATE(387), + [sym_test_command] = STATE(387), + [sym_declaration_command] = STATE(387), + [sym_unset_command] = STATE(387), + [sym_command] = STATE(387), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(388), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(389), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [118] = { - [sym_string] = STATE(396), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_DQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR] = ACTIONS(707), - [sym_raw_string] = ACTIONS(709), - [anon_sym_POUND] = ACTIONS(707), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), - [anon_sym_STAR] = ACTIONS(713), - [anon_sym_AT] = ACTIONS(713), - [anon_sym_QMARK] = ACTIONS(713), - [anon_sym_0] = ACTIONS(711), - [anon_sym__] = ACTIONS(711), + [sym__terminated_statement] = STATE(392), + [sym_redirected_statement] = STATE(390), + [sym_for_statement] = STATE(390), + [sym_c_style_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_compound_statement] = STATE(390), + [sym_subshell] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_negated_command] = STATE(390), + [sym_test_command] = STATE(390), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), + [sym_command] = STATE(390), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(391), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(392), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [119] = { - [aux_sym_concatenation_repeat1] = STATE(391), - [sym__concat] = ACTIONS(697), - [sym_variable_name] = ACTIONS(715), - [ts_builtin_sym_end] = ACTIONS(715), - [anon_sym_SEMI] = ACTIONS(717), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_SEMI_SEMI] = ACTIONS(715), - [anon_sym_PIPE_AMP] = ACTIONS(715), - [anon_sym_AMP_AMP] = ACTIONS(715), - [anon_sym_PIPE_PIPE] = ACTIONS(715), - [sym__special_characters] = ACTIONS(715), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_DOLLAR] = ACTIONS(717), - [sym_raw_string] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(715), - [anon_sym_BQUOTE] = ACTIONS(715), - [anon_sym_LT_LPAREN] = ACTIONS(715), - [anon_sym_GT_LPAREN] = ACTIONS(715), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(717), - [sym_word] = ACTIONS(717), - [anon_sym_LF] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(717), + [anon_sym_EQ] = ACTIONS(667), + [anon_sym_PLUS_EQ] = ACTIONS(667), + [sym_comment] = ACTIONS(57), }, [120] = { - [sym_subscript] = STATE(401), - [sym_variable_name] = ACTIONS(719), - [anon_sym_BANG] = ACTIONS(721), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_DOLLAR] = ACTIONS(723), - [anon_sym_POUND] = ACTIONS(721), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(725), - [anon_sym_STAR] = ACTIONS(727), - [anon_sym_AT] = ACTIONS(727), - [anon_sym_QMARK] = ACTIONS(727), - [anon_sym_0] = ACTIONS(725), - [anon_sym__] = ACTIONS(725), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(119), + [sym_concatenation] = STATE(393), + [sym_string] = STATE(114), + [sym_simple_expansion] = STATE(114), + [sym_string_expansion] = STATE(114), + [sym_expansion] = STATE(114), + [sym_command_substitution] = STATE(114), + [sym_process_substitution] = STATE(114), + [aux_sym_declaration_command_repeat1] = STATE(393), + [sym__simple_heredoc_body] = ACTIONS(701), + [sym__heredoc_body_beginning] = ACTIONS(701), + [sym_file_descriptor] = ACTIONS(701), + [sym_variable_name] = ACTIONS(183), + [ts_builtin_sym_end] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(703), + [anon_sym_SEMI_SEMI] = ACTIONS(701), + [anon_sym_PIPE_AMP] = ACTIONS(701), + [anon_sym_AMP_AMP] = ACTIONS(701), + [anon_sym_PIPE_PIPE] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(703), + [anon_sym_GT_GT] = ACTIONS(701), + [anon_sym_AMP_GT] = ACTIONS(703), + [anon_sym_AMP_GT_GT] = ACTIONS(701), + [anon_sym_LT_AMP] = ACTIONS(701), + [anon_sym_GT_AMP] = ACTIONS(701), + [anon_sym_LT_LT] = ACTIONS(703), + [anon_sym_LT_LT_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(701), + [sym__special_characters] = ACTIONS(187), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(193), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(199), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(705), + [sym_word] = ACTIONS(205), + [anon_sym_LF] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), }, [121] = { - [sym__terminated_statement] = STATE(404), - [sym_for_statement] = STATE(402), - [sym_c_style_for_statement] = STATE(402), - [sym_while_statement] = STATE(402), - [sym_if_statement] = STATE(402), - [sym_case_statement] = STATE(402), - [sym_function_definition] = STATE(402), - [sym_subshell] = STATE(402), - [sym_pipeline] = STATE(402), - [sym_list] = STATE(402), - [sym_negated_command] = STATE(402), - [sym_test_command] = STATE(402), - [sym_declaration_command] = STATE(402), - [sym_unset_command] = STATE(402), - [sym_command] = STATE(402), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(403), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(404), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [aux_sym_concatenation_repeat1] = STATE(395), + [sym__simple_heredoc_body] = ACTIONS(707), + [sym__heredoc_body_beginning] = ACTIONS(707), + [sym_file_descriptor] = ACTIONS(707), + [sym__concat] = ACTIONS(709), + [ts_builtin_sym_end] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(711), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(711), + [anon_sym_GT_GT] = ACTIONS(707), + [anon_sym_AMP_GT] = ACTIONS(711), + [anon_sym_AMP_GT_GT] = ACTIONS(707), + [anon_sym_LT_AMP] = ACTIONS(707), + [anon_sym_GT_AMP] = ACTIONS(707), + [anon_sym_LT_LT] = ACTIONS(711), + [anon_sym_LT_LT_DASH] = ACTIONS(707), + [anon_sym_LT_LT_LT] = ACTIONS(707), + [sym__special_characters] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(711), + [sym_raw_string] = ACTIONS(707), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(707), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(707), + [anon_sym_BQUOTE] = ACTIONS(707), + [anon_sym_LT_LPAREN] = ACTIONS(707), + [anon_sym_GT_LPAREN] = ACTIONS(707), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [sym_word] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(711), }, [122] = { - [sym__terminated_statement] = STATE(407), - [sym_for_statement] = STATE(405), - [sym_c_style_for_statement] = STATE(405), - [sym_while_statement] = STATE(405), - [sym_if_statement] = STATE(405), - [sym_case_statement] = STATE(405), - [sym_function_definition] = STATE(405), - [sym_subshell] = STATE(405), - [sym_pipeline] = STATE(405), - [sym_list] = STATE(405), - [sym_negated_command] = STATE(405), - [sym_test_command] = STATE(405), - [sym_declaration_command] = STATE(405), - [sym_unset_command] = STATE(405), - [sym_command] = STATE(405), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(406), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(407), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(398), + [anon_sym_DQUOTE] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(715), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [123] = { - [sym__terminated_statement] = STATE(410), - [sym_for_statement] = STATE(408), - [sym_c_style_for_statement] = STATE(408), - [sym_while_statement] = STATE(408), - [sym_if_statement] = STATE(408), - [sym_case_statement] = STATE(408), - [sym_function_definition] = STATE(408), - [sym_subshell] = STATE(408), - [sym_pipeline] = STATE(408), - [sym_list] = STATE(408), - [sym_negated_command] = STATE(408), - [sym_test_command] = STATE(408), - [sym_declaration_command] = STATE(408), - [sym_unset_command] = STATE(408), - [sym_command] = STATE(408), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(409), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(410), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_string] = STATE(400), + [anon_sym_DASH] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(717), + [sym_raw_string] = ACTIONS(719), + [anon_sym_POUND] = ACTIONS(717), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(723), + [anon_sym_AT] = ACTIONS(723), + [anon_sym_QMARK] = ACTIONS(723), + [anon_sym_0] = ACTIONS(721), + [anon_sym__] = ACTIONS(721), }, [124] = { - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(695), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(395), + [sym__simple_heredoc_body] = ACTIONS(725), + [sym__heredoc_body_beginning] = ACTIONS(725), + [sym_file_descriptor] = ACTIONS(725), + [sym__concat] = ACTIONS(709), + [ts_builtin_sym_end] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_SEMI_SEMI] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_AMP_GT] = ACTIONS(727), + [anon_sym_AMP_GT_GT] = ACTIONS(725), + [anon_sym_LT_AMP] = ACTIONS(725), + [anon_sym_GT_AMP] = ACTIONS(725), + [anon_sym_LT_LT] = ACTIONS(727), + [anon_sym_LT_LT_DASH] = ACTIONS(725), + [anon_sym_LT_LT_LT] = ACTIONS(725), + [sym__special_characters] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(727), + [sym_raw_string] = ACTIONS(725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_LT_LPAREN] = ACTIONS(725), + [anon_sym_GT_LPAREN] = ACTIONS(725), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(727), + [sym_word] = ACTIONS(727), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_AMP] = ACTIONS(727), }, [125] = { - [sym_variable_assignment] = STATE(411), - [sym_subscript] = STATE(124), - [sym_concatenation] = STATE(411), - [sym_string] = STATE(119), - [sym_simple_expansion] = STATE(119), - [sym_string_expansion] = STATE(119), - [sym_expansion] = STATE(119), - [sym_command_substitution] = STATE(119), - [sym_process_substitution] = STATE(119), - [aux_sym_declaration_command_repeat1] = STATE(411), - [sym_variable_name] = ACTIONS(197), - [ts_builtin_sym_end] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_SEMI_SEMI] = ACTIONS(729), - [anon_sym_PIPE_AMP] = ACTIONS(729), - [anon_sym_AMP_AMP] = ACTIONS(729), - [anon_sym_PIPE_PIPE] = ACTIONS(729), - [sym__special_characters] = ACTIONS(203), - [anon_sym_DQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR] = ACTIONS(207), - [sym_raw_string] = ACTIONS(209), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_BQUOTE] = ACTIONS(215), - [anon_sym_LT_LPAREN] = ACTIONS(217), - [anon_sym_GT_LPAREN] = ACTIONS(217), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(733), - [sym_word] = ACTIONS(221), - [anon_sym_LF] = ACTIONS(729), - [anon_sym_AMP] = ACTIONS(731), + [sym_subscript] = STATE(405), + [sym_variable_name] = ACTIONS(729), + [anon_sym_BANG] = ACTIONS(731), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(733), + [anon_sym_POUND] = ACTIONS(731), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(735), + [anon_sym_STAR] = ACTIONS(737), + [anon_sym_AT] = ACTIONS(737), + [anon_sym_QMARK] = ACTIONS(737), + [anon_sym_0] = ACTIONS(735), + [anon_sym__] = ACTIONS(735), }, [126] = { - [aux_sym_concatenation_repeat1] = STATE(413), - [sym__concat] = ACTIONS(735), - [ts_builtin_sym_end] = ACTIONS(737), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [sym__special_characters] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(739), - [sym_raw_string] = ACTIONS(737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [anon_sym_LT_LPAREN] = ACTIONS(737), - [anon_sym_GT_LPAREN] = ACTIONS(737), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(739), - [sym_word] = ACTIONS(739), - [anon_sym_LF] = ACTIONS(737), - [anon_sym_AMP] = ACTIONS(739), + [sym__terminated_statement] = STATE(408), + [sym_redirected_statement] = STATE(406), + [sym_for_statement] = STATE(406), + [sym_c_style_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_compound_statement] = STATE(406), + [sym_subshell] = STATE(406), + [sym_pipeline] = STATE(406), + [sym_list] = STATE(406), + [sym_negated_command] = STATE(406), + [sym_test_command] = STATE(406), + [sym_declaration_command] = STATE(406), + [sym_unset_command] = STATE(406), + [sym_command] = STATE(406), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(407), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(408), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [127] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(416), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym__terminated_statement] = STATE(411), + [sym_redirected_statement] = STATE(409), + [sym_for_statement] = STATE(409), + [sym_c_style_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_compound_statement] = STATE(409), + [sym_subshell] = STATE(409), + [sym_pipeline] = STATE(409), + [sym_list] = STATE(409), + [sym_negated_command] = STATE(409), + [sym_test_command] = STATE(409), + [sym_declaration_command] = STATE(409), + [sym_unset_command] = STATE(409), + [sym_command] = STATE(409), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(410), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(411), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [128] = { - [sym_string] = STATE(418), - [anon_sym_DASH] = ACTIONS(745), - [anon_sym_DQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(745), - [sym_raw_string] = ACTIONS(747), - [anon_sym_POUND] = ACTIONS(745), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(749), - [anon_sym_STAR] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(751), - [anon_sym_QMARK] = ACTIONS(751), - [anon_sym_0] = ACTIONS(749), - [anon_sym__] = ACTIONS(749), + [sym__terminated_statement] = STATE(414), + [sym_redirected_statement] = STATE(412), + [sym_for_statement] = STATE(412), + [sym_c_style_for_statement] = STATE(412), + [sym_while_statement] = STATE(412), + [sym_if_statement] = STATE(412), + [sym_case_statement] = STATE(412), + [sym_function_definition] = STATE(412), + [sym_compound_statement] = STATE(412), + [sym_subshell] = STATE(412), + [sym_pipeline] = STATE(412), + [sym_list] = STATE(412), + [sym_negated_command] = STATE(412), + [sym_test_command] = STATE(412), + [sym_declaration_command] = STATE(412), + [sym_unset_command] = STATE(412), + [sym_command] = STATE(412), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(413), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(414), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [129] = { - [aux_sym_concatenation_repeat1] = STATE(413), - [sym__concat] = ACTIONS(735), - [ts_builtin_sym_end] = ACTIONS(753), - [anon_sym_SEMI] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(755), - [anon_sym_SEMI_SEMI] = ACTIONS(753), - [anon_sym_PIPE_AMP] = ACTIONS(753), - [anon_sym_AMP_AMP] = ACTIONS(753), - [anon_sym_PIPE_PIPE] = ACTIONS(753), - [sym__special_characters] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(755), - [sym_raw_string] = ACTIONS(753), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(753), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(753), - [anon_sym_LT_LPAREN] = ACTIONS(753), - [anon_sym_GT_LPAREN] = ACTIONS(753), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(755), - [sym_word] = ACTIONS(755), - [anon_sym_LF] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(755), + [sym_concatenation] = STATE(415), + [sym_string] = STATE(124), + [sym_simple_expansion] = STATE(124), + [sym_string_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [sym_process_substitution] = STATE(124), + [aux_sym_unset_command_repeat1] = STATE(415), + [sym__simple_heredoc_body] = ACTIONS(739), + [sym__heredoc_body_beginning] = ACTIONS(739), + [sym_file_descriptor] = ACTIONS(739), + [ts_builtin_sym_end] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_SEMI_SEMI] = ACTIONS(739), + [anon_sym_PIPE_AMP] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(739), + [anon_sym_PIPE_PIPE] = ACTIONS(739), + [anon_sym_LT] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(741), + [anon_sym_GT_GT] = ACTIONS(739), + [anon_sym_AMP_GT] = ACTIONS(741), + [anon_sym_AMP_GT_GT] = ACTIONS(739), + [anon_sym_LT_AMP] = ACTIONS(739), + [anon_sym_GT_AMP] = ACTIONS(739), + [anon_sym_LT_LT] = ACTIONS(741), + [anon_sym_LT_LT_DASH] = ACTIONS(739), + [anon_sym_LT_LT_LT] = ACTIONS(739), + [sym__special_characters] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(215), + [sym_raw_string] = ACTIONS(217), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), + [anon_sym_BQUOTE] = ACTIONS(223), + [anon_sym_LT_LPAREN] = ACTIONS(225), + [anon_sym_GT_LPAREN] = ACTIONS(225), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(743), + [sym_word] = ACTIONS(229), + [anon_sym_LF] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(741), }, [130] = { - [sym_subscript] = STATE(423), - [sym_variable_name] = ACTIONS(757), - [anon_sym_BANG] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(761), - [anon_sym_DOLLAR] = ACTIONS(761), - [anon_sym_POUND] = ACTIONS(759), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(763), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_AT] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(765), - [anon_sym_0] = ACTIONS(763), - [anon_sym__] = ACTIONS(763), + [aux_sym_concatenation_repeat1] = STATE(417), + [sym_file_descriptor] = ACTIONS(745), + [sym__concat] = ACTIONS(747), + [sym_variable_name] = ACTIONS(745), + [anon_sym_LT] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(749), + [anon_sym_GT_GT] = ACTIONS(745), + [anon_sym_AMP_GT] = ACTIONS(749), + [anon_sym_AMP_GT_GT] = ACTIONS(745), + [anon_sym_LT_AMP] = ACTIONS(745), + [anon_sym_GT_AMP] = ACTIONS(745), + [sym__special_characters] = ACTIONS(745), + [anon_sym_DQUOTE] = ACTIONS(745), + [anon_sym_DOLLAR] = ACTIONS(749), + [sym_raw_string] = ACTIONS(745), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(745), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(745), + [anon_sym_BQUOTE] = ACTIONS(745), + [anon_sym_LT_LPAREN] = ACTIONS(745), + [anon_sym_GT_LPAREN] = ACTIONS(745), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(745), }, [131] = { - [sym__terminated_statement] = STATE(426), - [sym_for_statement] = STATE(424), - [sym_c_style_for_statement] = STATE(424), - [sym_while_statement] = STATE(424), - [sym_if_statement] = STATE(424), - [sym_case_statement] = STATE(424), - [sym_function_definition] = STATE(424), - [sym_subshell] = STATE(424), - [sym_pipeline] = STATE(424), - [sym_list] = STATE(424), - [sym_negated_command] = STATE(424), - [sym_test_command] = STATE(424), - [sym_declaration_command] = STATE(424), - [sym_unset_command] = STATE(424), - [sym_command] = STATE(424), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(425), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(420), + [anon_sym_DQUOTE] = ACTIONS(751), + [anon_sym_DOLLAR] = ACTIONS(753), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [132] = { - [sym__terminated_statement] = STATE(429), - [sym_for_statement] = STATE(427), - [sym_c_style_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_negated_command] = STATE(427), - [sym_test_command] = STATE(427), - [sym_declaration_command] = STATE(427), - [sym_unset_command] = STATE(427), - [sym_command] = STATE(427), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(428), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym_string] = STATE(422), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(755), + [sym_raw_string] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(755), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(761), + [anon_sym_AT] = ACTIONS(761), + [anon_sym_QMARK] = ACTIONS(761), + [anon_sym_0] = ACTIONS(759), + [anon_sym__] = ACTIONS(759), }, [133] = { - [sym__terminated_statement] = STATE(432), - [sym_for_statement] = STATE(430), - [sym_c_style_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_negated_command] = STATE(430), - [sym_test_command] = STATE(430), - [sym_declaration_command] = STATE(430), - [sym_unset_command] = STATE(430), - [sym_command] = STATE(430), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(431), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(432), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [aux_sym_concatenation_repeat1] = STATE(417), + [sym_file_descriptor] = ACTIONS(763), + [sym__concat] = ACTIONS(747), + [sym_variable_name] = ACTIONS(763), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(763), + [anon_sym_AMP_GT] = ACTIONS(765), + [anon_sym_AMP_GT_GT] = ACTIONS(763), + [anon_sym_LT_AMP] = ACTIONS(763), + [anon_sym_GT_AMP] = ACTIONS(763), + [sym__special_characters] = ACTIONS(763), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(763), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(763), + [anon_sym_GT_LPAREN] = ACTIONS(763), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(763), }, [134] = { - [sym_concatenation] = STATE(433), - [sym_string] = STATE(129), - [sym_simple_expansion] = STATE(129), - [sym_string_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [sym_process_substitution] = STATE(129), - [aux_sym_unset_command_repeat1] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(767), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_SEMI_SEMI] = ACTIONS(767), - [anon_sym_PIPE_AMP] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(767), - [anon_sym_PIPE_PIPE] = ACTIONS(767), - [sym__special_characters] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [sym_raw_string] = ACTIONS(233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [anon_sym_LT_LPAREN] = ACTIONS(241), - [anon_sym_GT_LPAREN] = ACTIONS(241), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(771), - [sym_word] = ACTIONS(245), - [anon_sym_LF] = ACTIONS(767), - [anon_sym_AMP] = ACTIONS(769), + [sym_subscript] = STATE(427), + [sym_variable_name] = ACTIONS(767), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(771), + [anon_sym_POUND] = ACTIONS(769), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AT] = ACTIONS(775), + [anon_sym_QMARK] = ACTIONS(775), + [anon_sym_0] = ACTIONS(773), + [anon_sym__] = ACTIONS(773), }, [135] = { - [aux_sym_concatenation_repeat1] = STATE(435), - [sym_file_descriptor] = ACTIONS(773), - [sym__concat] = ACTIONS(775), - [sym_variable_name] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(773), - [anon_sym_AMP_GT] = ACTIONS(777), - [anon_sym_AMP_GT_GT] = ACTIONS(773), - [anon_sym_LT_AMP] = ACTIONS(773), - [anon_sym_GT_AMP] = ACTIONS(773), - [sym__special_characters] = ACTIONS(773), - [anon_sym_DQUOTE] = ACTIONS(773), - [anon_sym_DOLLAR] = ACTIONS(777), - [sym_raw_string] = ACTIONS(773), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(773), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(773), - [anon_sym_BQUOTE] = ACTIONS(773), - [anon_sym_LT_LPAREN] = ACTIONS(773), - [anon_sym_GT_LPAREN] = ACTIONS(773), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(773), + [sym__terminated_statement] = STATE(430), + [sym_redirected_statement] = STATE(428), + [sym_for_statement] = STATE(428), + [sym_c_style_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_compound_statement] = STATE(428), + [sym_subshell] = STATE(428), + [sym_pipeline] = STATE(428), + [sym_list] = STATE(428), + [sym_negated_command] = STATE(428), + [sym_test_command] = STATE(428), + [sym_declaration_command] = STATE(428), + [sym_unset_command] = STATE(428), + [sym_command] = STATE(428), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(429), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(430), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [136] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(438), - [anon_sym_DQUOTE] = ACTIONS(779), - [anon_sym_DOLLAR] = ACTIONS(781), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym__terminated_statement] = STATE(433), + [sym_redirected_statement] = STATE(431), + [sym_for_statement] = STATE(431), + [sym_c_style_for_statement] = STATE(431), + [sym_while_statement] = STATE(431), + [sym_if_statement] = STATE(431), + [sym_case_statement] = STATE(431), + [sym_function_definition] = STATE(431), + [sym_compound_statement] = STATE(431), + [sym_subshell] = STATE(431), + [sym_pipeline] = STATE(431), + [sym_list] = STATE(431), + [sym_negated_command] = STATE(431), + [sym_test_command] = STATE(431), + [sym_declaration_command] = STATE(431), + [sym_unset_command] = STATE(431), + [sym_command] = STATE(431), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(432), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(433), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [137] = { - [sym_string] = STATE(440), - [anon_sym_DASH] = ACTIONS(783), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR] = ACTIONS(783), - [sym_raw_string] = ACTIONS(785), - [anon_sym_POUND] = ACTIONS(783), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(787), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_AT] = ACTIONS(789), - [anon_sym_QMARK] = ACTIONS(789), - [anon_sym_0] = ACTIONS(787), - [anon_sym__] = ACTIONS(787), + [sym__terminated_statement] = STATE(436), + [sym_redirected_statement] = STATE(434), + [sym_for_statement] = STATE(434), + [sym_c_style_for_statement] = STATE(434), + [sym_while_statement] = STATE(434), + [sym_if_statement] = STATE(434), + [sym_case_statement] = STATE(434), + [sym_function_definition] = STATE(434), + [sym_compound_statement] = STATE(434), + [sym_subshell] = STATE(434), + [sym_pipeline] = STATE(434), + [sym_list] = STATE(434), + [sym_negated_command] = STATE(434), + [sym_test_command] = STATE(434), + [sym_declaration_command] = STATE(434), + [sym_unset_command] = STATE(434), + [sym_command] = STATE(434), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(435), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(436), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [138] = { - [aux_sym_concatenation_repeat1] = STATE(435), - [sym_file_descriptor] = ACTIONS(791), - [sym__concat] = ACTIONS(775), - [sym_variable_name] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_GT_GT] = ACTIONS(791), - [anon_sym_AMP_GT] = ACTIONS(793), - [anon_sym_AMP_GT_GT] = ACTIONS(791), - [anon_sym_LT_AMP] = ACTIONS(791), - [anon_sym_GT_AMP] = ACTIONS(791), - [sym__special_characters] = ACTIONS(791), - [anon_sym_DQUOTE] = ACTIONS(791), - [anon_sym_DOLLAR] = ACTIONS(793), - [sym_raw_string] = ACTIONS(791), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(791), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(791), - [anon_sym_BQUOTE] = ACTIONS(791), - [anon_sym_LT_LPAREN] = ACTIONS(791), - [anon_sym_GT_LPAREN] = ACTIONS(791), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(791), + [sym_file_descriptor] = ACTIONS(763), + [sym_variable_name] = ACTIONS(763), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(763), + [anon_sym_AMP_GT] = ACTIONS(765), + [anon_sym_AMP_GT_GT] = ACTIONS(763), + [anon_sym_LT_AMP] = ACTIONS(763), + [anon_sym_GT_AMP] = ACTIONS(763), + [sym__special_characters] = ACTIONS(763), + [anon_sym_DQUOTE] = ACTIONS(763), + [anon_sym_DOLLAR] = ACTIONS(765), + [sym_raw_string] = ACTIONS(763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(763), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(763), + [anon_sym_GT_LPAREN] = ACTIONS(763), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(763), }, [139] = { - [sym_subscript] = STATE(445), - [sym_variable_name] = ACTIONS(795), - [anon_sym_BANG] = ACTIONS(797), - [anon_sym_DASH] = ACTIONS(799), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_POUND] = ACTIONS(797), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(803), - [anon_sym_AT] = ACTIONS(803), - [anon_sym_QMARK] = ACTIONS(803), - [anon_sym_0] = ACTIONS(801), - [anon_sym__] = ACTIONS(801), + [sym_string] = STATE(437), + [sym_simple_expansion] = STATE(437), + [sym_string_expansion] = STATE(437), + [sym_expansion] = STATE(437), + [sym_command_substitution] = STATE(437), + [sym_process_substitution] = STATE(437), + [sym__special_characters] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(777), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(777), }, [140] = { - [sym__terminated_statement] = STATE(448), - [sym_for_statement] = STATE(446), - [sym_c_style_for_statement] = STATE(446), - [sym_while_statement] = STATE(446), - [sym_if_statement] = STATE(446), - [sym_case_statement] = STATE(446), - [sym_function_definition] = STATE(446), - [sym_subshell] = STATE(446), - [sym_pipeline] = STATE(446), - [sym_list] = STATE(446), - [sym_negated_command] = STATE(446), - [sym_test_command] = STATE(446), - [sym_declaration_command] = STATE(446), - [sym_unset_command] = STATE(446), - [sym_command] = STATE(446), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(447), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(448), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [aux_sym_concatenation_repeat1] = STATE(438), + [sym__simple_heredoc_body] = ACTIONS(779), + [sym__heredoc_body_beginning] = ACTIONS(779), + [sym_file_descriptor] = ACTIONS(779), + [sym__concat] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [anon_sym_PIPE_AMP] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_EQ_TILDE] = ACTIONS(781), + [anon_sym_EQ_EQ] = ACTIONS(781), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_AMP_GT] = ACTIONS(781), + [anon_sym_AMP_GT_GT] = ACTIONS(779), + [anon_sym_LT_AMP] = ACTIONS(779), + [anon_sym_GT_AMP] = ACTIONS(779), + [anon_sym_LT_LT] = ACTIONS(781), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_LT] = ACTIONS(779), + [sym__special_characters] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(781), + [sym_raw_string] = ACTIONS(779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(779), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(781), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(781), }, [141] = { - [sym__terminated_statement] = STATE(451), - [sym_for_statement] = STATE(449), - [sym_c_style_for_statement] = STATE(449), - [sym_while_statement] = STATE(449), - [sym_if_statement] = STATE(449), - [sym_case_statement] = STATE(449), - [sym_function_definition] = STATE(449), - [sym_subshell] = STATE(449), - [sym_pipeline] = STATE(449), - [sym_list] = STATE(449), - [sym_negated_command] = STATE(449), - [sym_test_command] = STATE(449), - [sym_declaration_command] = STATE(449), - [sym_unset_command] = STATE(449), - [sym_command] = STATE(449), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(450), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(451), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym__simple_heredoc_body] = ACTIONS(783), + [sym__heredoc_body_beginning] = ACTIONS(783), + [sym_file_descriptor] = ACTIONS(783), + [sym__concat] = ACTIONS(783), + [ts_builtin_sym_end] = ACTIONS(783), + [anon_sym_SEMI] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_RPAREN] = ACTIONS(783), + [anon_sym_SEMI_SEMI] = ACTIONS(783), + [anon_sym_PIPE_AMP] = ACTIONS(783), + [anon_sym_AMP_AMP] = ACTIONS(783), + [anon_sym_PIPE_PIPE] = ACTIONS(783), + [anon_sym_EQ_TILDE] = ACTIONS(785), + [anon_sym_EQ_EQ] = ACTIONS(785), + [anon_sym_LT] = ACTIONS(785), + [anon_sym_GT] = ACTIONS(785), + [anon_sym_GT_GT] = ACTIONS(783), + [anon_sym_AMP_GT] = ACTIONS(785), + [anon_sym_AMP_GT_GT] = ACTIONS(783), + [anon_sym_LT_AMP] = ACTIONS(783), + [anon_sym_GT_AMP] = ACTIONS(783), + [anon_sym_LT_LT] = ACTIONS(785), + [anon_sym_LT_LT_DASH] = ACTIONS(783), + [anon_sym_LT_LT_LT] = ACTIONS(783), + [sym__special_characters] = ACTIONS(783), + [anon_sym_DQUOTE] = ACTIONS(783), + [anon_sym_DOLLAR] = ACTIONS(785), + [sym_raw_string] = ACTIONS(783), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(783), + [anon_sym_BQUOTE] = ACTIONS(783), + [anon_sym_LT_LPAREN] = ACTIONS(783), + [anon_sym_GT_LPAREN] = ACTIONS(783), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(785), + [anon_sym_LF] = ACTIONS(783), + [anon_sym_AMP] = ACTIONS(785), }, [142] = { - [sym__terminated_statement] = STATE(454), - [sym_for_statement] = STATE(452), - [sym_c_style_for_statement] = STATE(452), - [sym_while_statement] = STATE(452), - [sym_if_statement] = STATE(452), - [sym_case_statement] = STATE(452), - [sym_function_definition] = STATE(452), - [sym_subshell] = STATE(452), - [sym_pipeline] = STATE(452), - [sym_list] = STATE(452), - [sym_negated_command] = STATE(452), - [sym_test_command] = STATE(452), - [sym_declaration_command] = STATE(452), - [sym_unset_command] = STATE(452), - [sym_command] = STATE(452), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(453), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(454), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [143] = { - [sym_file_descriptor] = ACTIONS(791), - [sym_variable_name] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_GT_GT] = ACTIONS(791), - [anon_sym_AMP_GT] = ACTIONS(793), - [anon_sym_AMP_GT_GT] = ACTIONS(791), - [anon_sym_LT_AMP] = ACTIONS(791), - [anon_sym_GT_AMP] = ACTIONS(791), - [sym__special_characters] = ACTIONS(791), - [anon_sym_DQUOTE] = ACTIONS(791), - [anon_sym_DOLLAR] = ACTIONS(793), - [sym_raw_string] = ACTIONS(791), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(791), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(791), - [anon_sym_BQUOTE] = ACTIONS(791), - [anon_sym_LT_LPAREN] = ACTIONS(791), - [anon_sym_GT_LPAREN] = ACTIONS(791), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(791), + [sym__concat] = ACTIONS(799), + [anon_sym_DQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [sym__string_content] = ACTIONS(803), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(801), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(801), + [anon_sym_BQUOTE] = ACTIONS(801), + [sym_comment] = ACTIONS(265), }, [144] = { - [sym_string] = STATE(455), - [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__special_characters] = ACTIONS(805), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(805), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(805), + [sym_subscript] = STATE(447), + [sym_variable_name] = ACTIONS(805), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_DOLLAR] = ACTIONS(809), + [anon_sym_POUND] = ACTIONS(807), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(813), + [anon_sym_AT] = ACTIONS(813), + [anon_sym_QMARK] = ACTIONS(813), + [anon_sym_0] = ACTIONS(811), + [anon_sym__] = ACTIONS(811), }, [145] = { - [aux_sym_concatenation_repeat1] = STATE(456), - [sym__simple_heredoc_body] = ACTIONS(807), - [sym__heredoc_body_beginning] = ACTIONS(807), - [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(265), - [ts_builtin_sym_end] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(809), - [anon_sym_AMP_GT_GT] = ACTIONS(807), - [anon_sym_LT_AMP] = ACTIONS(807), - [anon_sym_GT_AMP] = ACTIONS(807), - [anon_sym_LT_LT] = ACTIONS(809), - [anon_sym_LT_LT_DASH] = ACTIONS(807), - [anon_sym_LT_LT_LT] = ACTIONS(807), - [sym__special_characters] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_LT_LPAREN] = ACTIONS(807), - [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(809), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), + [sym__terminated_statement] = STATE(450), + [sym_redirected_statement] = STATE(448), + [sym_for_statement] = STATE(448), + [sym_c_style_for_statement] = STATE(448), + [sym_while_statement] = STATE(448), + [sym_if_statement] = STATE(448), + [sym_case_statement] = STATE(448), + [sym_function_definition] = STATE(448), + [sym_compound_statement] = STATE(448), + [sym_subshell] = STATE(448), + [sym_pipeline] = STATE(448), + [sym_list] = STATE(448), + [sym_negated_command] = STATE(448), + [sym_test_command] = STATE(448), + [sym_declaration_command] = STATE(448), + [sym_unset_command] = STATE(448), + [sym_command] = STATE(448), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(449), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(450), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [146] = { - [sym__simple_heredoc_body] = ACTIONS(811), - [sym__heredoc_body_beginning] = ACTIONS(811), - [sym_file_descriptor] = ACTIONS(811), - [sym__concat] = ACTIONS(811), - [ts_builtin_sym_end] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(813), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_EQ_TILDE] = ACTIONS(813), - [anon_sym_EQ_EQ] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_AMP_GT] = ACTIONS(813), - [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_LT_AMP] = ACTIONS(811), - [anon_sym_GT_AMP] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(813), - [anon_sym_LT_LT_DASH] = ACTIONS(811), - [anon_sym_LT_LT_LT] = ACTIONS(811), - [sym__special_characters] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(813), - [sym_raw_string] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(813), - [anon_sym_LF] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(813), + [sym__terminated_statement] = STATE(453), + [sym_redirected_statement] = STATE(451), + [sym_for_statement] = STATE(451), + [sym_c_style_for_statement] = STATE(451), + [sym_while_statement] = STATE(451), + [sym_if_statement] = STATE(451), + [sym_case_statement] = STATE(451), + [sym_function_definition] = STATE(451), + [sym_compound_statement] = STATE(451), + [sym_subshell] = STATE(451), + [sym_pipeline] = STATE(451), + [sym_list] = STATE(451), + [sym_negated_command] = STATE(451), + [sym_test_command] = STATE(451), + [sym_declaration_command] = STATE(451), + [sym_unset_command] = STATE(451), + [sym_command] = STATE(451), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(452), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(453), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [147] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(817), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(455), + [anon_sym_DQUOTE] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(815), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [148] = { - [sym__concat] = ACTIONS(827), - [anon_sym_DQUOTE] = ACTIONS(829), - [anon_sym_DOLLAR] = ACTIONS(829), - [sym__string_content] = ACTIONS(831), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(829), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(829), - [anon_sym_BQUOTE] = ACTIONS(829), - [sym_comment] = ACTIONS(281), + [sym__simple_heredoc_body] = ACTIONS(817), + [sym__heredoc_body_beginning] = ACTIONS(817), + [sym_file_descriptor] = ACTIONS(817), + [sym__concat] = ACTIONS(817), + [ts_builtin_sym_end] = ACTIONS(817), + [anon_sym_SEMI] = ACTIONS(819), + [anon_sym_PIPE] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(817), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_PIPE_AMP] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_EQ_TILDE] = ACTIONS(819), + [anon_sym_EQ_EQ] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [anon_sym_LT_LT] = ACTIONS(819), + [anon_sym_LT_LT_DASH] = ACTIONS(817), + [anon_sym_LT_LT_LT] = ACTIONS(817), + [sym__special_characters] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(819), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(819), }, [149] = { - [sym_subscript] = STATE(465), - [sym_variable_name] = ACTIONS(833), - [anon_sym_BANG] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_DOLLAR] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(835), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(839), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_AT] = ACTIONS(841), - [anon_sym_QMARK] = ACTIONS(841), - [anon_sym_0] = ACTIONS(839), - [anon_sym__] = ACTIONS(839), + [sym__simple_heredoc_body] = ACTIONS(821), + [sym__heredoc_body_beginning] = ACTIONS(821), + [sym_file_descriptor] = ACTIONS(821), + [sym__concat] = ACTIONS(821), + [ts_builtin_sym_end] = ACTIONS(821), + [anon_sym_SEMI] = ACTIONS(823), + [anon_sym_PIPE] = ACTIONS(823), + [anon_sym_RPAREN] = ACTIONS(821), + [anon_sym_SEMI_SEMI] = ACTIONS(821), + [anon_sym_PIPE_AMP] = ACTIONS(821), + [anon_sym_AMP_AMP] = ACTIONS(821), + [anon_sym_PIPE_PIPE] = ACTIONS(821), + [anon_sym_EQ_TILDE] = ACTIONS(823), + [anon_sym_EQ_EQ] = ACTIONS(823), + [anon_sym_LT] = ACTIONS(823), + [anon_sym_GT] = ACTIONS(823), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_AMP_GT] = ACTIONS(823), + [anon_sym_AMP_GT_GT] = ACTIONS(821), + [anon_sym_LT_AMP] = ACTIONS(821), + [anon_sym_GT_AMP] = ACTIONS(821), + [anon_sym_LT_LT] = ACTIONS(823), + [anon_sym_LT_LT_DASH] = ACTIONS(821), + [anon_sym_LT_LT_LT] = ACTIONS(821), + [sym__special_characters] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(823), + [sym_raw_string] = ACTIONS(821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(821), + [anon_sym_BQUOTE] = ACTIONS(821), + [anon_sym_LT_LPAREN] = ACTIONS(821), + [anon_sym_GT_LPAREN] = ACTIONS(821), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(823), + [anon_sym_LF] = ACTIONS(821), + [anon_sym_AMP] = ACTIONS(823), }, [150] = { - [sym__terminated_statement] = STATE(468), - [sym_for_statement] = STATE(466), - [sym_c_style_for_statement] = STATE(466), - [sym_while_statement] = STATE(466), - [sym_if_statement] = STATE(466), - [sym_case_statement] = STATE(466), - [sym_function_definition] = STATE(466), - [sym_subshell] = STATE(466), - [sym_pipeline] = STATE(466), - [sym_list] = STATE(466), - [sym_negated_command] = STATE(466), - [sym_test_command] = STATE(466), - [sym_declaration_command] = STATE(466), - [sym_unset_command] = STATE(466), - [sym_command] = STATE(466), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(467), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(468), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym__simple_heredoc_body] = ACTIONS(825), + [sym__heredoc_body_beginning] = ACTIONS(825), + [sym_file_descriptor] = ACTIONS(825), + [sym__concat] = ACTIONS(825), + [ts_builtin_sym_end] = ACTIONS(825), + [anon_sym_SEMI] = ACTIONS(827), + [anon_sym_PIPE] = ACTIONS(827), + [anon_sym_RPAREN] = ACTIONS(825), + [anon_sym_SEMI_SEMI] = ACTIONS(825), + [anon_sym_PIPE_AMP] = ACTIONS(825), + [anon_sym_AMP_AMP] = ACTIONS(825), + [anon_sym_PIPE_PIPE] = ACTIONS(825), + [anon_sym_EQ_TILDE] = ACTIONS(827), + [anon_sym_EQ_EQ] = ACTIONS(827), + [anon_sym_LT] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_GT_GT] = ACTIONS(825), + [anon_sym_AMP_GT] = ACTIONS(827), + [anon_sym_AMP_GT_GT] = ACTIONS(825), + [anon_sym_LT_AMP] = ACTIONS(825), + [anon_sym_GT_AMP] = ACTIONS(825), + [anon_sym_LT_LT] = ACTIONS(827), + [anon_sym_LT_LT_DASH] = ACTIONS(825), + [anon_sym_LT_LT_LT] = ACTIONS(825), + [sym__special_characters] = ACTIONS(825), + [anon_sym_DQUOTE] = ACTIONS(825), + [anon_sym_DOLLAR] = ACTIONS(827), + [sym_raw_string] = ACTIONS(825), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(825), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_LT_LPAREN] = ACTIONS(825), + [anon_sym_GT_LPAREN] = ACTIONS(825), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(825), + [anon_sym_AMP] = ACTIONS(827), }, [151] = { - [sym__terminated_statement] = STATE(471), - [sym_for_statement] = STATE(469), - [sym_c_style_for_statement] = STATE(469), - [sym_while_statement] = STATE(469), - [sym_if_statement] = STATE(469), - [sym_case_statement] = STATE(469), - [sym_function_definition] = STATE(469), - [sym_subshell] = STATE(469), - [sym_pipeline] = STATE(469), - [sym_list] = STATE(469), - [sym_negated_command] = STATE(469), - [sym_test_command] = STATE(469), - [sym_declaration_command] = STATE(469), - [sym_unset_command] = STATE(469), - [sym_command] = STATE(469), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(470), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(471), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(831), + [sym_comment] = ACTIONS(57), }, [152] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(473), - [anon_sym_DQUOTE] = ACTIONS(817), - [anon_sym_DOLLAR] = ACTIONS(843), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym_subscript] = STATE(460), + [sym_variable_name] = ACTIONS(833), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_DOLLAR] = ACTIONS(835), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(837), + [anon_sym_STAR] = ACTIONS(839), + [anon_sym_AT] = ACTIONS(839), + [anon_sym_QMARK] = ACTIONS(839), + [anon_sym_0] = ACTIONS(837), + [anon_sym__] = ACTIONS(837), }, [153] = { - [sym__simple_heredoc_body] = ACTIONS(845), - [sym__heredoc_body_beginning] = ACTIONS(845), - [sym_file_descriptor] = ACTIONS(845), - [sym__concat] = ACTIONS(845), - [ts_builtin_sym_end] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_SEMI_SEMI] = ACTIONS(845), - [anon_sym_PIPE_AMP] = ACTIONS(845), - [anon_sym_AMP_AMP] = ACTIONS(845), - [anon_sym_PIPE_PIPE] = ACTIONS(845), - [anon_sym_EQ_TILDE] = ACTIONS(847), - [anon_sym_EQ_EQ] = ACTIONS(847), - [anon_sym_LT] = ACTIONS(847), - [anon_sym_GT] = ACTIONS(847), - [anon_sym_GT_GT] = ACTIONS(845), - [anon_sym_AMP_GT] = ACTIONS(847), - [anon_sym_AMP_GT_GT] = ACTIONS(845), - [anon_sym_LT_AMP] = ACTIONS(845), - [anon_sym_GT_AMP] = ACTIONS(845), - [anon_sym_LT_LT] = ACTIONS(847), - [anon_sym_LT_LT_DASH] = ACTIONS(845), - [anon_sym_LT_LT_LT] = ACTIONS(845), + [sym_concatenation] = STATE(471), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(471), + [anon_sym_RBRACE] = ACTIONS(841), + [anon_sym_EQ] = ACTIONS(843), + [anon_sym_DASH] = ACTIONS(843), [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(845), - [anon_sym_DOLLAR] = ACTIONS(847), - [sym_raw_string] = ACTIONS(845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(845), - [anon_sym_LT_LPAREN] = ACTIONS(845), - [anon_sym_GT_LPAREN] = ACTIONS(845), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(847), - [anon_sym_LF] = ACTIONS(845), - [anon_sym_AMP] = ACTIONS(847), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(853), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(857), + [anon_sym_COLON] = ACTIONS(843), + [anon_sym_COLON_QMARK] = ACTIONS(843), + [anon_sym_COLON_DASH] = ACTIONS(843), + [anon_sym_PERCENT] = ACTIONS(843), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [154] = { - [sym__simple_heredoc_body] = ACTIONS(849), - [sym__heredoc_body_beginning] = ACTIONS(849), - [sym_file_descriptor] = ACTIONS(849), - [sym__concat] = ACTIONS(849), - [ts_builtin_sym_end] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_SEMI_SEMI] = ACTIONS(849), - [anon_sym_PIPE_AMP] = ACTIONS(849), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(851), - [anon_sym_GT_GT] = ACTIONS(849), - [anon_sym_AMP_GT] = ACTIONS(851), - [anon_sym_AMP_GT_GT] = ACTIONS(849), - [anon_sym_LT_AMP] = ACTIONS(849), - [anon_sym_GT_AMP] = ACTIONS(849), - [anon_sym_LT_LT] = ACTIONS(851), - [anon_sym_LT_LT_DASH] = ACTIONS(849), - [anon_sym_LT_LT_LT] = ACTIONS(849), - [sym__special_characters] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(851), - [sym_raw_string] = ACTIONS(849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(849), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(851), - [anon_sym_LF] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(851), + [sym_concatenation] = STATE(474), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(474), + [anon_sym_RBRACE] = ACTIONS(867), + [anon_sym_EQ] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(869), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_COLON_QMARK] = ACTIONS(869), + [anon_sym_COLON_DASH] = ACTIONS(869), + [anon_sym_PERCENT] = ACTIONS(869), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [155] = { - [sym__simple_heredoc_body] = ACTIONS(853), - [sym__heredoc_body_beginning] = ACTIONS(853), - [sym_file_descriptor] = ACTIONS(853), - [sym__concat] = ACTIONS(853), - [ts_builtin_sym_end] = ACTIONS(853), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_PIPE] = ACTIONS(855), - [anon_sym_RPAREN] = ACTIONS(853), - [anon_sym_SEMI_SEMI] = ACTIONS(853), - [anon_sym_PIPE_AMP] = ACTIONS(853), - [anon_sym_AMP_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(853), - [anon_sym_EQ_TILDE] = ACTIONS(855), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(855), - [anon_sym_GT_GT] = ACTIONS(853), - [anon_sym_AMP_GT] = ACTIONS(855), - [anon_sym_AMP_GT_GT] = ACTIONS(853), - [anon_sym_LT_AMP] = ACTIONS(853), - [anon_sym_GT_AMP] = ACTIONS(853), - [anon_sym_LT_LT] = ACTIONS(855), - [anon_sym_LT_LT_DASH] = ACTIONS(853), - [anon_sym_LT_LT_LT] = ACTIONS(853), - [sym__special_characters] = ACTIONS(853), - [anon_sym_DQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(855), - [sym_raw_string] = ACTIONS(853), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), - [anon_sym_BQUOTE] = ACTIONS(853), - [anon_sym_LT_LPAREN] = ACTIONS(853), - [anon_sym_GT_LPAREN] = ACTIONS(853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(855), - [anon_sym_LF] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(855), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(477), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_SEMI_SEMI] = ACTIONS(879), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_AMP] = ACTIONS(875), }, [156] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(859), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(477), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(875), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_SEMI_SEMI] = ACTIONS(879), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_AMP] = ACTIONS(875), }, [157] = { - [sym_subscript] = STATE(478), - [sym_variable_name] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(863), - [anon_sym_DOLLAR] = ACTIONS(863), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(865), - [anon_sym_STAR] = ACTIONS(867), - [anon_sym_AT] = ACTIONS(867), - [anon_sym_QMARK] = ACTIONS(867), - [anon_sym_0] = ACTIONS(865), - [anon_sym__] = ACTIONS(865), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(478), + [sym_for_statement] = STATE(478), + [sym_c_style_for_statement] = STATE(478), + [sym_while_statement] = STATE(478), + [sym_if_statement] = STATE(478), + [sym_case_statement] = STATE(478), + [sym_function_definition] = STATE(478), + [sym_compound_statement] = STATE(478), + [sym_subshell] = STATE(478), + [sym_pipeline] = STATE(478), + [sym_list] = STATE(478), + [sym_negated_command] = STATE(478), + [sym_test_command] = STATE(478), + [sym_declaration_command] = STATE(478), + [sym_unset_command] = STATE(478), + [sym_command] = STATE(478), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(479), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [158] = { - [sym_concatenation] = STATE(489), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(489), - [anon_sym_RBRACE] = ACTIONS(869), - [anon_sym_EQ] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(881), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(885), - [anon_sym_COLON] = ACTIONS(871), - [anon_sym_COLON_QMARK] = ACTIONS(871), - [anon_sym_COLON_DASH] = ACTIONS(871), - [anon_sym_PERCENT] = ACTIONS(871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_subshell] = STATE(93), + [sym_test_command] = STATE(93), + [sym_command] = STATE(93), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(165), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(145), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(107), }, [159] = { - [sym_concatenation] = STATE(492), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(492), - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_EQ] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(899), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(901), - [anon_sym_COLON] = ACTIONS(897), - [anon_sym_COLON_QMARK] = ACTIONS(897), - [anon_sym_COLON_DASH] = ACTIONS(897), - [anon_sym_PERCENT] = ACTIONS(897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_variable_assignment] = STATE(480), + [sym_subscript] = STATE(261), + [sym_concatenation] = STATE(480), + [sym_string] = STATE(260), + [sym_simple_expansion] = STATE(260), + [sym_string_expansion] = STATE(260), + [sym_expansion] = STATE(260), + [sym_command_substitution] = STATE(260), + [sym_process_substitution] = STATE(260), + [aux_sym_declaration_command_repeat1] = STATE(480), + [sym__simple_heredoc_body] = ACTIONS(181), + [sym__heredoc_body_beginning] = ACTIONS(181), + [sym_file_descriptor] = ACTIONS(181), + [sym_variable_name] = ACTIONS(475), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(181), + [anon_sym_PIPE_AMP] = ACTIONS(181), + [anon_sym_AMP_AMP] = ACTIONS(181), + [anon_sym_PIPE_PIPE] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(181), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(181), + [anon_sym_LT_AMP] = ACTIONS(181), + [anon_sym_GT_AMP] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(181), + [anon_sym_LT_LT_LT] = ACTIONS(181), + [sym__special_characters] = ACTIONS(477), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(479), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(181), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(881), + [sym_word] = ACTIONS(483), + [anon_sym_LF] = ACTIONS(181), + [anon_sym_AMP] = ACTIONS(185), }, [160] = { - [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(905), - [anon_sym_SEMI_SEMI] = ACTIONS(907), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(903), + [sym_concatenation] = STATE(481), + [sym_string] = STATE(264), + [sym_simple_expansion] = STATE(264), + [sym_string_expansion] = STATE(264), + [sym_expansion] = STATE(264), + [sym_command_substitution] = STATE(264), + [sym_process_substitution] = STATE(264), + [aux_sym_unset_command_repeat1] = STATE(481), + [sym__simple_heredoc_body] = ACTIONS(207), + [sym__heredoc_body_beginning] = ACTIONS(207), + [sym_file_descriptor] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(209), + [anon_sym_PIPE] = ACTIONS(209), + [anon_sym_SEMI_SEMI] = ACTIONS(207), + [anon_sym_PIPE_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_GT_GT] = ACTIONS(207), + [anon_sym_AMP_GT] = ACTIONS(209), + [anon_sym_AMP_GT_GT] = ACTIONS(207), + [anon_sym_LT_AMP] = ACTIONS(207), + [anon_sym_GT_AMP] = ACTIONS(207), + [anon_sym_LT_LT] = ACTIONS(209), + [anon_sym_LT_LT_DASH] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [sym__special_characters] = ACTIONS(485), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(215), + [sym_raw_string] = ACTIONS(487), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), + [anon_sym_BQUOTE] = ACTIONS(207), + [anon_sym_LT_LPAREN] = ACTIONS(225), + [anon_sym_GT_LPAREN] = ACTIONS(225), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(883), + [sym_word] = ACTIONS(491), + [anon_sym_LF] = ACTIONS(207), + [anon_sym_AMP] = ACTIONS(209), }, [161] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(488), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(891), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(877), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(887), + }, + [162] = { + [sym_concatenation] = STATE(490), + [sym_string] = STATE(279), + [sym_simple_expansion] = STATE(279), + [sym_string_expansion] = STATE(279), + [sym_expansion] = STATE(279), + [sym_command_substitution] = STATE(279), + [sym_process_substitution] = STATE(279), + [aux_sym_command_repeat2] = STATE(490), + [sym__simple_heredoc_body] = ACTIONS(327), + [sym__heredoc_body_beginning] = ACTIONS(327), + [sym_file_descriptor] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_SEMI_SEMI] = ACTIONS(327), + [anon_sym_PIPE_AMP] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(327), + [anon_sym_EQ_TILDE] = ACTIONS(513), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(327), + [anon_sym_AMP_GT] = ACTIONS(329), + [anon_sym_AMP_GT_GT] = ACTIONS(327), + [anon_sym_LT_AMP] = ACTIONS(327), + [anon_sym_GT_AMP] = ACTIONS(327), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_LT_LT_DASH] = ACTIONS(327), + [anon_sym_LT_LT_LT] = ACTIONS(327), + [sym__special_characters] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(327), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(519), + [anon_sym_LF] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(329), + }, + [163] = { + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(488), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(887), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(891), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(877), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(891), + [anon_sym_AMP] = ACTIONS(887), + }, + [164] = { + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(491), + [sym_for_statement] = STATE(491), + [sym_c_style_for_statement] = STATE(491), + [sym_while_statement] = STATE(491), + [sym_if_statement] = STATE(491), + [sym_case_statement] = STATE(491), + [sym_function_definition] = STATE(491), + [sym_compound_statement] = STATE(491), + [sym_subshell] = STATE(491), + [sym_pipeline] = STATE(491), + [sym_list] = STATE(491), + [sym_negated_command] = STATE(491), + [sym_test_command] = STATE(491), + [sym_declaration_command] = STATE(491), + [sym_unset_command] = STATE(491), + [sym_command] = STATE(491), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(492), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), + }, + [165] = { + [sym_command_name] = STATE(493), + [sym_variable_assignment] = STATE(189), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(189), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym_command_repeat1] = STATE(189), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(145), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(521), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(107), + }, + [166] = { + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(496), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(587), [anon_sym_RPAREN] = ACTIONS(905), [anon_sym_SEMI_SEMI] = ACTIONS(907), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), [anon_sym_LF] = ACTIONS(907), [anon_sym_AMP] = ACTIONS(903), }, - [162] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(495), - [sym_c_style_for_statement] = STATE(495), - [sym_while_statement] = STATE(495), - [sym_if_statement] = STATE(495), - [sym_case_statement] = STATE(495), - [sym_function_definition] = STATE(495), - [sym_subshell] = STATE(495), - [sym_pipeline] = STATE(495), - [sym_list] = STATE(495), - [sym_negated_command] = STATE(495), - [sym_test_command] = STATE(495), - [sym_declaration_command] = STATE(495), - [sym_unset_command] = STATE(495), - [sym_command] = STATE(495), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(496), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), - }, - [163] = { - [sym__expression] = STATE(497), - [sym_binary_expression] = STATE(497), - [sym_unary_expression] = STATE(497), - [sym_postfix_expression] = STATE(497), - [sym_parenthesized_expression] = STATE(497), - [sym_concatenation] = STATE(497), - [sym_string] = STATE(44), - [sym_simple_expansion] = STATE(44), - [sym_string_expansion] = STATE(44), - [sym_expansion] = STATE(44), - [sym_command_substitution] = STATE(44), - [sym_process_substitution] = STATE(44), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(73), - [sym__special_characters] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(79), - [sym_raw_string] = ACTIONS(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), - [anon_sym_BQUOTE] = ACTIONS(87), - [anon_sym_LT_LPAREN] = ACTIONS(89), - [anon_sym_GT_LPAREN] = ACTIONS(89), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(91), - [sym_test_operator] = ACTIONS(93), - }, - [164] = { - [sym__terminated_statement] = STATE(498), - [sym_for_statement] = STATE(63), - [sym_c_style_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_if_statement] = STATE(63), - [sym_case_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_subshell] = STATE(63), - [sym_pipeline] = STATE(63), - [sym_list] = STATE(63), - [sym_negated_command] = STATE(63), - [sym_test_command] = STATE(63), - [sym_declaration_command] = STATE(63), - [sym_unset_command] = STATE(63), - [sym_command] = STATE(63), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(65), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), - }, - [165] = { - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(909), - }, - [166] = { - [sym_subshell] = STATE(98), - [sym_test_command] = STATE(98), - [sym_command] = STATE(98), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(176), - [sym_subscript] = STATE(99), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(161), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(115), - }, [167] = { - [sym__expression] = STATE(500), - [sym_binary_expression] = STATE(500), - [sym_unary_expression] = STATE(500), - [sym_postfix_expression] = STATE(500), - [sym_parenthesized_expression] = STATE(500), - [sym_concatenation] = STATE(500), - [sym_string] = STATE(105), - [sym_simple_expansion] = STATE(105), - [sym_string_expansion] = STATE(105), - [sym_expansion] = STATE(105), - [sym_command_substitution] = STATE(105), - [sym_process_substitution] = STATE(105), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [sym__special_characters] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_DOLLAR] = ACTIONS(171), - [sym_raw_string] = ACTIONS(173), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), - [anon_sym_BQUOTE] = ACTIONS(179), - [anon_sym_LT_LPAREN] = ACTIONS(181), - [anon_sym_GT_LPAREN] = ACTIONS(181), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(183), - [sym_test_operator] = ACTIONS(185), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(496), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(905), + [anon_sym_SEMI_SEMI] = ACTIONS(907), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(903), }, [168] = { - [sym__expression] = STATE(501), - [sym_binary_expression] = STATE(501), - [sym_unary_expression] = STATE(501), - [sym_postfix_expression] = STATE(501), - [sym_parenthesized_expression] = STATE(501), - [sym_concatenation] = STATE(501), - [sym_string] = STATE(113), - [sym_simple_expansion] = STATE(113), - [sym_string_expansion] = STATE(113), - [sym_expansion] = STATE(113), - [sym_command_substitution] = STATE(113), - [sym_process_substitution] = STATE(113), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(187), - [sym__special_characters] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(79), - [sym_raw_string] = ACTIONS(191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), - [anon_sym_BQUOTE] = ACTIONS(87), - [anon_sym_LT_LPAREN] = ACTIONS(89), - [anon_sym_GT_LPAREN] = ACTIONS(89), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(193), - [sym_test_operator] = ACTIONS(195), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(497), + [sym_for_statement] = STATE(497), + [sym_c_style_for_statement] = STATE(497), + [sym_while_statement] = STATE(497), + [sym_if_statement] = STATE(497), + [sym_case_statement] = STATE(497), + [sym_function_definition] = STATE(497), + [sym_compound_statement] = STATE(497), + [sym_subshell] = STATE(497), + [sym_pipeline] = STATE(497), + [sym_list] = STATE(497), + [sym_negated_command] = STATE(497), + [sym_test_command] = STATE(497), + [sym_declaration_command] = STATE(497), + [sym_unset_command] = STATE(497), + [sym_command] = STATE(497), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(498), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [169] = { - [sym_variable_assignment] = STATE(502), - [sym_subscript] = STATE(277), - [sym_concatenation] = STATE(502), - [sym_string] = STATE(276), - [sym_simple_expansion] = STATE(276), - [sym_string_expansion] = STATE(276), - [sym_expansion] = STATE(276), - [sym_command_substitution] = STATE(276), - [sym_process_substitution] = STATE(276), - [aux_sym_declaration_command_repeat1] = STATE(502), - [sym_variable_name] = ACTIONS(505), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_PIPE] = ACTIONS(201), - [anon_sym_SEMI_SEMI] = ACTIONS(199), - [anon_sym_PIPE_AMP] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [sym__special_characters] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR] = ACTIONS(207), - [sym_raw_string] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_BQUOTE] = ACTIONS(199), - [anon_sym_LT_LPAREN] = ACTIONS(217), - [anon_sym_GT_LPAREN] = ACTIONS(217), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(911), - [sym_word] = ACTIONS(513), - [anon_sym_LF] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(201), + [anon_sym_RPAREN] = ACTIONS(909), + [sym_comment] = ACTIONS(57), }, [170] = { - [sym_concatenation] = STATE(503), - [sym_string] = STATE(280), - [sym_simple_expansion] = STATE(280), - [sym_string_expansion] = STATE(280), - [sym_expansion] = STATE(280), - [sym_command_substitution] = STATE(280), - [sym_process_substitution] = STATE(280), - [aux_sym_unset_command_repeat1] = STATE(503), - [anon_sym_SEMI] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_SEMI_SEMI] = ACTIONS(223), - [anon_sym_PIPE_AMP] = ACTIONS(223), - [anon_sym_AMP_AMP] = ACTIONS(223), - [anon_sym_PIPE_PIPE] = ACTIONS(223), - [sym__special_characters] = ACTIONS(515), - [anon_sym_DQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [sym_raw_string] = ACTIONS(517), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(223), - [anon_sym_LT_LPAREN] = ACTIONS(241), - [anon_sym_GT_LPAREN] = ACTIONS(241), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(913), - [sym_word] = ACTIONS(521), - [anon_sym_LF] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(225), + [ts_builtin_sym_end] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(911), + [anon_sym_SEMI_SEMI] = ACTIONS(911), + [anon_sym_BQUOTE] = ACTIONS(911), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(911), }, [171] = { - [aux_sym_concatenation_repeat1] = STATE(282), - [sym__simple_heredoc_body] = ACTIONS(291), - [sym__heredoc_body_beginning] = ACTIONS(291), - [sym_file_descriptor] = ACTIONS(291), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(293), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_SEMI_SEMI] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(915), - [anon_sym_PIPE_AMP] = ACTIONS(291), - [anon_sym_AMP_AMP] = ACTIONS(291), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_EQ_TILDE] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_GT_GT] = ACTIONS(291), - [anon_sym_AMP_GT] = ACTIONS(293), - [anon_sym_AMP_GT_GT] = ACTIONS(291), - [anon_sym_LT_AMP] = ACTIONS(291), - [anon_sym_GT_AMP] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_LT_LT_DASH] = ACTIONS(291), - [anon_sym_LT_LT_LT] = ACTIONS(291), - [sym__special_characters] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(291), - [anon_sym_DOLLAR] = ACTIONS(293), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(291), - [anon_sym_LT_LPAREN] = ACTIONS(291), - [anon_sym_GT_LPAREN] = ACTIONS(291), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(293), - [anon_sym_LF] = ACTIONS(291), - [anon_sym_AMP] = ACTIONS(293), + [sym_simple_expansion] = STATE(503), + [sym_expansion] = STATE(503), + [aux_sym_heredoc_body_repeat1] = STATE(503), + [sym__heredoc_body_middle] = ACTIONS(915), + [sym__heredoc_body_end] = ACTIONS(917), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(921), + [sym_comment] = ACTIONS(57), }, [172] = { - [anon_sym_SEMI] = ACTIONS(917), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(921), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(905), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(921), - [anon_sym_AMP] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_GT_GT] = ACTIONS(925), + [anon_sym_AMP_GT] = ACTIONS(923), + [anon_sym_AMP_GT_GT] = ACTIONS(925), + [anon_sym_LT_AMP] = ACTIONS(925), + [anon_sym_GT_AMP] = ACTIONS(925), + [sym_comment] = ACTIONS(57), }, [173] = { - [sym_file_redirect] = STATE(511), - [sym_heredoc_redirect] = STATE(511), - [sym_heredoc_body] = STATE(193), - [sym_herestring_redirect] = STATE(511), - [sym_concatenation] = STATE(512), - [sym_string] = STATE(294), - [sym_simple_expansion] = STATE(294), - [sym_string_expansion] = STATE(294), - [sym_expansion] = STATE(294), - [sym_command_substitution] = STATE(294), - [sym_process_substitution] = STATE(294), - [aux_sym_while_statement_repeat1] = STATE(511), - [aux_sym_command_repeat2] = STATE(512), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), [sym_file_descriptor] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(347), - [anon_sym_PIPE] = ACTIONS(347), - [anon_sym_SEMI_SEMI] = ACTIONS(345), - [anon_sym_PIPE_AMP] = ACTIONS(345), - [anon_sym_AMP_AMP] = ACTIONS(345), - [anon_sym_PIPE_PIPE] = ACTIONS(345), - [anon_sym_EQ_TILDE] = ACTIONS(539), - [anon_sym_EQ_EQ] = ACTIONS(539), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(929), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(933), - [sym__special_characters] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(549), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(345), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(551), - [anon_sym_LF] = ACTIONS(345), - [anon_sym_AMP] = ACTIONS(347), + [sym_variable_name] = ACTIONS(927), + [ts_builtin_sym_end] = ACTIONS(929), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [174] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(917), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(921), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(905), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(921), - [anon_sym_AMP] = ACTIONS(917), + [sym_redirected_statement] = STATE(505), + [sym_for_statement] = STATE(505), + [sym_c_style_for_statement] = STATE(505), + [sym_while_statement] = STATE(505), + [sym_if_statement] = STATE(505), + [sym_case_statement] = STATE(505), + [sym_function_definition] = STATE(505), + [sym_compound_statement] = STATE(505), + [sym_subshell] = STATE(505), + [sym_pipeline] = STATE(505), + [sym_list] = STATE(505), + [sym_negated_command] = STATE(505), + [sym_test_command] = STATE(505), + [sym_declaration_command] = STATE(505), + [sym_unset_command] = STATE(505), + [sym_command] = STATE(505), + [sym_command_name] = STATE(29), + [sym_variable_assignment] = STATE(506), + [sym_subscript] = STATE(31), + [sym_file_redirect] = STATE(34), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(21), + [sym_simple_expansion] = STATE(21), + [sym_string_expansion] = STATE(21), + [sym_expansion] = STATE(21), + [sym_command_substitution] = STATE(21), + [sym_process_substitution] = STATE(21), + [aux_sym_command_repeat1] = STATE(34), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(7), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(33), + [anon_sym_typeset] = ACTIONS(33), + [anon_sym_export] = ACTIONS(33), + [anon_sym_readonly] = ACTIONS(33), + [anon_sym_local] = ACTIONS(33), + [anon_sym_unset] = ACTIONS(35), + [anon_sym_unsetenv] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(41), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(47), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(59), }, [175] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(513), - [sym_c_style_for_statement] = STATE(513), - [sym_while_statement] = STATE(513), - [sym_if_statement] = STATE(513), - [sym_case_statement] = STATE(513), - [sym_function_definition] = STATE(513), - [sym_subshell] = STATE(513), - [sym_pipeline] = STATE(513), - [sym_list] = STATE(513), - [sym_negated_command] = STATE(513), - [sym_test_command] = STATE(513), - [sym_declaration_command] = STATE(513), - [sym_unset_command] = STATE(513), - [sym_command] = STATE(513), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(514), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(176), + [sym_redirected_statement] = STATE(507), + [sym_for_statement] = STATE(507), + [sym_c_style_for_statement] = STATE(507), + [sym_while_statement] = STATE(507), + [sym_if_statement] = STATE(507), + [sym_case_statement] = STATE(507), + [sym_function_definition] = STATE(507), + [sym_compound_statement] = STATE(507), + [sym_subshell] = STATE(507), + [sym_pipeline] = STATE(507), + [sym_list] = STATE(507), + [sym_negated_command] = STATE(507), + [sym_test_command] = STATE(507), + [sym_declaration_command] = STATE(507), + [sym_unset_command] = STATE(507), + [sym_command] = STATE(507), + [sym_command_name] = STATE(29), + [sym_variable_assignment] = STATE(508), + [sym_subscript] = STATE(31), + [sym_file_redirect] = STATE(34), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(21), + [sym_simple_expansion] = STATE(21), + [sym_string_expansion] = STATE(21), + [sym_expansion] = STATE(21), + [sym_command_substitution] = STATE(21), + [sym_process_substitution] = STATE(21), + [aux_sym_command_repeat1] = STATE(34), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), + [sym_variable_name] = ACTIONS(7), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(33), + [anon_sym_typeset] = ACTIONS(33), + [anon_sym_export] = ACTIONS(33), + [anon_sym_readonly] = ACTIONS(33), + [anon_sym_local] = ACTIONS(33), + [anon_sym_unset] = ACTIONS(35), + [anon_sym_unsetenv] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(41), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(47), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(59), }, [176] = { - [sym_command_name] = STATE(515), - [sym_variable_assignment] = STATE(200), - [sym_subscript] = STATE(99), - [sym_file_redirect] = STATE(200), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym_command_repeat1] = STATE(200), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(553), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(115), + [sym_concatenation] = STATE(511), + [sym_string] = STATE(510), + [sym_simple_expansion] = STATE(510), + [sym_string_expansion] = STATE(510), + [sym_expansion] = STATE(510), + [sym_command_substitution] = STATE(510), + [sym_process_substitution] = STATE(510), + [sym__special_characters] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(935), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(935), }, [177] = { - [anon_sym_SEMI] = ACTIONS(935), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(937), - [anon_sym_SEMI_SEMI] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(935), + [sym_heredoc_start] = ACTIONS(937), + [sym_comment] = ACTIONS(57), }, [178] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(935), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(937), - [anon_sym_SEMI_SEMI] = ACTIONS(939), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(939), - [anon_sym_AMP] = ACTIONS(935), + [sym_concatenation] = STATE(515), + [sym_string] = STATE(514), + [sym_simple_expansion] = STATE(514), + [sym_string_expansion] = STATE(514), + [sym_expansion] = STATE(514), + [sym_command_substitution] = STATE(514), + [sym_process_substitution] = STATE(514), + [sym__special_characters] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(941), }, [179] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(518), - [sym_c_style_for_statement] = STATE(518), - [sym_while_statement] = STATE(518), - [sym_if_statement] = STATE(518), - [sym_case_statement] = STATE(518), - [sym_function_definition] = STATE(518), - [sym_subshell] = STATE(518), - [sym_pipeline] = STATE(518), - [sym_list] = STATE(518), - [sym_negated_command] = STATE(518), - [sym_test_command] = STATE(518), - [sym_declaration_command] = STATE(518), - [sym_unset_command] = STATE(518), - [sym_command] = STATE(518), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(519), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [ts_builtin_sym_end] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_SEMI_SEMI] = ACTIONS(945), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(945), + [anon_sym_AMP] = ACTIONS(945), }, [180] = { - [anon_sym_RPAREN] = ACTIONS(941), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(517), + [sym_heredoc_redirect] = STATE(517), + [sym_herestring_redirect] = STATE(517), + [aux_sym_redirected_statement_repeat1] = STATE(517), + [sym__simple_heredoc_body] = ACTIONS(947), + [sym__heredoc_body_beginning] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(303), + [ts_builtin_sym_end] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_SEMI_SEMI] = ACTIONS(947), + [anon_sym_PIPE_AMP] = ACTIONS(947), + [anon_sym_AMP_AMP] = ACTIONS(947), + [anon_sym_PIPE_PIPE] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(317), + [anon_sym_GT] = ACTIONS(317), + [anon_sym_GT_GT] = ACTIONS(319), + [anon_sym_AMP_GT] = ACTIONS(317), + [anon_sym_AMP_GT_GT] = ACTIONS(319), + [anon_sym_LT_AMP] = ACTIONS(319), + [anon_sym_GT_AMP] = ACTIONS(319), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(325), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(947), + [anon_sym_AMP] = ACTIONS(949), }, [181] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [ts_builtin_sym_end] = ACTIONS(945), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_concatenation] = STATE(518), + [sym_string] = STATE(520), + [sym_simple_expansion] = STATE(520), + [sym_string_expansion] = STATE(520), + [sym_expansion] = STATE(520), + [sym_command_substitution] = STATE(520), + [sym_process_substitution] = STATE(520), + [sym_regex] = ACTIONS(951), + [sym__special_characters] = ACTIONS(953), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(955), }, [182] = { - [sym_for_statement] = STATE(521), - [sym_c_style_for_statement] = STATE(521), - [sym_while_statement] = STATE(521), - [sym_if_statement] = STATE(521), - [sym_case_statement] = STATE(521), - [sym_function_definition] = STATE(521), - [sym_subshell] = STATE(521), - [sym_pipeline] = STATE(521), - [sym_list] = STATE(521), - [sym_negated_command] = STATE(521), - [sym_test_command] = STATE(521), - [sym_declaration_command] = STATE(521), - [sym_unset_command] = STATE(521), - [sym_command] = STATE(521), - [sym_command_name] = STATE(28), - [sym_variable_assignment] = STATE(522), - [sym_subscript] = STATE(30), - [sym_file_redirect] = STATE(33), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(20), - [sym_simple_expansion] = STATE(20), - [sym_string_expansion] = STATE(20), - [sym_expansion] = STATE(20), - [sym_command_substitution] = STATE(20), - [sym_process_substitution] = STATE(20), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_while] = ACTIONS(15), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(29), - [anon_sym_declare] = ACTIONS(31), - [anon_sym_typeset] = ACTIONS(31), - [anon_sym_export] = ACTIONS(31), - [anon_sym_readonly] = ACTIONS(31), - [anon_sym_local] = ACTIONS(31), - [anon_sym_unset] = ACTIONS(33), - [anon_sym_unsetenv] = ACTIONS(33), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(45), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(57), + [aux_sym_concatenation_repeat1] = STATE(140), + [sym__simple_heredoc_body] = ACTIONS(957), + [sym__heredoc_body_beginning] = ACTIONS(957), + [sym_file_descriptor] = ACTIONS(957), + [sym__concat] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(957), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(959), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_EQ_TILDE] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [sym__special_characters] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(959), + [sym_raw_string] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), + [anon_sym_BQUOTE] = ACTIONS(957), + [anon_sym_LT_LPAREN] = ACTIONS(957), + [anon_sym_GT_LPAREN] = ACTIONS(957), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(959), + [anon_sym_LF] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), }, [183] = { - [sym_for_statement] = STATE(523), - [sym_c_style_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_negated_command] = STATE(523), - [sym_test_command] = STATE(523), - [sym_declaration_command] = STATE(523), - [sym_unset_command] = STATE(523), - [sym_command] = STATE(523), - [sym_command_name] = STATE(28), - [sym_variable_assignment] = STATE(524), - [sym_subscript] = STATE(30), - [sym_file_redirect] = STATE(33), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(20), - [sym_simple_expansion] = STATE(20), - [sym_string_expansion] = STATE(20), - [sym_expansion] = STATE(20), - [sym_command_substitution] = STATE(20), - [sym_process_substitution] = STATE(20), - [aux_sym_command_repeat1] = STATE(33), + [aux_sym_concatenation_repeat1] = STATE(140), + [sym__simple_heredoc_body] = ACTIONS(961), + [sym__heredoc_body_beginning] = ACTIONS(961), + [sym_file_descriptor] = ACTIONS(961), + [sym__concat] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_SEMI_SEMI] = ACTIONS(961), + [anon_sym_PIPE_AMP] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_EQ_TILDE] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(963), + [anon_sym_GT] = ACTIONS(963), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_AMP_GT] = ACTIONS(963), + [anon_sym_AMP_GT_GT] = ACTIONS(961), + [anon_sym_LT_AMP] = ACTIONS(961), + [anon_sym_GT_AMP] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(963), + [anon_sym_LT_LT_DASH] = ACTIONS(961), + [anon_sym_LT_LT_LT] = ACTIONS(961), + [sym__special_characters] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(963), + [sym_raw_string] = ACTIONS(961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(961), + [anon_sym_BQUOTE] = ACTIONS(961), + [anon_sym_LT_LPAREN] = ACTIONS(961), + [anon_sym_GT_LPAREN] = ACTIONS(961), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(963), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + }, + [184] = { + [sym_concatenation] = STATE(521), + [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_repeat2] = STATE(521), + [sym__simple_heredoc_body] = ACTIONS(965), + [sym__heredoc_body_beginning] = ACTIONS(965), + [sym_file_descriptor] = ACTIONS(965), + [ts_builtin_sym_end] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(965), + [anon_sym_PIPE_AMP] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(965), + [anon_sym_EQ_TILDE] = ACTIONS(331), + [anon_sym_EQ_EQ] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(965), + [anon_sym_AMP_GT] = ACTIONS(967), + [anon_sym_AMP_GT_GT] = ACTIONS(965), + [anon_sym_LT_AMP] = ACTIONS(965), + [anon_sym_GT_AMP] = ACTIONS(965), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(965), + [anon_sym_LT_LT_LT] = ACTIONS(965), + [sym__special_characters] = ACTIONS(333), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(337), + [anon_sym_LF] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + }, + [185] = { + [sym_file_redirect] = STATE(180), + [sym_heredoc_redirect] = STATE(180), + [sym_heredoc_body] = STATE(523), + [sym_herestring_redirect] = STATE(180), + [aux_sym_redirected_statement_repeat1] = STATE(180), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(303), + [ts_builtin_sym_end] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(309), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(313), + [anon_sym_AMP_AMP] = ACTIONS(315), + [anon_sym_PIPE_PIPE] = ACTIONS(315), + [anon_sym_LT] = ACTIONS(317), + [anon_sym_GT] = ACTIONS(317), + [anon_sym_GT_GT] = ACTIONS(319), + [anon_sym_AMP_GT] = ACTIONS(317), + [anon_sym_AMP_GT_GT] = ACTIONS(319), + [anon_sym_LT_AMP] = ACTIONS(319), + [anon_sym_GT_AMP] = ACTIONS(319), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(325), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(969), + }, + [186] = { + [sym_file_redirect] = STATE(180), + [sym_heredoc_redirect] = STATE(180), + [sym_heredoc_body] = STATE(523), + [sym_herestring_redirect] = STATE(180), + [aux_sym_redirected_statement_repeat1] = STATE(180), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [ts_builtin_sym_end] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(309), + [anon_sym_SEMI_SEMI] = ACTIONS(971), + [anon_sym_PIPE_AMP] = ACTIONS(313), + [anon_sym_AMP_AMP] = ACTIONS(315), + [anon_sym_PIPE_PIPE] = ACTIONS(315), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(325), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(969), + }, + [187] = { + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(524), + [sym_for_statement] = STATE(524), + [sym_c_style_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_compound_statement] = STATE(524), + [sym_subshell] = STATE(524), + [sym_pipeline] = STATE(524), + [sym_list] = STATE(524), + [sym_negated_command] = STATE(524), + [sym_test_command] = STATE(524), + [sym_declaration_command] = STATE(524), + [sym_unset_command] = STATE(524), + [sym_command] = STATE(524), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(525), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(973), + [sym_variable_name] = ACTIONS(976), + [anon_sym_for] = ACTIONS(979), + [anon_sym_LPAREN_LPAREN] = ACTIONS(982), + [anon_sym_while] = ACTIONS(985), + [anon_sym_if] = ACTIONS(988), + [anon_sym_case] = ACTIONS(991), + [anon_sym_function] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(997), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1009), + [anon_sym_declare] = ACTIONS(1012), + [anon_sym_typeset] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1012), + [anon_sym_readonly] = ACTIONS(1012), + [anon_sym_local] = ACTIONS(1012), + [anon_sym_unset] = ACTIONS(1015), + [anon_sym_unsetenv] = ACTIONS(1015), + [anon_sym_LT] = ACTIONS(1018), + [anon_sym_GT] = ACTIONS(1018), + [anon_sym_GT_GT] = ACTIONS(1021), + [anon_sym_AMP_GT] = ACTIONS(1018), + [anon_sym_AMP_GT_GT] = ACTIONS(1021), + [anon_sym_LT_AMP] = ACTIONS(1021), + [anon_sym_GT_AMP] = ACTIONS(1021), + [sym__special_characters] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1027), + [anon_sym_DOLLAR] = ACTIONS(1030), + [sym_raw_string] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), + [anon_sym_BQUOTE] = ACTIONS(1042), + [anon_sym_LT_LPAREN] = ACTIONS(1045), + [anon_sym_GT_LPAREN] = ACTIONS(1045), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1048), + }, + [188] = { + [sym_concatenation] = STATE(526), + [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_repeat2] = STATE(526), + [sym__simple_heredoc_body] = ACTIONS(965), + [sym__heredoc_body_beginning] = ACTIONS(965), + [sym_file_descriptor] = ACTIONS(965), + [ts_builtin_sym_end] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(965), + [anon_sym_PIPE_AMP] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(965), + [anon_sym_EQ_TILDE] = ACTIONS(331), + [anon_sym_EQ_EQ] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(965), + [anon_sym_AMP_GT] = ACTIONS(967), + [anon_sym_AMP_GT_GT] = ACTIONS(965), + [anon_sym_LT_AMP] = ACTIONS(965), + [anon_sym_GT_AMP] = ACTIONS(965), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(965), + [anon_sym_LT_LT_LT] = ACTIONS(965), + [sym__special_characters] = ACTIONS(333), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(337), + [anon_sym_LF] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + }, + [189] = { + [sym_variable_assignment] = STATE(189), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(189), + [aux_sym_command_repeat1] = STATE(189), + [sym_file_descriptor] = ACTIONS(1051), + [sym_variable_name] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1057), + [anon_sym_GT_GT] = ACTIONS(1060), + [anon_sym_AMP_GT] = ACTIONS(1057), + [anon_sym_AMP_GT_GT] = ACTIONS(1060), + [anon_sym_LT_AMP] = ACTIONS(1060), + [anon_sym_GT_AMP] = ACTIONS(1060), + [sym__special_characters] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(1063), + [anon_sym_DOLLAR] = ACTIONS(1065), + [sym_raw_string] = ACTIONS(1063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), + [anon_sym_BQUOTE] = ACTIONS(1063), + [anon_sym_LT_LPAREN] = ACTIONS(1063), + [anon_sym_GT_LPAREN] = ACTIONS(1063), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1063), + }, + [190] = { + [aux_sym_concatenation_repeat1] = STATE(417), + [sym_file_descriptor] = ACTIONS(1067), + [sym__concat] = ACTIONS(747), + [sym_variable_name] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1069), + [anon_sym_GT] = ACTIONS(1069), + [anon_sym_GT_GT] = ACTIONS(1067), + [anon_sym_AMP_GT] = ACTIONS(1069), + [anon_sym_AMP_GT_GT] = ACTIONS(1067), + [anon_sym_LT_AMP] = ACTIONS(1067), + [anon_sym_GT_AMP] = ACTIONS(1067), + [sym__special_characters] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1069), + [sym_raw_string] = ACTIONS(1067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1067), + [anon_sym_BQUOTE] = ACTIONS(1067), + [anon_sym_LT_LPAREN] = ACTIONS(1067), + [anon_sym_GT_LPAREN] = ACTIONS(1067), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1067), + }, + [191] = { + [aux_sym_concatenation_repeat1] = STATE(417), + [sym_file_descriptor] = ACTIONS(1071), + [sym__concat] = ACTIONS(747), + [sym_variable_name] = ACTIONS(1071), + [anon_sym_LT] = ACTIONS(1073), + [anon_sym_GT] = ACTIONS(1073), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_AMP_GT] = ACTIONS(1073), + [anon_sym_AMP_GT_GT] = ACTIONS(1071), + [anon_sym_LT_AMP] = ACTIONS(1071), + [anon_sym_GT_AMP] = ACTIONS(1071), + [sym__special_characters] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [sym_raw_string] = ACTIONS(1071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1071), + [anon_sym_BQUOTE] = ACTIONS(1071), + [anon_sym_LT_LPAREN] = ACTIONS(1071), + [anon_sym_GT_LPAREN] = ACTIONS(1071), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1071), + }, + [192] = { + [sym_file_descriptor] = ACTIONS(1071), + [sym_variable_name] = ACTIONS(1071), + [anon_sym_LT] = ACTIONS(1073), + [anon_sym_GT] = ACTIONS(1073), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_AMP_GT] = ACTIONS(1073), + [anon_sym_AMP_GT_GT] = ACTIONS(1071), + [anon_sym_LT_AMP] = ACTIONS(1071), + [anon_sym_GT_AMP] = ACTIONS(1071), + [sym__special_characters] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1073), + [sym_raw_string] = ACTIONS(1071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1071), + [anon_sym_BQUOTE] = ACTIONS(1071), + [anon_sym_LT_LPAREN] = ACTIONS(1071), + [anon_sym_GT_LPAREN] = ACTIONS(1071), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1071), + }, + [193] = { + [aux_sym_concatenation_repeat1] = STATE(529), + [sym__concat] = ACTIONS(1075), + [anon_sym_RBRACK] = ACTIONS(1077), + [sym_comment] = ACTIONS(57), + }, + [194] = { + [aux_sym_concatenation_repeat1] = STATE(529), + [sym__concat] = ACTIONS(1079), + [anon_sym_RBRACK] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + }, + [195] = { + [sym__concat] = ACTIONS(1083), + [anon_sym_RBRACK] = ACTIONS(1081), + [sym_comment] = ACTIONS(57), + }, + [196] = { + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym_variable_name] = ACTIONS(1085), + [ts_builtin_sym_end] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1087), + [anon_sym_RPAREN] = ACTIONS(1085), + [anon_sym_SEMI_SEMI] = ACTIONS(1085), + [anon_sym_PIPE_AMP] = ACTIONS(1085), + [anon_sym_AMP_AMP] = ACTIONS(1085), + [anon_sym_PIPE_PIPE] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_AMP_GT] = ACTIONS(1087), + [anon_sym_AMP_GT_GT] = ACTIONS(1085), + [anon_sym_LT_AMP] = ACTIONS(1085), + [anon_sym_GT_AMP] = ACTIONS(1085), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_LT_LT_DASH] = ACTIONS(1085), + [anon_sym_LT_LT_LT] = ACTIONS(1085), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1087), + [sym_raw_string] = ACTIONS(1085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_LT_LPAREN] = ACTIONS(1085), + [anon_sym_GT_LPAREN] = ACTIONS(1085), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1087), + [anon_sym_LF] = ACTIONS(1085), + [anon_sym_AMP] = ACTIONS(1087), + }, + [197] = { + [sym_concatenation] = STATE(542), + [sym_string] = STATE(537), + [sym_simple_expansion] = STATE(537), + [sym_string_expansion] = STATE(537), + [sym_expansion] = STATE(537), + [sym_command_substitution] = STATE(537), + [sym_process_substitution] = STATE(537), + [aux_sym_for_statement_repeat1] = STATE(542), + [anon_sym_RPAREN] = ACTIONS(1089), + [sym__special_characters] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1095), + [sym_raw_string] = ACTIONS(1097), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1099), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1103), + [anon_sym_LT_LPAREN] = ACTIONS(1105), + [anon_sym_GT_LPAREN] = ACTIONS(1105), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1097), + }, + [198] = { + [aux_sym_concatenation_repeat1] = STATE(544), + [sym__simple_heredoc_body] = ACTIONS(1107), + [sym__heredoc_body_beginning] = ACTIONS(1107), + [sym_file_descriptor] = ACTIONS(1107), + [sym__concat] = ACTIONS(1109), + [sym_variable_name] = ACTIONS(1107), + [ts_builtin_sym_end] = ACTIONS(1107), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_SEMI_SEMI] = ACTIONS(1107), + [anon_sym_PIPE_AMP] = ACTIONS(1107), + [anon_sym_AMP_AMP] = ACTIONS(1107), + [anon_sym_PIPE_PIPE] = ACTIONS(1107), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1107), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1107), + [anon_sym_LT_AMP] = ACTIONS(1107), + [anon_sym_GT_AMP] = ACTIONS(1107), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_LT_LT_DASH] = ACTIONS(1107), + [anon_sym_LT_LT_LT] = ACTIONS(1107), + [sym__special_characters] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(1107), + [anon_sym_DOLLAR] = ACTIONS(1111), + [sym_raw_string] = ACTIONS(1107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1107), + [anon_sym_BQUOTE] = ACTIONS(1107), + [anon_sym_LT_LPAREN] = ACTIONS(1107), + [anon_sym_GT_LPAREN] = ACTIONS(1107), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1111), + [anon_sym_LF] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1111), + }, + [199] = { + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(547), + [anon_sym_DQUOTE] = ACTIONS(1113), + [anon_sym_DOLLAR] = ACTIONS(1115), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), + }, + [200] = { + [sym_string] = STATE(549), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_DOLLAR] = ACTIONS(1117), + [sym_raw_string] = ACTIONS(1119), + [anon_sym_POUND] = ACTIONS(1117), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1121), + [anon_sym_STAR] = ACTIONS(1123), + [anon_sym_AT] = ACTIONS(1123), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_0] = ACTIONS(1121), + [anon_sym__] = ACTIONS(1121), + }, + [201] = { + [aux_sym_concatenation_repeat1] = STATE(544), + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(1109), + [sym_variable_name] = ACTIONS(1085), + [ts_builtin_sym_end] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1087), + [anon_sym_SEMI_SEMI] = ACTIONS(1085), + [anon_sym_PIPE_AMP] = ACTIONS(1085), + [anon_sym_AMP_AMP] = ACTIONS(1085), + [anon_sym_PIPE_PIPE] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_AMP_GT] = ACTIONS(1087), + [anon_sym_AMP_GT_GT] = ACTIONS(1085), + [anon_sym_LT_AMP] = ACTIONS(1085), + [anon_sym_GT_AMP] = ACTIONS(1085), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_LT_LT_DASH] = ACTIONS(1085), + [anon_sym_LT_LT_LT] = ACTIONS(1085), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1087), + [sym_raw_string] = ACTIONS(1085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_LT_LPAREN] = ACTIONS(1085), + [anon_sym_GT_LPAREN] = ACTIONS(1085), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1087), + [anon_sym_LF] = ACTIONS(1085), + [anon_sym_AMP] = ACTIONS(1087), + }, + [202] = { + [sym_subscript] = STATE(554), + [sym_variable_name] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_DOLLAR] = ACTIONS(1129), + [anon_sym_POUND] = ACTIONS(1127), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1131), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_AT] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1133), + [anon_sym_0] = ACTIONS(1131), + [anon_sym__] = ACTIONS(1131), + }, + [203] = { + [sym__terminated_statement] = STATE(557), + [sym_redirected_statement] = STATE(555), + [sym_for_statement] = STATE(555), + [sym_c_style_for_statement] = STATE(555), + [sym_while_statement] = STATE(555), + [sym_if_statement] = STATE(555), + [sym_case_statement] = STATE(555), + [sym_function_definition] = STATE(555), + [sym_compound_statement] = STATE(555), + [sym_subshell] = STATE(555), + [sym_pipeline] = STATE(555), + [sym_list] = STATE(555), + [sym_negated_command] = STATE(555), + [sym_test_command] = STATE(555), + [sym_declaration_command] = STATE(555), + [sym_unset_command] = STATE(555), + [sym_command] = STATE(555), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(556), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(557), + [aux_sym_command_repeat1] = STATE(87), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(7), + [sym_variable_name] = ACTIONS(129), [anon_sym_for] = ACTIONS(11), [anon_sym_LPAREN_LPAREN] = ACTIONS(13), [anon_sym_while] = ACTIONS(15), @@ -14219,2166 +14922,2218 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(19), [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(29), - [anon_sym_declare] = ACTIONS(31), - [anon_sym_typeset] = ACTIONS(31), - [anon_sym_export] = ACTIONS(31), - [anon_sym_readonly] = ACTIONS(31), - [anon_sym_local] = ACTIONS(31), - [anon_sym_unset] = ACTIONS(33), - [anon_sym_unsetenv] = ACTIONS(33), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(45), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(57), - }, - [184] = { - [ts_builtin_sym_end] = ACTIONS(949), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_esac] = ACTIONS(949), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_RPAREN] = ACTIONS(949), - [anon_sym_SEMI_SEMI] = ACTIONS(949), - [anon_sym_PIPE_AMP] = ACTIONS(949), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_PIPE_PIPE] = ACTIONS(949), - [anon_sym_BQUOTE] = ACTIONS(949), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(949), - [anon_sym_AMP] = ACTIONS(951), - }, - [185] = { - [sym_simple_expansion] = STATE(528), - [sym_expansion] = STATE(528), - [aux_sym_heredoc_body_repeat1] = STATE(528), - [sym__heredoc_body_middle] = ACTIONS(953), - [sym__heredoc_body_end] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), - [sym_comment] = ACTIONS(55), - }, - [186] = { - [anon_sym_LT] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(961), - [anon_sym_GT_GT] = ACTIONS(963), - [anon_sym_AMP_GT] = ACTIONS(961), - [anon_sym_AMP_GT_GT] = ACTIONS(963), - [anon_sym_LT_AMP] = ACTIONS(963), - [anon_sym_GT_AMP] = ACTIONS(963), - [sym_comment] = ACTIONS(55), - }, - [187] = { - [sym_concatenation] = STATE(530), - [sym_string] = STATE(532), - [sym_simple_expansion] = STATE(532), - [sym_string_expansion] = STATE(532), - [sym_expansion] = STATE(532), - [sym_command_substitution] = STATE(532), - [sym_process_substitution] = STATE(532), - [sym_regex] = ACTIONS(965), - [sym__special_characters] = ACTIONS(967), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(969), - }, - [188] = { - [sym_concatenation] = STATE(535), - [sym_string] = STATE(534), - [sym_simple_expansion] = STATE(534), - [sym_string_expansion] = STATE(534), - [sym_expansion] = STATE(534), - [sym_command_substitution] = STATE(534), - [sym_process_substitution] = STATE(534), - [sym__special_characters] = ACTIONS(971), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(973), - }, - [189] = { - [sym_heredoc_start] = ACTIONS(975), - [sym_comment] = ACTIONS(55), - }, - [190] = { - [sym_concatenation] = STATE(539), - [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), - [sym__special_characters] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(979), - }, - [191] = { - [aux_sym_concatenation_repeat1] = STATE(145), - [sym__simple_heredoc_body] = ACTIONS(981), - [sym__heredoc_body_beginning] = ACTIONS(981), - [sym_file_descriptor] = ACTIONS(981), - [sym__concat] = ACTIONS(265), - [ts_builtin_sym_end] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(983), - [anon_sym_SEMI_SEMI] = ACTIONS(981), - [anon_sym_PIPE_AMP] = ACTIONS(981), - [anon_sym_AMP_AMP] = ACTIONS(981), - [anon_sym_PIPE_PIPE] = ACTIONS(981), - [anon_sym_EQ_TILDE] = ACTIONS(983), - [anon_sym_EQ_EQ] = ACTIONS(983), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(983), - [anon_sym_GT_GT] = ACTIONS(981), - [anon_sym_AMP_GT] = ACTIONS(983), - [anon_sym_AMP_GT_GT] = ACTIONS(981), - [anon_sym_LT_AMP] = ACTIONS(981), - [anon_sym_GT_AMP] = ACTIONS(981), - [anon_sym_LT_LT] = ACTIONS(983), - [anon_sym_LT_LT_DASH] = ACTIONS(981), - [anon_sym_LT_LT_LT] = ACTIONS(981), - [sym__special_characters] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(983), - [sym_raw_string] = ACTIONS(981), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(981), - [anon_sym_BQUOTE] = ACTIONS(981), - [anon_sym_LT_LPAREN] = ACTIONS(981), - [anon_sym_GT_LPAREN] = ACTIONS(981), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(983), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_AMP] = ACTIONS(983), - }, - [192] = { - [aux_sym_concatenation_repeat1] = STATE(145), - [sym__simple_heredoc_body] = ACTIONS(985), - [sym__heredoc_body_beginning] = ACTIONS(985), - [sym_file_descriptor] = ACTIONS(985), - [sym__concat] = ACTIONS(265), - [ts_builtin_sym_end] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_PIPE] = ACTIONS(987), - [anon_sym_SEMI_SEMI] = ACTIONS(985), - [anon_sym_PIPE_AMP] = ACTIONS(985), - [anon_sym_AMP_AMP] = ACTIONS(985), - [anon_sym_PIPE_PIPE] = ACTIONS(985), - [anon_sym_EQ_TILDE] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_LT] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_AMP_GT] = ACTIONS(987), - [anon_sym_AMP_GT_GT] = ACTIONS(985), - [anon_sym_LT_AMP] = ACTIONS(985), - [anon_sym_GT_AMP] = ACTIONS(985), - [anon_sym_LT_LT] = ACTIONS(987), - [anon_sym_LT_LT_DASH] = ACTIONS(985), - [anon_sym_LT_LT_LT] = ACTIONS(985), - [sym__special_characters] = ACTIONS(985), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(987), - [sym_raw_string] = ACTIONS(985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(985), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(985), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LT_LPAREN] = ACTIONS(985), - [anon_sym_GT_LPAREN] = ACTIONS(985), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(987), - }, - [193] = { - [ts_builtin_sym_end] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_esac] = ACTIONS(989), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_RPAREN] = ACTIONS(989), - [anon_sym_SEMI_SEMI] = ACTIONS(989), - [anon_sym_PIPE_AMP] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(989), - [anon_sym_PIPE_PIPE] = ACTIONS(989), - [anon_sym_BQUOTE] = ACTIONS(989), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - }, - [194] = { - [sym_file_redirect] = STATE(541), - [sym_heredoc_redirect] = STATE(541), - [sym_heredoc_body] = STATE(540), - [sym_herestring_redirect] = STATE(541), - [aux_sym_while_statement_repeat1] = STATE(541), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(343), - [ts_builtin_sym_end] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_SEMI_SEMI] = ACTIONS(989), - [anon_sym_PIPE_AMP] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(989), - [anon_sym_PIPE_PIPE] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(353), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(353), - [anon_sym_LT_AMP] = ACTIONS(353), - [anon_sym_GT_AMP] = ACTIONS(353), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(359), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - }, - [195] = { - [sym_file_redirect] = STATE(542), - [sym_heredoc_redirect] = STATE(542), - [sym_heredoc_body] = STATE(540), - [sym_herestring_redirect] = STATE(542), - [sym_concatenation] = STATE(543), - [sym_string] = STATE(192), - [sym_simple_expansion] = STATE(192), - [sym_string_expansion] = STATE(192), - [sym_expansion] = STATE(192), - [sym_command_substitution] = STATE(192), - [sym_process_substitution] = STATE(192), - [aux_sym_while_statement_repeat1] = STATE(542), - [aux_sym_command_repeat2] = STATE(543), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(343), - [ts_builtin_sym_end] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_SEMI_SEMI] = ACTIONS(989), - [anon_sym_PIPE_AMP] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(989), - [anon_sym_PIPE_PIPE] = ACTIONS(989), - [anon_sym_EQ_TILDE] = ACTIONS(349), - [anon_sym_EQ_EQ] = ACTIONS(349), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(353), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(353), - [anon_sym_LT_AMP] = ACTIONS(353), - [anon_sym_GT_AMP] = ACTIONS(353), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(359), - [sym__special_characters] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(363), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(365), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - }, - [196] = { - [ts_builtin_sym_end] = ACTIONS(945), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(995), - [anon_sym_PIPE_AMP] = ACTIONS(335), - [anon_sym_AMP_AMP] = ACTIONS(337), - [anon_sym_PIPE_PIPE] = ACTIONS(337), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(995), - [anon_sym_AMP] = ACTIONS(993), - }, - [197] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [ts_builtin_sym_end] = ACTIONS(945), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(995), - [anon_sym_PIPE_AMP] = ACTIONS(335), - [anon_sym_AMP_AMP] = ACTIONS(337), - [anon_sym_PIPE_PIPE] = ACTIONS(337), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(995), - [anon_sym_AMP] = ACTIONS(993), - }, - [198] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(545), - [sym_c_style_for_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_function_definition] = STATE(545), - [sym_subshell] = STATE(545), - [sym_pipeline] = STATE(545), - [sym_list] = STATE(545), - [sym_negated_command] = STATE(545), - [sym_test_command] = STATE(545), - [sym_declaration_command] = STATE(545), - [sym_unset_command] = STATE(545), - [sym_command] = STATE(545), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(546), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(997), - [sym_variable_name] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1003), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1009), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1015), - [anon_sym_function] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1027), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym_declare] = ACTIONS(1033), - [anon_sym_typeset] = ACTIONS(1033), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_readonly] = ACTIONS(1033), - [anon_sym_local] = ACTIONS(1033), - [anon_sym_unset] = ACTIONS(1036), - [anon_sym_unsetenv] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1039), - [anon_sym_GT_GT] = ACTIONS(1042), - [anon_sym_AMP_GT] = ACTIONS(1039), - [anon_sym_AMP_GT_GT] = ACTIONS(1042), - [anon_sym_LT_AMP] = ACTIONS(1042), - [anon_sym_GT_AMP] = ACTIONS(1042), - [sym__special_characters] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_DOLLAR] = ACTIONS(1051), - [sym_raw_string] = ACTIONS(1054), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1060), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1069), - }, - [199] = { - [sym_file_redirect] = STATE(542), - [sym_heredoc_redirect] = STATE(542), - [sym_heredoc_body] = STATE(540), - [sym_herestring_redirect] = STATE(542), - [sym_concatenation] = STATE(547), - [sym_string] = STATE(192), - [sym_simple_expansion] = STATE(192), - [sym_string_expansion] = STATE(192), - [sym_expansion] = STATE(192), - [sym_command_substitution] = STATE(192), - [sym_process_substitution] = STATE(192), - [aux_sym_while_statement_repeat1] = STATE(542), - [aux_sym_command_repeat2] = STATE(547), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(343), - [ts_builtin_sym_end] = ACTIONS(989), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_SEMI_SEMI] = ACTIONS(989), - [anon_sym_PIPE_AMP] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(989), - [anon_sym_PIPE_PIPE] = ACTIONS(989), - [anon_sym_EQ_TILDE] = ACTIONS(349), - [anon_sym_EQ_EQ] = ACTIONS(349), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(353), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(353), - [anon_sym_LT_AMP] = ACTIONS(353), - [anon_sym_GT_AMP] = ACTIONS(353), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(359), - [sym__special_characters] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(363), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(365), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), - }, - [200] = { - [sym_variable_assignment] = STATE(200), - [sym_subscript] = STATE(99), - [sym_file_redirect] = STATE(200), - [aux_sym_command_repeat1] = STATE(200), - [sym_file_descriptor] = ACTIONS(1072), - [sym_variable_name] = ACTIONS(1075), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_GT_GT] = ACTIONS(1081), - [anon_sym_AMP_GT] = ACTIONS(1078), - [anon_sym_AMP_GT_GT] = ACTIONS(1081), - [anon_sym_LT_AMP] = ACTIONS(1081), - [anon_sym_GT_AMP] = ACTIONS(1081), - [sym__special_characters] = ACTIONS(1084), - [anon_sym_DQUOTE] = ACTIONS(1084), - [anon_sym_DOLLAR] = ACTIONS(1086), - [sym_raw_string] = ACTIONS(1084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1084), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1084), - [anon_sym_BQUOTE] = ACTIONS(1084), - [anon_sym_LT_LPAREN] = ACTIONS(1084), - [anon_sym_GT_LPAREN] = ACTIONS(1084), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1084), - }, - [201] = { - [aux_sym_concatenation_repeat1] = STATE(435), - [sym_file_descriptor] = ACTIONS(1088), - [sym__concat] = ACTIONS(775), - [sym_variable_name] = ACTIONS(1088), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(1090), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_AMP_GT] = ACTIONS(1090), - [anon_sym_AMP_GT_GT] = ACTIONS(1088), - [anon_sym_LT_AMP] = ACTIONS(1088), - [anon_sym_GT_AMP] = ACTIONS(1088), - [sym__special_characters] = ACTIONS(1088), - [anon_sym_DQUOTE] = ACTIONS(1088), - [anon_sym_DOLLAR] = ACTIONS(1090), - [sym_raw_string] = ACTIONS(1088), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1088), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1088), - [anon_sym_BQUOTE] = ACTIONS(1088), - [anon_sym_LT_LPAREN] = ACTIONS(1088), - [anon_sym_GT_LPAREN] = ACTIONS(1088), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1088), - }, - [202] = { - [aux_sym_concatenation_repeat1] = STATE(435), - [sym_file_descriptor] = ACTIONS(1092), - [sym__concat] = ACTIONS(775), - [sym_variable_name] = ACTIONS(1092), - [anon_sym_LT] = ACTIONS(1094), - [anon_sym_GT] = ACTIONS(1094), - [anon_sym_GT_GT] = ACTIONS(1092), - [anon_sym_AMP_GT] = ACTIONS(1094), - [anon_sym_AMP_GT_GT] = ACTIONS(1092), - [anon_sym_LT_AMP] = ACTIONS(1092), - [anon_sym_GT_AMP] = ACTIONS(1092), - [sym__special_characters] = ACTIONS(1092), - [anon_sym_DQUOTE] = ACTIONS(1092), - [anon_sym_DOLLAR] = ACTIONS(1094), - [sym_raw_string] = ACTIONS(1092), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1092), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1092), - [anon_sym_BQUOTE] = ACTIONS(1092), - [anon_sym_LT_LPAREN] = ACTIONS(1092), - [anon_sym_GT_LPAREN] = ACTIONS(1092), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1092), - }, - [203] = { - [sym_file_descriptor] = ACTIONS(1092), - [sym_variable_name] = ACTIONS(1092), - [anon_sym_LT] = ACTIONS(1094), - [anon_sym_GT] = ACTIONS(1094), - [anon_sym_GT_GT] = ACTIONS(1092), - [anon_sym_AMP_GT] = ACTIONS(1094), - [anon_sym_AMP_GT_GT] = ACTIONS(1092), - [anon_sym_LT_AMP] = ACTIONS(1092), - [anon_sym_GT_AMP] = ACTIONS(1092), - [sym__special_characters] = ACTIONS(1092), - [anon_sym_DQUOTE] = ACTIONS(1092), - [anon_sym_DOLLAR] = ACTIONS(1094), - [sym_raw_string] = ACTIONS(1092), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1092), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1092), - [anon_sym_BQUOTE] = ACTIONS(1092), - [anon_sym_LT_LPAREN] = ACTIONS(1092), - [anon_sym_GT_LPAREN] = ACTIONS(1092), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [204] = { - [aux_sym_concatenation_repeat1] = STATE(550), - [sym__concat] = ACTIONS(1096), - [anon_sym_RBRACK] = ACTIONS(1098), - [sym_comment] = ACTIONS(55), + [sym__terminated_statement] = STATE(560), + [sym_redirected_statement] = STATE(558), + [sym_for_statement] = STATE(558), + [sym_c_style_for_statement] = STATE(558), + [sym_while_statement] = STATE(558), + [sym_if_statement] = STATE(558), + [sym_case_statement] = STATE(558), + [sym_function_definition] = STATE(558), + [sym_compound_statement] = STATE(558), + [sym_subshell] = STATE(558), + [sym_pipeline] = STATE(558), + [sym_list] = STATE(558), + [sym_negated_command] = STATE(558), + [sym_test_command] = STATE(558), + [sym_declaration_command] = STATE(558), + [sym_unset_command] = STATE(558), + [sym_command] = STATE(558), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(559), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(560), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [205] = { - [aux_sym_concatenation_repeat1] = STATE(550), - [sym__concat] = ACTIONS(1100), - [anon_sym_RBRACK] = ACTIONS(1102), - [sym_comment] = ACTIONS(55), + [sym__terminated_statement] = STATE(563), + [sym_redirected_statement] = STATE(561), + [sym_for_statement] = STATE(561), + [sym_c_style_for_statement] = STATE(561), + [sym_while_statement] = STATE(561), + [sym_if_statement] = STATE(561), + [sym_case_statement] = STATE(561), + [sym_function_definition] = STATE(561), + [sym_compound_statement] = STATE(561), + [sym_subshell] = STATE(561), + [sym_pipeline] = STATE(561), + [sym_list] = STATE(561), + [sym_negated_command] = STATE(561), + [sym_test_command] = STATE(561), + [sym_declaration_command] = STATE(561), + [sym_unset_command] = STATE(561), + [sym_command] = STATE(561), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(562), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(563), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [206] = { - [sym__concat] = ACTIONS(1104), - [anon_sym_RBRACK] = ACTIONS(1102), - [sym_comment] = ACTIONS(55), + [sym__expression] = STATE(565), + [sym_binary_expression] = STATE(565), + [sym_unary_expression] = STATE(565), + [sym_postfix_expression] = STATE(565), + [sym_parenthesized_expression] = STATE(565), + [sym_concatenation] = STATE(565), + [sym_string] = STATE(212), + [sym_simple_expansion] = STATE(212), + [sym_string_expansion] = STATE(212), + [sym_expansion] = STATE(212), + [sym_command_substitution] = STATE(212), + [sym_process_substitution] = STATE(212), + [anon_sym_SEMI] = ACTIONS(1135), + [anon_sym_SEMI_SEMI] = ACTIONS(1137), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(379), + [sym__special_characters] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(385), + [sym_raw_string] = ACTIONS(387), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(389), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(391), + [anon_sym_BQUOTE] = ACTIONS(393), + [anon_sym_LT_LPAREN] = ACTIONS(395), + [anon_sym_GT_LPAREN] = ACTIONS(395), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(397), + [sym_test_operator] = ACTIONS(399), + [anon_sym_LF] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1137), }, [207] = { - [sym_file_descriptor] = ACTIONS(1106), - [sym_variable_name] = ACTIONS(1106), - [ts_builtin_sym_end] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_RPAREN] = ACTIONS(1106), - [anon_sym_SEMI_SEMI] = ACTIONS(1106), - [anon_sym_PIPE_AMP] = ACTIONS(1106), - [anon_sym_AMP_AMP] = ACTIONS(1106), - [anon_sym_PIPE_PIPE] = ACTIONS(1106), - [anon_sym_LT] = ACTIONS(1108), - [anon_sym_GT] = ACTIONS(1108), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_AMP_GT] = ACTIONS(1108), - [anon_sym_AMP_GT_GT] = ACTIONS(1106), - [anon_sym_LT_AMP] = ACTIONS(1106), - [anon_sym_GT_AMP] = ACTIONS(1106), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [sym_raw_string] = ACTIONS(1106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), - [anon_sym_BQUOTE] = ACTIONS(1106), - [anon_sym_LT_LPAREN] = ACTIONS(1106), - [anon_sym_GT_LPAREN] = ACTIONS(1106), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1108), - [anon_sym_LF] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), + [sym__expression] = STATE(566), + [sym_binary_expression] = STATE(566), + [sym_unary_expression] = STATE(566), + [sym_postfix_expression] = STATE(566), + [sym_parenthesized_expression] = STATE(566), + [sym_concatenation] = STATE(566), + [sym_string] = STATE(225), + [sym_simple_expansion] = STATE(225), + [sym_string_expansion] = STATE(225), + [sym_expansion] = STATE(225), + [sym_command_substitution] = STATE(225), + [sym_process_substitution] = STATE(225), + [anon_sym_LPAREN] = ACTIONS(407), + [anon_sym_BANG] = ACTIONS(409), + [sym__special_characters] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(415), + [sym_raw_string] = ACTIONS(417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(427), + [sym_test_operator] = ACTIONS(429), }, [208] = { - [sym_concatenation] = STATE(563), - [sym_string] = STATE(558), - [sym_simple_expansion] = STATE(558), - [sym_string_expansion] = STATE(558), - [sym_expansion] = STATE(558), - [sym_command_substitution] = STATE(558), - [sym_process_substitution] = STATE(558), - [aux_sym_for_statement_repeat1] = STATE(563), - [anon_sym_RPAREN] = ACTIONS(1110), - [sym__special_characters] = ACTIONS(1112), - [anon_sym_DQUOTE] = ACTIONS(1114), - [anon_sym_DOLLAR] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), - [anon_sym_BQUOTE] = ACTIONS(1124), - [anon_sym_LT_LPAREN] = ACTIONS(1126), - [anon_sym_GT_LPAREN] = ACTIONS(1126), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1118), + [sym__expression] = STATE(567), + [sym_binary_expression] = STATE(567), + [sym_unary_expression] = STATE(567), + [sym_postfix_expression] = STATE(567), + [sym_parenthesized_expression] = STATE(567), + [sym_concatenation] = STATE(567), + [sym_string] = STATE(212), + [sym_simple_expansion] = STATE(212), + [sym_string_expansion] = STATE(212), + [sym_expansion] = STATE(212), + [sym_command_substitution] = STATE(212), + [sym_process_substitution] = STATE(212), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(379), + [sym__special_characters] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(385), + [sym_raw_string] = ACTIONS(387), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(389), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(391), + [anon_sym_BQUOTE] = ACTIONS(393), + [anon_sym_LT_LPAREN] = ACTIONS(395), + [anon_sym_GT_LPAREN] = ACTIONS(395), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(397), + [sym_test_operator] = ACTIONS(399), }, [209] = { - [aux_sym_concatenation_repeat1] = STATE(565), - [sym_file_descriptor] = ACTIONS(1128), - [sym__concat] = ACTIONS(1130), - [sym_variable_name] = ACTIONS(1128), - [ts_builtin_sym_end] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1132), - [anon_sym_SEMI_SEMI] = ACTIONS(1128), - [anon_sym_PIPE_AMP] = ACTIONS(1128), - [anon_sym_AMP_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1132), - [anon_sym_GT] = ACTIONS(1132), - [anon_sym_GT_GT] = ACTIONS(1128), - [anon_sym_AMP_GT] = ACTIONS(1132), - [anon_sym_AMP_GT_GT] = ACTIONS(1128), - [anon_sym_LT_AMP] = ACTIONS(1128), - [anon_sym_GT_AMP] = ACTIONS(1128), - [sym__special_characters] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [anon_sym_DOLLAR] = ACTIONS(1132), - [sym_raw_string] = ACTIONS(1128), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1128), - [anon_sym_LT_LPAREN] = ACTIONS(1128), - [anon_sym_GT_LPAREN] = ACTIONS(1128), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1132), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1132), + [aux_sym_concatenation_repeat1] = STATE(569), + [sym__concat] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_SEMI_SEMI] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(433), + [anon_sym_PIPE_PIPE] = ACTIONS(433), + [anon_sym_EQ_TILDE] = ACTIONS(433), + [anon_sym_EQ_EQ] = ACTIONS(433), + [anon_sym_EQ] = ACTIONS(435), + [anon_sym_PLUS_EQ] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_BANG_EQ] = ACTIONS(433), + [anon_sym_PLUS] = ACTIONS(435), + [anon_sym_DASH] = ACTIONS(435), + [anon_sym_DASH_EQ] = ACTIONS(433), + [anon_sym_LT_EQ] = ACTIONS(433), + [anon_sym_GT_EQ] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_DASH_DASH] = ACTIONS(433), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(433), + [anon_sym_LF] = ACTIONS(433), + [anon_sym_AMP] = ACTIONS(435), }, [210] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(568), - [anon_sym_DQUOTE] = ACTIONS(1134), - [anon_sym_DOLLAR] = ACTIONS(1136), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(572), + [anon_sym_DQUOTE] = ACTIONS(1141), + [anon_sym_DOLLAR] = ACTIONS(1143), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [211] = { - [sym_string] = STATE(570), - [anon_sym_DASH] = ACTIONS(1138), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_DOLLAR] = ACTIONS(1138), - [sym_raw_string] = ACTIONS(1140), - [anon_sym_POUND] = ACTIONS(1138), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1142), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_AT] = ACTIONS(1144), - [anon_sym_QMARK] = ACTIONS(1144), - [anon_sym_0] = ACTIONS(1142), - [anon_sym__] = ACTIONS(1142), + [sym_string] = STATE(574), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(1145), + [sym_raw_string] = ACTIONS(1147), + [anon_sym_POUND] = ACTIONS(1145), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_AT] = ACTIONS(1151), + [anon_sym_QMARK] = ACTIONS(1151), + [anon_sym_0] = ACTIONS(1149), + [anon_sym__] = ACTIONS(1149), }, [212] = { - [aux_sym_concatenation_repeat1] = STATE(565), - [sym_file_descriptor] = ACTIONS(1106), - [sym__concat] = ACTIONS(1130), - [sym_variable_name] = ACTIONS(1106), - [ts_builtin_sym_end] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_SEMI_SEMI] = ACTIONS(1106), - [anon_sym_PIPE_AMP] = ACTIONS(1106), - [anon_sym_AMP_AMP] = ACTIONS(1106), - [anon_sym_PIPE_PIPE] = ACTIONS(1106), - [anon_sym_LT] = ACTIONS(1108), - [anon_sym_GT] = ACTIONS(1108), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_AMP_GT] = ACTIONS(1108), - [anon_sym_AMP_GT_GT] = ACTIONS(1106), - [anon_sym_LT_AMP] = ACTIONS(1106), - [anon_sym_GT_AMP] = ACTIONS(1106), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [sym_raw_string] = ACTIONS(1106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), - [anon_sym_BQUOTE] = ACTIONS(1106), - [anon_sym_LT_LPAREN] = ACTIONS(1106), - [anon_sym_GT_LPAREN] = ACTIONS(1106), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1108), - [anon_sym_LF] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), + [aux_sym_concatenation_repeat1] = STATE(569), + [sym__concat] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(451), + [anon_sym_SEMI_SEMI] = ACTIONS(449), + [anon_sym_AMP_AMP] = ACTIONS(449), + [anon_sym_PIPE_PIPE] = ACTIONS(449), + [anon_sym_EQ_TILDE] = ACTIONS(449), + [anon_sym_EQ_EQ] = ACTIONS(449), + [anon_sym_EQ] = ACTIONS(451), + [anon_sym_PLUS_EQ] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_BANG_EQ] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DASH_EQ] = ACTIONS(449), + [anon_sym_LT_EQ] = ACTIONS(449), + [anon_sym_GT_EQ] = ACTIONS(449), + [anon_sym_PLUS_PLUS] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(449), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(449), + [anon_sym_LF] = ACTIONS(449), + [anon_sym_AMP] = ACTIONS(451), }, [213] = { - [sym_subscript] = STATE(575), - [sym_variable_name] = ACTIONS(1146), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_DASH] = ACTIONS(1150), - [anon_sym_DOLLAR] = ACTIONS(1150), - [anon_sym_POUND] = ACTIONS(1148), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1152), - [anon_sym_STAR] = ACTIONS(1154), - [anon_sym_AT] = ACTIONS(1154), - [anon_sym_QMARK] = ACTIONS(1154), - [anon_sym_0] = ACTIONS(1152), - [anon_sym__] = ACTIONS(1152), + [sym_subscript] = STATE(579), + [sym_variable_name] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(1157), + [anon_sym_POUND] = ACTIONS(1155), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1159), + [anon_sym_STAR] = ACTIONS(1161), + [anon_sym_AT] = ACTIONS(1161), + [anon_sym_QMARK] = ACTIONS(1161), + [anon_sym_0] = ACTIONS(1159), + [anon_sym__] = ACTIONS(1159), }, [214] = { - [sym__terminated_statement] = STATE(578), - [sym_for_statement] = STATE(576), - [sym_c_style_for_statement] = STATE(576), - [sym_while_statement] = STATE(576), - [sym_if_statement] = STATE(576), - [sym_case_statement] = STATE(576), - [sym_function_definition] = STATE(576), - [sym_subshell] = STATE(576), - [sym_pipeline] = STATE(576), - [sym_list] = STATE(576), - [sym_negated_command] = STATE(576), - [sym_test_command] = STATE(576), - [sym_declaration_command] = STATE(576), - [sym_unset_command] = STATE(576), - [sym_command] = STATE(576), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(577), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(578), - [aux_sym_command_repeat1] = STATE(96), + [sym__terminated_statement] = STATE(582), + [sym_redirected_statement] = STATE(580), + [sym_for_statement] = STATE(580), + [sym_c_style_for_statement] = STATE(580), + [sym_while_statement] = STATE(580), + [sym_if_statement] = STATE(580), + [sym_case_statement] = STATE(580), + [sym_function_definition] = STATE(580), + [sym_compound_statement] = STATE(580), + [sym_subshell] = STATE(580), + [sym_pipeline] = STATE(580), + [sym_list] = STATE(580), + [sym_negated_command] = STATE(580), + [sym_test_command] = STATE(580), + [sym_declaration_command] = STATE(580), + [sym_unset_command] = STATE(580), + [sym_command] = STATE(580), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(581), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(582), + [aux_sym_command_repeat1] = STATE(87), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), + [sym_variable_name] = ACTIONS(129), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [215] = { - [sym__terminated_statement] = STATE(581), - [sym_for_statement] = STATE(579), - [sym_c_style_for_statement] = STATE(579), - [sym_while_statement] = STATE(579), - [sym_if_statement] = STATE(579), - [sym_case_statement] = STATE(579), - [sym_function_definition] = STATE(579), - [sym_subshell] = STATE(579), - [sym_pipeline] = STATE(579), - [sym_list] = STATE(579), - [sym_negated_command] = STATE(579), - [sym_test_command] = STATE(579), - [sym_declaration_command] = STATE(579), - [sym_unset_command] = STATE(579), - [sym_command] = STATE(579), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(580), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(581), - [aux_sym_command_repeat1] = STATE(176), + [sym__terminated_statement] = STATE(585), + [sym_redirected_statement] = STATE(583), + [sym_for_statement] = STATE(583), + [sym_c_style_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_compound_statement] = STATE(583), + [sym_subshell] = STATE(583), + [sym_pipeline] = STATE(583), + [sym_list] = STATE(583), + [sym_negated_command] = STATE(583), + [sym_test_command] = STATE(583), + [sym_declaration_command] = STATE(583), + [sym_unset_command] = STATE(583), + [sym_command] = STATE(583), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(584), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(585), + [aux_sym_command_repeat1] = STATE(165), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), + [sym_variable_name] = ACTIONS(97), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [216] = { - [sym__terminated_statement] = STATE(584), - [sym_for_statement] = STATE(582), - [sym_c_style_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_negated_command] = STATE(582), - [sym_test_command] = STATE(582), - [sym_declaration_command] = STATE(582), - [sym_unset_command] = STATE(582), - [sym_command] = STATE(582), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(583), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(584), - [aux_sym_command_repeat1] = STATE(96), + [sym__terminated_statement] = STATE(588), + [sym_redirected_statement] = STATE(586), + [sym_for_statement] = STATE(586), + [sym_c_style_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_compound_statement] = STATE(586), + [sym_subshell] = STATE(586), + [sym_pipeline] = STATE(586), + [sym_list] = STATE(586), + [sym_negated_command] = STATE(586), + [sym_test_command] = STATE(586), + [sym_declaration_command] = STATE(586), + [sym_unset_command] = STATE(586), + [sym_command] = STATE(586), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(587), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(588), + [aux_sym_command_repeat1] = STATE(87), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), + [sym_variable_name] = ACTIONS(129), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [217] = { - [sym__expression] = STATE(586), - [sym_binary_expression] = STATE(586), - [sym_unary_expression] = STATE(586), - [sym_postfix_expression] = STATE(586), - [sym_parenthesized_expression] = STATE(586), - [sym_concatenation] = STATE(586), - [sym_string] = STATE(223), - [sym_simple_expansion] = STATE(223), - [sym_string_expansion] = STATE(223), - [sym_expansion] = STATE(223), - [sym_command_substitution] = STATE(223), - [sym_process_substitution] = STATE(223), - [anon_sym_SEMI] = ACTIONS(1156), - [anon_sym_SEMI_SEMI] = ACTIONS(1158), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_BANG] = ACTIONS(407), - [sym__special_characters] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [anon_sym_BQUOTE] = ACTIONS(421), - [anon_sym_LT_LPAREN] = ACTIONS(423), - [anon_sym_GT_LPAREN] = ACTIONS(423), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(425), - [sym_test_operator] = ACTIONS(427), - [anon_sym_LF] = ACTIONS(1158), - [anon_sym_AMP] = ACTIONS(1158), + [anon_sym_SEMI] = ACTIONS(1163), + [anon_sym_SEMI_SEMI] = ACTIONS(1165), + [anon_sym_AMP_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(1167), + [anon_sym_EQ_TILDE] = ACTIONS(1169), + [anon_sym_EQ_EQ] = ACTIONS(1169), + [anon_sym_EQ] = ACTIONS(1171), + [anon_sym_PLUS_EQ] = ACTIONS(1167), + [anon_sym_LT] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_DASH_EQ] = ACTIONS(1167), + [anon_sym_LT_EQ] = ACTIONS(1167), + [anon_sym_GT_EQ] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1167), + [anon_sym_LF] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1163), }, [218] = { - [sym__expression] = STATE(587), - [sym_binary_expression] = STATE(587), - [sym_unary_expression] = STATE(587), - [sym_postfix_expression] = STATE(587), - [sym_parenthesized_expression] = STATE(587), - [sym_concatenation] = STATE(587), - [sym_string] = STATE(236), - [sym_simple_expansion] = STATE(236), - [sym_string_expansion] = STATE(236), - [sym_expansion] = STATE(236), - [sym_command_substitution] = STATE(236), - [sym_process_substitution] = STATE(236), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [sym__special_characters] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(443), - [sym_raw_string] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), - [anon_sym_BQUOTE] = ACTIONS(451), - [anon_sym_LT_LPAREN] = ACTIONS(453), - [anon_sym_GT_LPAREN] = ACTIONS(453), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(455), - [sym_test_operator] = ACTIONS(457), + [sym_concatenation] = STATE(601), + [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_for_statement_repeat1] = STATE(601), + [sym__special_characters] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1179), + [sym_raw_string] = ACTIONS(1181), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1183), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1185), + [anon_sym_BQUOTE] = ACTIONS(1187), + [anon_sym_LT_LPAREN] = ACTIONS(1189), + [anon_sym_GT_LPAREN] = ACTIONS(1189), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1181), }, [219] = { - [sym__expression] = STATE(588), - [sym_binary_expression] = STATE(588), - [sym_unary_expression] = STATE(588), - [sym_postfix_expression] = STATE(588), - [sym_parenthesized_expression] = STATE(588), - [sym_concatenation] = STATE(588), - [sym_string] = STATE(223), - [sym_simple_expansion] = STATE(223), - [sym_string_expansion] = STATE(223), - [sym_expansion] = STATE(223), - [sym_command_substitution] = STATE(223), - [sym_process_substitution] = STATE(223), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_BANG] = ACTIONS(407), - [sym__special_characters] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [anon_sym_BQUOTE] = ACTIONS(421), - [anon_sym_LT_LPAREN] = ACTIONS(423), - [anon_sym_GT_LPAREN] = ACTIONS(423), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(425), - [sym_test_operator] = ACTIONS(427), + [sym_do_group] = STATE(602), + [anon_sym_do] = ACTIONS(493), + [sym_comment] = ACTIONS(57), }, [220] = { - [aux_sym_concatenation_repeat1] = STATE(590), - [sym__concat] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(463), - [anon_sym_SEMI_SEMI] = ACTIONS(461), - [anon_sym_AMP_AMP] = ACTIONS(461), - [anon_sym_PIPE_PIPE] = ACTIONS(461), - [anon_sym_EQ_TILDE] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(463), - [anon_sym_PLUS_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_DASH_EQ] = ACTIONS(461), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(461), - [anon_sym_LF] = ACTIONS(461), - [anon_sym_AMP] = ACTIONS(463), + [sym__expression] = STATE(603), + [sym_binary_expression] = STATE(603), + [sym_unary_expression] = STATE(603), + [sym_postfix_expression] = STATE(603), + [sym_parenthesized_expression] = STATE(603), + [sym_concatenation] = STATE(603), + [sym_string] = STATE(225), + [sym_simple_expansion] = STATE(225), + [sym_string_expansion] = STATE(225), + [sym_expansion] = STATE(225), + [sym_command_substitution] = STATE(225), + [sym_process_substitution] = STATE(225), + [anon_sym_LPAREN] = ACTIONS(407), + [anon_sym_BANG] = ACTIONS(409), + [sym__special_characters] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(415), + [sym_raw_string] = ACTIONS(417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(427), + [sym_test_operator] = ACTIONS(429), }, [221] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(593), - [anon_sym_DQUOTE] = ACTIONS(1162), - [anon_sym_DOLLAR] = ACTIONS(1164), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym__expression] = STATE(604), + [sym_binary_expression] = STATE(604), + [sym_unary_expression] = STATE(604), + [sym_postfix_expression] = STATE(604), + [sym_parenthesized_expression] = STATE(604), + [sym_concatenation] = STATE(604), + [sym_string] = STATE(225), + [sym_simple_expansion] = STATE(225), + [sym_string_expansion] = STATE(225), + [sym_expansion] = STATE(225), + [sym_command_substitution] = STATE(225), + [sym_process_substitution] = STATE(225), + [anon_sym_LPAREN] = ACTIONS(407), + [anon_sym_BANG] = ACTIONS(409), + [sym__special_characters] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(415), + [sym_raw_string] = ACTIONS(417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(427), + [sym_test_operator] = ACTIONS(429), }, [222] = { - [sym_string] = STATE(595), - [anon_sym_DASH] = ACTIONS(1166), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(1166), - [sym_raw_string] = ACTIONS(1168), - [anon_sym_POUND] = ACTIONS(1166), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1170), - [anon_sym_STAR] = ACTIONS(1172), - [anon_sym_AT] = ACTIONS(1172), - [anon_sym_QMARK] = ACTIONS(1172), - [anon_sym_0] = ACTIONS(1170), - [anon_sym__] = ACTIONS(1170), + [aux_sym_concatenation_repeat1] = STATE(606), + [sym__concat] = ACTIONS(1191), + [anon_sym_RPAREN] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(433), + [anon_sym_PIPE_PIPE] = ACTIONS(433), + [anon_sym_EQ_TILDE] = ACTIONS(433), + [anon_sym_EQ_EQ] = ACTIONS(433), + [anon_sym_EQ] = ACTIONS(435), + [anon_sym_PLUS_EQ] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_BANG_EQ] = ACTIONS(433), + [anon_sym_PLUS] = ACTIONS(435), + [anon_sym_DASH] = ACTIONS(435), + [anon_sym_DASH_EQ] = ACTIONS(433), + [anon_sym_LT_EQ] = ACTIONS(433), + [anon_sym_GT_EQ] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(433), + [anon_sym_DASH_DASH] = ACTIONS(433), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(433), }, [223] = { - [aux_sym_concatenation_repeat1] = STATE(590), - [sym__concat] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(479), - [anon_sym_SEMI_SEMI] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(477), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_EQ_TILDE] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(477), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_LT] = ACTIONS(479), - [anon_sym_GT] = ACTIONS(479), - [anon_sym_BANG_EQ] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(477), - [anon_sym_PLUS_PLUS] = ACTIONS(477), - [anon_sym_DASH_DASH] = ACTIONS(477), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(477), - [anon_sym_LF] = ACTIONS(477), - [anon_sym_AMP] = ACTIONS(479), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(609), + [anon_sym_DQUOTE] = ACTIONS(1193), + [anon_sym_DOLLAR] = ACTIONS(1195), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [224] = { - [sym_subscript] = STATE(600), - [sym_variable_name] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_DOLLAR] = ACTIONS(1178), - [anon_sym_POUND] = ACTIONS(1176), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1180), - [anon_sym_STAR] = ACTIONS(1182), - [anon_sym_AT] = ACTIONS(1182), - [anon_sym_QMARK] = ACTIONS(1182), - [anon_sym_0] = ACTIONS(1180), - [anon_sym__] = ACTIONS(1180), + [sym_string] = STATE(611), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(1197), + [sym_raw_string] = ACTIONS(1199), + [anon_sym_POUND] = ACTIONS(1197), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1203), + [anon_sym_0] = ACTIONS(1201), + [anon_sym__] = ACTIONS(1201), }, [225] = { - [sym__terminated_statement] = STATE(603), - [sym_for_statement] = STATE(601), - [sym_c_style_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_negated_command] = STATE(601), - [sym_test_command] = STATE(601), - [sym_declaration_command] = STATE(601), - [sym_unset_command] = STATE(601), - [sym_command] = STATE(601), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(602), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(603), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [aux_sym_concatenation_repeat1] = STATE(606), + [sym__concat] = ACTIONS(1191), + [anon_sym_RPAREN] = ACTIONS(449), + [anon_sym_AMP_AMP] = ACTIONS(449), + [anon_sym_PIPE_PIPE] = ACTIONS(449), + [anon_sym_EQ_TILDE] = ACTIONS(449), + [anon_sym_EQ_EQ] = ACTIONS(449), + [anon_sym_EQ] = ACTIONS(451), + [anon_sym_PLUS_EQ] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_BANG_EQ] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DASH_EQ] = ACTIONS(449), + [anon_sym_LT_EQ] = ACTIONS(449), + [anon_sym_GT_EQ] = ACTIONS(449), + [anon_sym_PLUS_PLUS] = ACTIONS(449), + [anon_sym_DASH_DASH] = ACTIONS(449), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(449), }, [226] = { - [sym__terminated_statement] = STATE(606), - [sym_for_statement] = STATE(604), - [sym_c_style_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_negated_command] = STATE(604), - [sym_test_command] = STATE(604), - [sym_declaration_command] = STATE(604), - [sym_unset_command] = STATE(604), - [sym_command] = STATE(604), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(605), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(606), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym_subscript] = STATE(616), + [sym_variable_name] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_POUND] = ACTIONS(1207), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1211), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_AT] = ACTIONS(1213), + [anon_sym_QMARK] = ACTIONS(1213), + [anon_sym_0] = ACTIONS(1211), + [anon_sym__] = ACTIONS(1211), }, [227] = { - [sym__terminated_statement] = STATE(609), - [sym_for_statement] = STATE(607), - [sym_c_style_for_statement] = STATE(607), - [sym_while_statement] = STATE(607), - [sym_if_statement] = STATE(607), - [sym_case_statement] = STATE(607), - [sym_function_definition] = STATE(607), - [sym_subshell] = STATE(607), - [sym_pipeline] = STATE(607), - [sym_list] = STATE(607), - [sym_negated_command] = STATE(607), - [sym_test_command] = STATE(607), - [sym_declaration_command] = STATE(607), - [sym_unset_command] = STATE(607), - [sym_command] = STATE(607), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(608), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(609), - [aux_sym_command_repeat1] = STATE(96), + [sym__terminated_statement] = STATE(619), + [sym_redirected_statement] = STATE(617), + [sym_for_statement] = STATE(617), + [sym_c_style_for_statement] = STATE(617), + [sym_while_statement] = STATE(617), + [sym_if_statement] = STATE(617), + [sym_case_statement] = STATE(617), + [sym_function_definition] = STATE(617), + [sym_compound_statement] = STATE(617), + [sym_subshell] = STATE(617), + [sym_pipeline] = STATE(617), + [sym_list] = STATE(617), + [sym_negated_command] = STATE(617), + [sym_test_command] = STATE(617), + [sym_declaration_command] = STATE(617), + [sym_unset_command] = STATE(617), + [sym_command] = STATE(617), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(618), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(619), + [aux_sym_command_repeat1] = STATE(87), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), + [sym_variable_name] = ACTIONS(129), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [228] = { - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_SEMI_SEMI] = ACTIONS(1186), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_PIPE_PIPE] = ACTIONS(1188), - [anon_sym_EQ_TILDE] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1192), - [anon_sym_PLUS_EQ] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_BANG_EQ] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_DASH_EQ] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1188), - [anon_sym_LF] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1184), + [sym__terminated_statement] = STATE(622), + [sym_redirected_statement] = STATE(620), + [sym_for_statement] = STATE(620), + [sym_c_style_for_statement] = STATE(620), + [sym_while_statement] = STATE(620), + [sym_if_statement] = STATE(620), + [sym_case_statement] = STATE(620), + [sym_function_definition] = STATE(620), + [sym_compound_statement] = STATE(620), + [sym_subshell] = STATE(620), + [sym_pipeline] = STATE(620), + [sym_list] = STATE(620), + [sym_negated_command] = STATE(620), + [sym_test_command] = STATE(620), + [sym_declaration_command] = STATE(620), + [sym_unset_command] = STATE(620), + [sym_command] = STATE(620), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(621), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(622), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [229] = { - [sym_concatenation] = STATE(622), - [sym_string] = STATE(617), - [sym_simple_expansion] = STATE(617), - [sym_string_expansion] = STATE(617), - [sym_expansion] = STATE(617), - [sym_command_substitution] = STATE(617), - [sym_process_substitution] = STATE(617), - [aux_sym_for_statement_repeat1] = STATE(622), - [sym__special_characters] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_raw_string] = ACTIONS(1202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1204), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1206), - [anon_sym_BQUOTE] = ACTIONS(1208), - [anon_sym_LT_LPAREN] = ACTIONS(1210), - [anon_sym_GT_LPAREN] = ACTIONS(1210), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1202), + [sym__terminated_statement] = STATE(625), + [sym_redirected_statement] = STATE(623), + [sym_for_statement] = STATE(623), + [sym_c_style_for_statement] = STATE(623), + [sym_while_statement] = STATE(623), + [sym_if_statement] = STATE(623), + [sym_case_statement] = STATE(623), + [sym_function_definition] = STATE(623), + [sym_compound_statement] = STATE(623), + [sym_subshell] = STATE(623), + [sym_pipeline] = STATE(623), + [sym_list] = STATE(623), + [sym_negated_command] = STATE(623), + [sym_test_command] = STATE(623), + [sym_declaration_command] = STATE(623), + [sym_unset_command] = STATE(623), + [sym_command] = STATE(623), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(624), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(625), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [230] = { - [sym_do_group] = STATE(624), - [anon_sym_do] = ACTIONS(1212), - [sym_comment] = ACTIONS(55), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1217), + [anon_sym_PIPE_PIPE] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_EQ] = ACTIONS(1221), + [anon_sym_PLUS_EQ] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_DASH_EQ] = ACTIONS(1217), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1223), + [anon_sym_DASH_DASH] = ACTIONS(1223), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1217), }, [231] = { - [sym__expression] = STATE(625), - [sym_binary_expression] = STATE(625), - [sym_unary_expression] = STATE(625), - [sym_postfix_expression] = STATE(625), - [sym_parenthesized_expression] = STATE(625), - [sym_concatenation] = STATE(625), - [sym_string] = STATE(236), - [sym_simple_expansion] = STATE(236), - [sym_string_expansion] = STATE(236), - [sym_expansion] = STATE(236), - [sym_command_substitution] = STATE(236), - [sym_process_substitution] = STATE(236), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [sym__special_characters] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(443), - [sym_raw_string] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), - [anon_sym_BQUOTE] = ACTIONS(451), - [anon_sym_LT_LPAREN] = ACTIONS(453), - [anon_sym_GT_LPAREN] = ACTIONS(453), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(455), - [sym_test_operator] = ACTIONS(457), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1225), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(465), + [anon_sym_EQ_TILDE] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(467), + [anon_sym_EQ] = ACTIONS(469), + [anon_sym_PLUS_EQ] = ACTIONS(465), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(465), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_EQ] = ACTIONS(465), + [anon_sym_LT_EQ] = ACTIONS(465), + [anon_sym_GT_EQ] = ACTIONS(465), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(465), }, [232] = { - [sym__expression] = STATE(626), - [sym_binary_expression] = STATE(626), - [sym_unary_expression] = STATE(626), - [sym_postfix_expression] = STATE(626), - [sym_parenthesized_expression] = STATE(626), - [sym_concatenation] = STATE(626), - [sym_string] = STATE(236), - [sym_simple_expansion] = STATE(236), - [sym_string_expansion] = STATE(236), - [sym_expansion] = STATE(236), - [sym_command_substitution] = STATE(236), - [sym_process_substitution] = STATE(236), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [sym__special_characters] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(443), - [sym_raw_string] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), - [anon_sym_BQUOTE] = ACTIONS(451), - [anon_sym_LT_LPAREN] = ACTIONS(453), - [anon_sym_GT_LPAREN] = ACTIONS(453), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(455), - [sym_test_operator] = ACTIONS(457), + [sym_string] = STATE(630), + [sym_simple_expansion] = STATE(630), + [sym_string_expansion] = STATE(630), + [sym_expansion] = STATE(630), + [sym_command_substitution] = STATE(630), + [sym_process_substitution] = STATE(630), + [sym__special_characters] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(81), + [sym_raw_string] = ACTIONS(1227), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(85), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(89), + [anon_sym_LT_LPAREN] = ACTIONS(91), + [anon_sym_GT_LPAREN] = ACTIONS(91), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1227), }, [233] = { - [aux_sym_concatenation_repeat1] = STATE(628), - [sym__concat] = ACTIONS(1214), - [anon_sym_RPAREN] = ACTIONS(461), - [anon_sym_AMP_AMP] = ACTIONS(461), - [anon_sym_PIPE_PIPE] = ACTIONS(461), - [anon_sym_EQ_TILDE] = ACTIONS(461), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_EQ] = ACTIONS(463), - [anon_sym_PLUS_EQ] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(463), - [anon_sym_GT] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_DASH_EQ] = ACTIONS(461), - [anon_sym_LT_EQ] = ACTIONS(461), - [anon_sym_GT_EQ] = ACTIONS(461), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(461), + [aux_sym_concatenation_repeat1] = STATE(631), + [sym__concat] = ACTIONS(431), + [anon_sym_RPAREN_RPAREN] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_EQ_TILDE] = ACTIONS(779), + [anon_sym_EQ_EQ] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(781), + [anon_sym_PLUS_EQ] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_BANG_EQ] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_EQ] = ACTIONS(779), + [anon_sym_LT_EQ] = ACTIONS(779), + [anon_sym_GT_EQ] = ACTIONS(779), + [anon_sym_PLUS_PLUS] = ACTIONS(779), + [anon_sym_DASH_DASH] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(779), }, [234] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(631), - [anon_sym_DQUOTE] = ACTIONS(1216), - [anon_sym_DOLLAR] = ACTIONS(1218), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym__concat] = ACTIONS(783), + [anon_sym_RPAREN_RPAREN] = ACTIONS(783), + [anon_sym_AMP_AMP] = ACTIONS(783), + [anon_sym_PIPE_PIPE] = ACTIONS(783), + [anon_sym_RBRACK_RBRACK] = ACTIONS(783), + [anon_sym_EQ_TILDE] = ACTIONS(783), + [anon_sym_EQ_EQ] = ACTIONS(783), + [anon_sym_EQ] = ACTIONS(785), + [anon_sym_PLUS_EQ] = ACTIONS(783), + [anon_sym_LT] = ACTIONS(785), + [anon_sym_GT] = ACTIONS(785), + [anon_sym_BANG_EQ] = ACTIONS(783), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_DASH_EQ] = ACTIONS(783), + [anon_sym_LT_EQ] = ACTIONS(783), + [anon_sym_GT_EQ] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_DASH_DASH] = ACTIONS(783), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(783), }, [235] = { - [sym_string] = STATE(633), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(1220), - [sym_raw_string] = ACTIONS(1222), - [anon_sym_POUND] = ACTIONS(1220), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_AT] = ACTIONS(1226), - [anon_sym_QMARK] = ACTIONS(1226), - [anon_sym_0] = ACTIONS(1224), - [anon_sym__] = ACTIONS(1224), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(1229), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [236] = { - [aux_sym_concatenation_repeat1] = STATE(628), - [sym__concat] = ACTIONS(1214), - [anon_sym_RPAREN] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(477), - [anon_sym_PIPE_PIPE] = ACTIONS(477), - [anon_sym_EQ_TILDE] = ACTIONS(477), - [anon_sym_EQ_EQ] = ACTIONS(477), - [anon_sym_EQ] = ACTIONS(479), - [anon_sym_PLUS_EQ] = ACTIONS(477), - [anon_sym_LT] = ACTIONS(479), - [anon_sym_GT] = ACTIONS(479), - [anon_sym_BANG_EQ] = ACTIONS(477), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_DASH_EQ] = ACTIONS(477), - [anon_sym_LT_EQ] = ACTIONS(477), - [anon_sym_GT_EQ] = ACTIONS(477), - [anon_sym_PLUS_PLUS] = ACTIONS(477), - [anon_sym_DASH_DASH] = ACTIONS(477), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(477), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(455), + [anon_sym_DQUOTE] = ACTIONS(1229), + [anon_sym_DOLLAR] = ACTIONS(1231), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [237] = { - [sym_subscript] = STATE(638), - [sym_variable_name] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_DOLLAR] = ACTIONS(1232), - [anon_sym_POUND] = ACTIONS(1230), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_AT] = ACTIONS(1236), - [anon_sym_QMARK] = ACTIONS(1236), - [anon_sym_0] = ACTIONS(1234), - [anon_sym__] = ACTIONS(1234), + [sym__concat] = ACTIONS(817), + [anon_sym_RPAREN_RPAREN] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_RBRACK_RBRACK] = ACTIONS(817), + [anon_sym_EQ_TILDE] = ACTIONS(817), + [anon_sym_EQ_EQ] = ACTIONS(817), + [anon_sym_EQ] = ACTIONS(819), + [anon_sym_PLUS_EQ] = ACTIONS(817), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_BANG_EQ] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_DASH_EQ] = ACTIONS(817), + [anon_sym_LT_EQ] = ACTIONS(817), + [anon_sym_GT_EQ] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(817), + [anon_sym_DASH_DASH] = ACTIONS(817), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(817), }, [238] = { - [sym__terminated_statement] = STATE(641), - [sym_for_statement] = STATE(639), - [sym_c_style_for_statement] = STATE(639), - [sym_while_statement] = STATE(639), - [sym_if_statement] = STATE(639), - [sym_case_statement] = STATE(639), - [sym_function_definition] = STATE(639), - [sym_subshell] = STATE(639), - [sym_pipeline] = STATE(639), - [sym_list] = STATE(639), - [sym_negated_command] = STATE(639), - [sym_test_command] = STATE(639), - [sym_declaration_command] = STATE(639), - [sym_unset_command] = STATE(639), - [sym_command] = STATE(639), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(640), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(641), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym__concat] = ACTIONS(821), + [anon_sym_RPAREN_RPAREN] = ACTIONS(821), + [anon_sym_AMP_AMP] = ACTIONS(821), + [anon_sym_PIPE_PIPE] = ACTIONS(821), + [anon_sym_RBRACK_RBRACK] = ACTIONS(821), + [anon_sym_EQ_TILDE] = ACTIONS(821), + [anon_sym_EQ_EQ] = ACTIONS(821), + [anon_sym_EQ] = ACTIONS(823), + [anon_sym_PLUS_EQ] = ACTIONS(821), + [anon_sym_LT] = ACTIONS(823), + [anon_sym_GT] = ACTIONS(823), + [anon_sym_BANG_EQ] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_EQ] = ACTIONS(821), + [anon_sym_LT_EQ] = ACTIONS(821), + [anon_sym_GT_EQ] = ACTIONS(821), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(821), }, [239] = { - [sym__terminated_statement] = STATE(644), - [sym_for_statement] = STATE(642), - [sym_c_style_for_statement] = STATE(642), - [sym_while_statement] = STATE(642), - [sym_if_statement] = STATE(642), - [sym_case_statement] = STATE(642), - [sym_function_definition] = STATE(642), - [sym_subshell] = STATE(642), - [sym_pipeline] = STATE(642), - [sym_list] = STATE(642), - [sym_negated_command] = STATE(642), - [sym_test_command] = STATE(642), - [sym_declaration_command] = STATE(642), - [sym_unset_command] = STATE(642), - [sym_command] = STATE(642), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(643), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(644), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym__concat] = ACTIONS(825), + [anon_sym_RPAREN_RPAREN] = ACTIONS(825), + [anon_sym_AMP_AMP] = ACTIONS(825), + [anon_sym_PIPE_PIPE] = ACTIONS(825), + [anon_sym_RBRACK_RBRACK] = ACTIONS(825), + [anon_sym_EQ_TILDE] = ACTIONS(825), + [anon_sym_EQ_EQ] = ACTIONS(825), + [anon_sym_EQ] = ACTIONS(827), + [anon_sym_PLUS_EQ] = ACTIONS(825), + [anon_sym_LT] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(825), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_DASH_EQ] = ACTIONS(825), + [anon_sym_LT_EQ] = ACTIONS(825), + [anon_sym_GT_EQ] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(825), }, [240] = { - [sym__terminated_statement] = STATE(647), - [sym_for_statement] = STATE(645), - [sym_c_style_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_negated_command] = STATE(645), - [sym_test_command] = STATE(645), - [sym_declaration_command] = STATE(645), - [sym_unset_command] = STATE(645), - [sym_command] = STATE(645), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(646), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(647), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(1233), + [sym_comment] = ACTIONS(57), }, [241] = { - [anon_sym_RPAREN] = ACTIONS(1238), - [anon_sym_AMP_AMP] = ACTIONS(1240), - [anon_sym_PIPE_PIPE] = ACTIONS(1240), - [anon_sym_EQ_TILDE] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1244), - [anon_sym_PLUS_EQ] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1244), - [anon_sym_GT] = ACTIONS(1244), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_DASH_EQ] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1240), - [anon_sym_GT_EQ] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1240), + [sym_subscript] = STATE(637), + [sym_variable_name] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_DOLLAR] = ACTIONS(1237), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_AT] = ACTIONS(1241), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_0] = ACTIONS(1239), + [anon_sym__] = ACTIONS(1239), }, [242] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(1248), - [anon_sym_AMP_AMP] = ACTIONS(493), - [anon_sym_PIPE_PIPE] = ACTIONS(493), - [anon_sym_EQ_TILDE] = ACTIONS(495), - [anon_sym_EQ_EQ] = ACTIONS(495), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(493), - [anon_sym_LT] = ACTIONS(497), - [anon_sym_GT] = ACTIONS(497), - [anon_sym_BANG_EQ] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(497), - [anon_sym_DASH] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(493), - [anon_sym_LT_EQ] = ACTIONS(493), - [anon_sym_GT_EQ] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(493), + [sym_concatenation] = STATE(640), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(640), + [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_EQ] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_COLON] = ACTIONS(1245), + [anon_sym_COLON_QMARK] = ACTIONS(1245), + [anon_sym_COLON_DASH] = ACTIONS(1245), + [anon_sym_PERCENT] = ACTIONS(1245), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [243] = { - [sym_string] = STATE(652), - [sym_simple_expansion] = STATE(652), - [sym_string_expansion] = STATE(652), - [sym_expansion] = STATE(652), - [sym_command_substitution] = STATE(652), - [sym_process_substitution] = STATE(652), - [sym__special_characters] = ACTIONS(1250), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(79), - [sym_raw_string] = ACTIONS(1250), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), - [anon_sym_BQUOTE] = ACTIONS(87), - [anon_sym_LT_LPAREN] = ACTIONS(89), - [anon_sym_GT_LPAREN] = ACTIONS(89), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1250), + [sym_concatenation] = STATE(643), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(643), + [anon_sym_RBRACE] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1255), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_COLON] = ACTIONS(1253), + [anon_sym_COLON_QMARK] = ACTIONS(1253), + [anon_sym_COLON_DASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [244] = { - [aux_sym_concatenation_repeat1] = STATE(653), - [sym__concat] = ACTIONS(459), - [anon_sym_RPAREN_RPAREN] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(809), - [anon_sym_DASH_EQ] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(807), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(646), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_SEMI_SEMI] = ACTIONS(1263), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1259), }, [245] = { - [sym__concat] = ACTIONS(811), - [anon_sym_RPAREN_RPAREN] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_RBRACK_RBRACK] = ACTIONS(811), - [anon_sym_EQ_TILDE] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(813), - [anon_sym_PLUS_EQ] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_DASH_EQ] = ACTIONS(811), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_PLUS_PLUS] = ACTIONS(811), - [anon_sym_DASH_DASH] = ACTIONS(811), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(811), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(646), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_SEMI_SEMI] = ACTIONS(1263), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1259), }, [246] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), - }, - [247] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(473), - [anon_sym_DQUOTE] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1254), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), - }, - [248] = { - [sym__concat] = ACTIONS(845), - [anon_sym_RPAREN_RPAREN] = ACTIONS(845), - [anon_sym_AMP_AMP] = ACTIONS(845), - [anon_sym_PIPE_PIPE] = ACTIONS(845), - [anon_sym_RBRACK_RBRACK] = ACTIONS(845), - [anon_sym_EQ_TILDE] = ACTIONS(845), - [anon_sym_EQ_EQ] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(847), - [anon_sym_PLUS_EQ] = ACTIONS(845), - [anon_sym_LT] = ACTIONS(847), - [anon_sym_GT] = ACTIONS(847), - [anon_sym_BANG_EQ] = ACTIONS(845), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_DASH_EQ] = ACTIONS(845), - [anon_sym_LT_EQ] = ACTIONS(845), - [anon_sym_GT_EQ] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(845), - }, - [249] = { - [sym__concat] = ACTIONS(849), - [anon_sym_RPAREN_RPAREN] = ACTIONS(849), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [anon_sym_RBRACK_RBRACK] = ACTIONS(849), - [anon_sym_EQ_TILDE] = ACTIONS(849), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_EQ] = ACTIONS(851), - [anon_sym_PLUS_EQ] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_DASH_EQ] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(849), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(849), - }, - [250] = { - [sym__concat] = ACTIONS(853), - [anon_sym_RPAREN_RPAREN] = ACTIONS(853), - [anon_sym_AMP_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(853), - [anon_sym_RBRACK_RBRACK] = ACTIONS(853), - [anon_sym_EQ_TILDE] = ACTIONS(853), - [anon_sym_EQ_EQ] = ACTIONS(853), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_PLUS_EQ] = ACTIONS(853), - [anon_sym_LT] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_EQ] = ACTIONS(853), - [anon_sym_LT_EQ] = ACTIONS(853), - [anon_sym_GT_EQ] = ACTIONS(853), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(853), - }, - [251] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(1256), - [sym_comment] = ACTIONS(55), - }, - [252] = { - [sym_subscript] = STATE(659), - [sym_variable_name] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_DOLLAR] = ACTIONS(1260), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_AT] = ACTIONS(1264), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_0] = ACTIONS(1262), - [anon_sym__] = ACTIONS(1262), - }, - [253] = { - [sym_concatenation] = STATE(662), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(662), - [anon_sym_RBRACE] = ACTIONS(1266), - [anon_sym_EQ] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(1272), - [anon_sym_COLON] = ACTIONS(1268), - [anon_sym_COLON_QMARK] = ACTIONS(1268), - [anon_sym_COLON_DASH] = ACTIONS(1268), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [254] = { - [sym_concatenation] = STATE(665), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(665), - [anon_sym_RBRACE] = ACTIONS(1274), - [anon_sym_EQ] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1276), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1278), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(1280), - [anon_sym_COLON] = ACTIONS(1276), - [anon_sym_COLON_QMARK] = ACTIONS(1276), - [anon_sym_COLON_DASH] = ACTIONS(1276), - [anon_sym_PERCENT] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [255] = { - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1284), - [anon_sym_SEMI_SEMI] = ACTIONS(1286), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1282), - }, - [256] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1284), - [anon_sym_SEMI_SEMI] = ACTIONS(1286), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1282), - }, - [257] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(668), - [sym_c_style_for_statement] = STATE(668), - [sym_while_statement] = STATE(668), - [sym_if_statement] = STATE(668), - [sym_case_statement] = STATE(668), - [sym_function_definition] = STATE(668), - [sym_subshell] = STATE(668), - [sym_pipeline] = STATE(668), - [sym_list] = STATE(668), - [sym_negated_command] = STATE(668), - [sym_test_command] = STATE(668), - [sym_declaration_command] = STATE(668), - [sym_unset_command] = STATE(668), - [sym_command] = STATE(668), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(669), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(647), + [sym_for_statement] = STATE(647), + [sym_c_style_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_compound_statement] = STATE(647), + [sym_subshell] = STATE(647), + [sym_pipeline] = STATE(647), + [sym_list] = STATE(647), + [sym_negated_command] = STATE(647), + [sym_test_command] = STATE(647), + [sym_declaration_command] = STATE(647), + [sym_unset_command] = STATE(647), + [sym_command] = STATE(647), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(648), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), + [sym_variable_name] = ACTIONS(129), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), + }, + [247] = { + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(650), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(1267), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(1261), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1265), + }, + [248] = { + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(650), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(1267), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(1261), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1265), + }, + [249] = { + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(651), + [sym_for_statement] = STATE(651), + [sym_c_style_for_statement] = STATE(651), + [sym_while_statement] = STATE(651), + [sym_if_statement] = STATE(651), + [sym_case_statement] = STATE(651), + [sym_function_definition] = STATE(651), + [sym_compound_statement] = STATE(651), + [sym_subshell] = STATE(651), + [sym_pipeline] = STATE(651), + [sym_list] = STATE(651), + [sym_negated_command] = STATE(651), + [sym_test_command] = STATE(651), + [sym_declaration_command] = STATE(651), + [sym_unset_command] = STATE(651), + [sym_command] = STATE(651), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(652), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), + }, + [250] = { + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(655), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1271), + [anon_sym_SEMI_SEMI] = ACTIONS(1273), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1269), + }, + [251] = { + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(655), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1271), + [anon_sym_SEMI_SEMI] = ACTIONS(1273), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1269), + }, + [252] = { + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(656), + [sym_for_statement] = STATE(656), + [sym_c_style_for_statement] = STATE(656), + [sym_while_statement] = STATE(656), + [sym_if_statement] = STATE(656), + [sym_case_statement] = STATE(656), + [sym_function_definition] = STATE(656), + [sym_compound_statement] = STATE(656), + [sym_subshell] = STATE(656), + [sym_pipeline] = STATE(656), + [sym_list] = STATE(656), + [sym_negated_command] = STATE(656), + [sym_test_command] = STATE(656), + [sym_declaration_command] = STATE(656), + [sym_unset_command] = STATE(656), + [sym_command] = STATE(656), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(657), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), + }, + [253] = { + [sym__simple_heredoc_body] = ACTIONS(1275), + [sym__heredoc_body_beginning] = ACTIONS(1275), + [sym_file_descriptor] = ACTIONS(1275), + [ts_builtin_sym_end] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym_esac] = ACTIONS(1275), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_RPAREN] = ACTIONS(1275), + [anon_sym_SEMI_SEMI] = ACTIONS(1275), + [anon_sym_PIPE_AMP] = ACTIONS(1275), + [anon_sym_AMP_AMP] = ACTIONS(1275), + [anon_sym_PIPE_PIPE] = ACTIONS(1275), + [anon_sym_LT] = ACTIONS(1277), + [anon_sym_GT] = ACTIONS(1277), + [anon_sym_GT_GT] = ACTIONS(1275), + [anon_sym_AMP_GT] = ACTIONS(1277), + [anon_sym_AMP_GT_GT] = ACTIONS(1275), + [anon_sym_LT_AMP] = ACTIONS(1275), + [anon_sym_GT_AMP] = ACTIONS(1275), + [anon_sym_LT_LT] = ACTIONS(1277), + [anon_sym_LT_LT_DASH] = ACTIONS(1275), + [anon_sym_LT_LT_LT] = ACTIONS(1275), + [anon_sym_BQUOTE] = ACTIONS(1275), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(1277), + }, + [254] = { + [sym__expression] = STATE(658), + [sym_binary_expression] = STATE(658), + [sym_unary_expression] = STATE(658), + [sym_postfix_expression] = STATE(658), + [sym_parenthesized_expression] = STATE(658), + [sym_concatenation] = STATE(658), + [sym_string] = STATE(45), + [sym_simple_expansion] = STATE(45), + [sym_string_expansion] = STATE(45), + [sym_expansion] = STATE(45), + [sym_command_substitution] = STATE(45), + [sym_process_substitution] = STATE(45), + [anon_sym_LPAREN] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [sym__special_characters] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(81), + [sym_raw_string] = ACTIONS(83), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(85), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(89), + [anon_sym_LT_LPAREN] = ACTIONS(91), + [anon_sym_GT_LPAREN] = ACTIONS(91), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(93), + [sym_test_operator] = ACTIONS(95), + }, + [255] = { + [sym__expression] = STATE(658), + [sym_binary_expression] = STATE(658), + [sym_unary_expression] = STATE(658), + [sym_postfix_expression] = STATE(658), + [sym_parenthesized_expression] = STATE(658), + [sym_concatenation] = STATE(658), + [sym_string] = STATE(45), + [sym_simple_expansion] = STATE(45), + [sym_string_expansion] = STATE(45), + [sym_expansion] = STATE(45), + [sym_command_substitution] = STATE(45), + [sym_process_substitution] = STATE(45), + [sym_regex] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [sym__special_characters] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(81), + [sym_raw_string] = ACTIONS(83), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(85), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(89), + [anon_sym_LT_LPAREN] = ACTIONS(91), + [anon_sym_GT_LPAREN] = ACTIONS(91), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(93), + [sym_test_operator] = ACTIONS(95), + }, + [256] = { + [anon_sym_RPAREN_RPAREN] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1281), + [anon_sym_EQ_TILDE] = ACTIONS(1281), + [anon_sym_EQ_EQ] = ACTIONS(1281), + [anon_sym_EQ] = ACTIONS(1283), + [anon_sym_PLUS_EQ] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_BANG_EQ] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_DASH_EQ] = ACTIONS(1281), + [anon_sym_LT_EQ] = ACTIONS(1281), + [anon_sym_GT_EQ] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1281), + }, + [257] = { + [sym_concatenation] = STATE(196), + [sym_string] = STATE(661), + [sym_array] = STATE(196), + [sym_simple_expansion] = STATE(661), + [sym_string_expansion] = STATE(661), + [sym_expansion] = STATE(661), + [sym_command_substitution] = STATE(661), + [sym_process_substitution] = STATE(661), + [sym__empty_value] = ACTIONS(353), + [anon_sym_LPAREN] = ACTIONS(355), + [sym__special_characters] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_DOLLAR] = ACTIONS(361), + [sym_raw_string] = ACTIONS(1287), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(365), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(369), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1287), }, [258] = { - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(1284), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(1289), + [anon_sym_PLUS_EQ] = ACTIONS(1289), + [sym_comment] = ACTIONS(57), }, [259] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(1290), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(1284), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1288), + [aux_sym_concatenation_repeat1] = STATE(663), + [sym__simple_heredoc_body] = ACTIONS(669), + [sym__heredoc_body_beginning] = ACTIONS(669), + [sym_file_descriptor] = ACTIONS(669), + [sym__concat] = ACTIONS(671), + [sym_variable_name] = ACTIONS(669), + [anon_sym_SEMI] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(669), + [anon_sym_AMP_GT] = ACTIONS(673), + [anon_sym_AMP_GT_GT] = ACTIONS(669), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [anon_sym_LT_LT_LT] = ACTIONS(669), + [sym__special_characters] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(673), + [sym_raw_string] = ACTIONS(669), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(669), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), + [anon_sym_BQUOTE] = ACTIONS(669), + [anon_sym_LT_LPAREN] = ACTIONS(669), + [anon_sym_GT_LPAREN] = ACTIONS(669), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(673), + [sym_word] = ACTIONS(673), + [anon_sym_LF] = ACTIONS(669), + [anon_sym_AMP] = ACTIONS(673), }, [260] = { - [sym__terminated_statement] = STATE(198), + [aux_sym_concatenation_repeat1] = STATE(663), + [sym__simple_heredoc_body] = ACTIONS(687), + [sym__heredoc_body_beginning] = ACTIONS(687), + [sym_file_descriptor] = ACTIONS(687), + [sym__concat] = ACTIONS(671), + [sym_variable_name] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_SEMI_SEMI] = ACTIONS(687), + [anon_sym_PIPE_AMP] = ACTIONS(687), + [anon_sym_AMP_AMP] = ACTIONS(687), + [anon_sym_PIPE_PIPE] = ACTIONS(687), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(687), + [anon_sym_AMP_GT] = ACTIONS(689), + [anon_sym_AMP_GT_GT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(687), + [anon_sym_LT_LT] = ACTIONS(689), + [anon_sym_LT_LT_DASH] = ACTIONS(687), + [anon_sym_LT_LT_LT] = ACTIONS(687), + [sym__special_characters] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(687), + [anon_sym_DOLLAR] = ACTIONS(689), + [sym_raw_string] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(687), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_BQUOTE] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(687), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(689), + [sym_word] = ACTIONS(689), + [anon_sym_LF] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(689), + }, + [261] = { + [anon_sym_EQ] = ACTIONS(1289), + [anon_sym_PLUS_EQ] = ACTIONS(1289), + [sym_comment] = ACTIONS(57), + }, + [262] = { + [sym_variable_assignment] = STATE(664), + [sym_subscript] = STATE(261), + [sym_concatenation] = STATE(664), + [sym_string] = STATE(260), + [sym_simple_expansion] = STATE(260), + [sym_string_expansion] = STATE(260), + [sym_expansion] = STATE(260), + [sym_command_substitution] = STATE(260), + [sym_process_substitution] = STATE(260), + [aux_sym_declaration_command_repeat1] = STATE(664), + [sym__simple_heredoc_body] = ACTIONS(701), + [sym__heredoc_body_beginning] = ACTIONS(701), + [sym_file_descriptor] = ACTIONS(701), + [sym_variable_name] = ACTIONS(475), + [anon_sym_SEMI] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(703), + [anon_sym_SEMI_SEMI] = ACTIONS(701), + [anon_sym_PIPE_AMP] = ACTIONS(701), + [anon_sym_AMP_AMP] = ACTIONS(701), + [anon_sym_PIPE_PIPE] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(703), + [anon_sym_GT_GT] = ACTIONS(701), + [anon_sym_AMP_GT] = ACTIONS(703), + [anon_sym_AMP_GT_GT] = ACTIONS(701), + [anon_sym_LT_AMP] = ACTIONS(701), + [anon_sym_GT_AMP] = ACTIONS(701), + [anon_sym_LT_LT] = ACTIONS(703), + [anon_sym_LT_LT_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(701), + [sym__special_characters] = ACTIONS(477), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(479), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(199), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1291), + [sym_word] = ACTIONS(483), + [anon_sym_LF] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), + }, + [263] = { + [aux_sym_concatenation_repeat1] = STATE(665), + [sym__simple_heredoc_body] = ACTIONS(707), + [sym__heredoc_body_beginning] = ACTIONS(707), + [sym_file_descriptor] = ACTIONS(707), + [sym__concat] = ACTIONS(709), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(711), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(711), + [anon_sym_GT_GT] = ACTIONS(707), + [anon_sym_AMP_GT] = ACTIONS(711), + [anon_sym_AMP_GT_GT] = ACTIONS(707), + [anon_sym_LT_AMP] = ACTIONS(707), + [anon_sym_GT_AMP] = ACTIONS(707), + [anon_sym_LT_LT] = ACTIONS(711), + [anon_sym_LT_LT_DASH] = ACTIONS(707), + [anon_sym_LT_LT_LT] = ACTIONS(707), + [sym__special_characters] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(711), + [sym_raw_string] = ACTIONS(707), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(707), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(707), + [anon_sym_BQUOTE] = ACTIONS(707), + [anon_sym_LT_LPAREN] = ACTIONS(707), + [anon_sym_GT_LPAREN] = ACTIONS(707), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [sym_word] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(711), + }, + [264] = { + [aux_sym_concatenation_repeat1] = STATE(665), + [sym__simple_heredoc_body] = ACTIONS(725), + [sym__heredoc_body_beginning] = ACTIONS(725), + [sym_file_descriptor] = ACTIONS(725), + [sym__concat] = ACTIONS(709), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_SEMI_SEMI] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_AMP_GT] = ACTIONS(727), + [anon_sym_AMP_GT_GT] = ACTIONS(725), + [anon_sym_LT_AMP] = ACTIONS(725), + [anon_sym_GT_AMP] = ACTIONS(725), + [anon_sym_LT_LT] = ACTIONS(727), + [anon_sym_LT_LT_DASH] = ACTIONS(725), + [anon_sym_LT_LT_LT] = ACTIONS(725), + [sym__special_characters] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(727), + [sym_raw_string] = ACTIONS(725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_LT_LPAREN] = ACTIONS(725), + [anon_sym_GT_LPAREN] = ACTIONS(725), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(727), + [sym_word] = ACTIONS(727), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_AMP] = ACTIONS(727), + }, + [265] = { + [sym_concatenation] = STATE(666), + [sym_string] = STATE(264), + [sym_simple_expansion] = STATE(264), + [sym_string_expansion] = STATE(264), + [sym_expansion] = STATE(264), + [sym_command_substitution] = STATE(264), + [sym_process_substitution] = STATE(264), + [aux_sym_unset_command_repeat1] = STATE(666), + [sym__simple_heredoc_body] = ACTIONS(739), + [sym__heredoc_body_beginning] = ACTIONS(739), + [sym_file_descriptor] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_SEMI_SEMI] = ACTIONS(739), + [anon_sym_PIPE_AMP] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(739), + [anon_sym_PIPE_PIPE] = ACTIONS(739), + [anon_sym_LT] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(741), + [anon_sym_GT_GT] = ACTIONS(739), + [anon_sym_AMP_GT] = ACTIONS(741), + [anon_sym_AMP_GT_GT] = ACTIONS(739), + [anon_sym_LT_AMP] = ACTIONS(739), + [anon_sym_GT_AMP] = ACTIONS(739), + [anon_sym_LT_LT] = ACTIONS(741), + [anon_sym_LT_LT_DASH] = ACTIONS(739), + [anon_sym_LT_LT_LT] = ACTIONS(739), + [sym__special_characters] = ACTIONS(485), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(215), + [sym_raw_string] = ACTIONS(487), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), + [anon_sym_BQUOTE] = ACTIONS(223), + [anon_sym_LT_LPAREN] = ACTIONS(225), + [anon_sym_GT_LPAREN] = ACTIONS(225), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1293), + [sym_word] = ACTIONS(491), + [anon_sym_LF] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(741), + }, + [266] = { + [aux_sym_concatenation_repeat1] = STATE(667), + [sym__simple_heredoc_body] = ACTIONS(779), + [sym__heredoc_body_beginning] = ACTIONS(779), + [sym_file_descriptor] = ACTIONS(779), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [anon_sym_PIPE_AMP] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_EQ_TILDE] = ACTIONS(781), + [anon_sym_EQ_EQ] = ACTIONS(781), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_AMP_GT] = ACTIONS(781), + [anon_sym_AMP_GT_GT] = ACTIONS(779), + [anon_sym_LT_AMP] = ACTIONS(779), + [anon_sym_GT_AMP] = ACTIONS(779), + [anon_sym_LT_LT] = ACTIONS(781), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_LT] = ACTIONS(779), + [sym__special_characters] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(781), + [sym_raw_string] = ACTIONS(779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(779), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(781), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(781), + }, + [267] = { + [sym__terminated_statement] = STATE(669), + [sym_redirected_statement] = STATE(524), + [sym_for_statement] = STATE(524), + [sym_c_style_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_compound_statement] = STATE(524), + [sym_subshell] = STATE(524), + [sym_pipeline] = STATE(524), + [sym_list] = STATE(524), + [sym_negated_command] = STATE(524), + [sym_test_command] = STATE(524), + [sym_declaration_command] = STATE(524), + [sym_unset_command] = STATE(524), + [sym_command] = STATE(524), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(525), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(669), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_done] = ACTIONS(1295), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_typeset] = ACTIONS(101), + [anon_sym_export] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_local] = ACTIONS(101), + [anon_sym_unset] = ACTIONS(103), + [anon_sym_unsetenv] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), + }, + [268] = { + [sym__simple_heredoc_body] = ACTIONS(1297), + [sym__heredoc_body_beginning] = ACTIONS(1297), + [sym_file_descriptor] = ACTIONS(1297), + [ts_builtin_sym_end] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1299), + [anon_sym_esac] = ACTIONS(1297), + [anon_sym_PIPE] = ACTIONS(1299), + [anon_sym_RPAREN] = ACTIONS(1297), + [anon_sym_SEMI_SEMI] = ACTIONS(1297), + [anon_sym_PIPE_AMP] = ACTIONS(1297), + [anon_sym_AMP_AMP] = ACTIONS(1297), + [anon_sym_PIPE_PIPE] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(1299), + [anon_sym_GT] = ACTIONS(1299), + [anon_sym_GT_GT] = ACTIONS(1297), + [anon_sym_AMP_GT] = ACTIONS(1299), + [anon_sym_AMP_GT_GT] = ACTIONS(1297), + [anon_sym_LT_AMP] = ACTIONS(1297), + [anon_sym_GT_AMP] = ACTIONS(1297), + [anon_sym_LT_LT] = ACTIONS(1299), + [anon_sym_LT_LT_DASH] = ACTIONS(1297), + [anon_sym_LT_LT_LT] = ACTIONS(1297), + [anon_sym_BQUOTE] = ACTIONS(1297), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1297), + [anon_sym_AMP] = ACTIONS(1299), + }, + [269] = { + [anon_sym_LT] = ACTIONS(1301), + [anon_sym_GT] = ACTIONS(1301), + [anon_sym_GT_GT] = ACTIONS(1303), + [anon_sym_AMP_GT] = ACTIONS(1301), + [anon_sym_AMP_GT_GT] = ACTIONS(1303), + [anon_sym_LT_AMP] = ACTIONS(1303), + [anon_sym_GT_AMP] = ACTIONS(1303), + [sym_comment] = ACTIONS(57), + }, + [270] = { + [anon_sym_do] = ACTIONS(927), + [anon_sym_then] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + }, + [271] = { + [sym_redirected_statement] = STATE(671), [sym_for_statement] = STATE(671), [sym_c_style_for_statement] = STATE(671), [sym_while_statement] = STATE(671), [sym_if_statement] = STATE(671), [sym_case_statement] = STATE(671), [sym_function_definition] = STATE(671), + [sym_compound_statement] = STATE(671), [sym_subshell] = STATE(671), [sym_pipeline] = STATE(671), [sym_list] = STATE(671), @@ -16387,3958 +17142,4512 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(671), [sym_unset_command] = STATE(671), [sym_command] = STATE(671), - [sym_command_name] = STATE(173), + [sym_command_name] = STATE(60), [sym_variable_assignment] = STATE(672), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(176), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym_command_repeat1] = STATE(63), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), + [sym_variable_name] = ACTIONS(97), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), - }, - [261] = { - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1296), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1292), - }, - [262] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_SEMI_SEMI] = ACTIONS(1296), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1292), - }, - [263] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(675), - [sym_c_style_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_negated_command] = STATE(675), - [sym_test_command] = STATE(675), - [sym_declaration_command] = STATE(675), - [sym_unset_command] = STATE(675), - [sym_command] = STATE(675), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(676), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), - }, - [264] = { - [sym_file_redirect] = STATE(681), - [sym_heredoc_redirect] = STATE(681), - [sym_herestring_redirect] = STATE(681), - [aux_sym_while_statement_repeat1] = STATE(681), - [sym_file_descriptor] = ACTIONS(1298), - [ts_builtin_sym_end] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_SEMI_SEMI] = ACTIONS(1300), - [anon_sym_PIPE_AMP] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1306), - [anon_sym_AMP_GT] = ACTIONS(1304), - [anon_sym_AMP_GT_GT] = ACTIONS(1306), - [anon_sym_LT_AMP] = ACTIONS(1306), - [anon_sym_GT_AMP] = ACTIONS(1306), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_LT_LT_DASH] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(1312), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1302), - }, - [265] = { - [sym__expression] = STATE(682), - [sym_binary_expression] = STATE(682), - [sym_unary_expression] = STATE(682), - [sym_postfix_expression] = STATE(682), - [sym_parenthesized_expression] = STATE(682), - [sym_concatenation] = STATE(682), - [sym_string] = STATE(44), - [sym_simple_expansion] = STATE(44), - [sym_string_expansion] = STATE(44), - [sym_expansion] = STATE(44), - [sym_command_substitution] = STATE(44), - [sym_process_substitution] = STATE(44), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(73), - [sym__special_characters] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(79), - [sym_raw_string] = ACTIONS(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), - [anon_sym_BQUOTE] = ACTIONS(87), - [anon_sym_LT_LPAREN] = ACTIONS(89), - [anon_sym_GT_LPAREN] = ACTIONS(89), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(91), - [sym_test_operator] = ACTIONS(93), - }, - [266] = { - [sym__expression] = STATE(682), - [sym_binary_expression] = STATE(682), - [sym_unary_expression] = STATE(682), - [sym_postfix_expression] = STATE(682), - [sym_parenthesized_expression] = STATE(682), - [sym_concatenation] = STATE(682), - [sym_string] = STATE(44), - [sym_simple_expansion] = STATE(44), - [sym_string_expansion] = STATE(44), - [sym_expansion] = STATE(44), - [sym_command_substitution] = STATE(44), - [sym_process_substitution] = STATE(44), - [sym_regex] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(73), - [sym__special_characters] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(79), - [sym_raw_string] = ACTIONS(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), - [anon_sym_BQUOTE] = ACTIONS(87), - [anon_sym_LT_LPAREN] = ACTIONS(89), - [anon_sym_GT_LPAREN] = ACTIONS(89), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(91), - [sym_test_operator] = ACTIONS(93), - }, - [267] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(1316), - [anon_sym_AMP_AMP] = ACTIONS(1316), - [anon_sym_PIPE_PIPE] = ACTIONS(1316), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1316), - [anon_sym_EQ_TILDE] = ACTIONS(1316), - [anon_sym_EQ_EQ] = ACTIONS(1316), - [anon_sym_EQ] = ACTIONS(1318), - [anon_sym_PLUS_EQ] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_DASH_EQ] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_EQ] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1316), - }, - [268] = { - [sym_concatenation] = STATE(207), - [sym_string] = STATE(685), - [sym_array] = STATE(207), - [sym_simple_expansion] = STATE(685), - [sym_string_expansion] = STATE(685), - [sym_expansion] = STATE(685), - [sym_command_substitution] = STATE(685), - [sym_process_substitution] = STATE(685), - [sym__empty_value] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(383), - [sym__special_characters] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_DOLLAR] = ACTIONS(389), - [sym_raw_string] = ACTIONS(1322), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(393), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(395), - [anon_sym_BQUOTE] = ACTIONS(397), - [anon_sym_LT_LPAREN] = ACTIONS(399), - [anon_sym_GT_LPAREN] = ACTIONS(399), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1322), - }, - [269] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(1324), - [anon_sym_AMP_AMP] = ACTIONS(493), - [anon_sym_PIPE_PIPE] = ACTIONS(493), - [anon_sym_EQ_TILDE] = ACTIONS(495), - [anon_sym_EQ_EQ] = ACTIONS(495), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(493), - [anon_sym_LT] = ACTIONS(497), - [anon_sym_GT] = ACTIONS(497), - [anon_sym_BANG_EQ] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(497), - [anon_sym_DASH] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(493), - [anon_sym_LT_EQ] = ACTIONS(493), - [anon_sym_GT_EQ] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(493), - }, - [270] = { - [sym_do_group] = STATE(687), - [anon_sym_do] = ACTIONS(525), - [sym_comment] = ACTIONS(55), - }, - [271] = { - [sym_compound_statement] = STATE(689), - [anon_sym_LPAREN] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(595), - [sym_comment] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_typeset] = ACTIONS(101), + [anon_sym_export] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_local] = ACTIONS(101), + [anon_sym_unset] = ACTIONS(103), + [anon_sym_unsetenv] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [272] = { - [anon_sym_AMP_AMP] = ACTIONS(681), - [anon_sym_PIPE_PIPE] = ACTIONS(681), - [anon_sym_RBRACK] = ACTIONS(1324), - [anon_sym_EQ_TILDE] = ACTIONS(683), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(685), - [anon_sym_PLUS_EQ] = ACTIONS(681), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(681), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(681), - [anon_sym_LT_EQ] = ACTIONS(681), - [anon_sym_GT_EQ] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(681), + [sym_redirected_statement] = STATE(673), + [sym_for_statement] = STATE(673), + [sym_c_style_for_statement] = STATE(673), + [sym_while_statement] = STATE(673), + [sym_if_statement] = STATE(673), + [sym_case_statement] = STATE(673), + [sym_function_definition] = STATE(673), + [sym_compound_statement] = STATE(673), + [sym_subshell] = STATE(673), + [sym_pipeline] = STATE(673), + [sym_list] = STATE(673), + [sym_negated_command] = STATE(673), + [sym_test_command] = STATE(673), + [sym_declaration_command] = STATE(673), + [sym_unset_command] = STATE(673), + [sym_command] = STATE(673), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(674), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_typeset] = ACTIONS(101), + [anon_sym_export] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_local] = ACTIONS(101), + [anon_sym_unset] = ACTIONS(103), + [anon_sym_unsetenv] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [273] = { - [anon_sym_AMP_AMP] = ACTIONS(689), - [anon_sym_PIPE_PIPE] = ACTIONS(689), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1324), - [anon_sym_EQ_TILDE] = ACTIONS(691), - [anon_sym_EQ_EQ] = ACTIONS(691), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_PLUS_EQ] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(693), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG_EQ] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_DASH_EQ] = ACTIONS(689), - [anon_sym_LT_EQ] = ACTIONS(689), - [anon_sym_GT_EQ] = ACTIONS(689), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(689), + [sym_concatenation] = STATE(511), + [sym_string] = STATE(676), + [sym_simple_expansion] = STATE(676), + [sym_string_expansion] = STATE(676), + [sym_expansion] = STATE(676), + [sym_command_substitution] = STATE(676), + [sym_process_substitution] = STATE(676), + [sym__special_characters] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(1307), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1307), }, [274] = { - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(1328), - [anon_sym_PLUS_EQ] = ACTIONS(1328), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(515), + [sym_string] = STATE(678), + [sym_simple_expansion] = STATE(678), + [sym_string_expansion] = STATE(678), + [sym_expansion] = STATE(678), + [sym_command_substitution] = STATE(678), + [sym_process_substitution] = STATE(678), + [sym__special_characters] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(1311), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1311), }, [275] = { - [aux_sym_concatenation_repeat1] = STATE(691), - [sym__concat] = ACTIONS(697), - [sym_variable_name] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_SEMI_SEMI] = ACTIONS(699), - [anon_sym_PIPE_AMP] = ACTIONS(699), - [anon_sym_AMP_AMP] = ACTIONS(699), - [anon_sym_PIPE_PIPE] = ACTIONS(699), - [sym__special_characters] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(701), - [sym_raw_string] = ACTIONS(699), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), - [anon_sym_BQUOTE] = ACTIONS(699), - [anon_sym_LT_LPAREN] = ACTIONS(699), - [anon_sym_GT_LPAREN] = ACTIONS(699), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(701), - [sym_word] = ACTIONS(701), - [anon_sym_LF] = ACTIONS(699), - [anon_sym_AMP] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_SEMI_SEMI] = ACTIONS(1315), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1315), }, [276] = { - [aux_sym_concatenation_repeat1] = STATE(691), - [sym__concat] = ACTIONS(697), - [sym_variable_name] = ACTIONS(715), - [anon_sym_SEMI] = ACTIONS(717), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_SEMI_SEMI] = ACTIONS(715), - [anon_sym_PIPE_AMP] = ACTIONS(715), - [anon_sym_AMP_AMP] = ACTIONS(715), - [anon_sym_PIPE_PIPE] = ACTIONS(715), - [sym__special_characters] = ACTIONS(715), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_DOLLAR] = ACTIONS(717), - [sym_raw_string] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(715), - [anon_sym_BQUOTE] = ACTIONS(715), - [anon_sym_LT_LPAREN] = ACTIONS(715), - [anon_sym_GT_LPAREN] = ACTIONS(715), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(717), - [sym_word] = ACTIONS(717), - [anon_sym_LF] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(717), + [sym_file_redirect] = STATE(680), + [sym_heredoc_redirect] = STATE(680), + [sym_herestring_redirect] = STATE(680), + [aux_sym_redirected_statement_repeat1] = STATE(680), + [sym__simple_heredoc_body] = ACTIONS(947), + [sym__heredoc_body_beginning] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_SEMI_SEMI] = ACTIONS(947), + [anon_sym_PIPE_AMP] = ACTIONS(947), + [anon_sym_AMP_AMP] = ACTIONS(947), + [anon_sym_PIPE_PIPE] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_AMP_GT] = ACTIONS(507), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(511), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(947), + [anon_sym_AMP] = ACTIONS(949), }, [277] = { - [anon_sym_EQ] = ACTIONS(1328), - [anon_sym_PLUS_EQ] = ACTIONS(1328), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(518), + [sym_string] = STATE(682), + [sym_simple_expansion] = STATE(682), + [sym_string_expansion] = STATE(682), + [sym_expansion] = STATE(682), + [sym_command_substitution] = STATE(682), + [sym_process_substitution] = STATE(682), + [sym_regex] = ACTIONS(951), + [sym__special_characters] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(1319), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1319), }, [278] = { - [sym_variable_assignment] = STATE(692), - [sym_subscript] = STATE(277), - [sym_concatenation] = STATE(692), - [sym_string] = STATE(276), - [sym_simple_expansion] = STATE(276), - [sym_string_expansion] = STATE(276), - [sym_expansion] = STATE(276), - [sym_command_substitution] = STATE(276), - [sym_process_substitution] = STATE(276), - [aux_sym_declaration_command_repeat1] = STATE(692), - [sym_variable_name] = ACTIONS(505), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_SEMI_SEMI] = ACTIONS(729), - [anon_sym_PIPE_AMP] = ACTIONS(729), - [anon_sym_AMP_AMP] = ACTIONS(729), - [anon_sym_PIPE_PIPE] = ACTIONS(729), - [sym__special_characters] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR] = ACTIONS(207), - [sym_raw_string] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_BQUOTE] = ACTIONS(215), - [anon_sym_LT_LPAREN] = ACTIONS(217), - [anon_sym_GT_LPAREN] = ACTIONS(217), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1330), - [sym_word] = ACTIONS(513), - [anon_sym_LF] = ACTIONS(729), - [anon_sym_AMP] = ACTIONS(731), + [aux_sym_concatenation_repeat1] = STATE(266), + [sym__simple_heredoc_body] = ACTIONS(957), + [sym__heredoc_body_beginning] = ACTIONS(957), + [sym_file_descriptor] = ACTIONS(957), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(959), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_EQ_TILDE] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [sym__special_characters] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(959), + [sym_raw_string] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), + [anon_sym_BQUOTE] = ACTIONS(957), + [anon_sym_LT_LPAREN] = ACTIONS(957), + [anon_sym_GT_LPAREN] = ACTIONS(957), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(959), + [anon_sym_LF] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), }, [279] = { - [aux_sym_concatenation_repeat1] = STATE(693), - [sym__concat] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [sym__special_characters] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(739), - [sym_raw_string] = ACTIONS(737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [anon_sym_LT_LPAREN] = ACTIONS(737), - [anon_sym_GT_LPAREN] = ACTIONS(737), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(739), - [sym_word] = ACTIONS(739), - [anon_sym_LF] = ACTIONS(737), - [anon_sym_AMP] = ACTIONS(739), + [aux_sym_concatenation_repeat1] = STATE(266), + [sym__simple_heredoc_body] = ACTIONS(961), + [sym__heredoc_body_beginning] = ACTIONS(961), + [sym_file_descriptor] = ACTIONS(961), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_SEMI_SEMI] = ACTIONS(961), + [anon_sym_PIPE_AMP] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_EQ_TILDE] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(963), + [anon_sym_GT] = ACTIONS(963), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_AMP_GT] = ACTIONS(963), + [anon_sym_AMP_GT_GT] = ACTIONS(961), + [anon_sym_LT_AMP] = ACTIONS(961), + [anon_sym_GT_AMP] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(963), + [anon_sym_LT_LT_DASH] = ACTIONS(961), + [anon_sym_LT_LT_LT] = ACTIONS(961), + [sym__special_characters] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(963), + [sym_raw_string] = ACTIONS(961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(961), + [anon_sym_BQUOTE] = ACTIONS(961), + [anon_sym_LT_LPAREN] = ACTIONS(961), + [anon_sym_GT_LPAREN] = ACTIONS(961), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(963), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), }, [280] = { - [aux_sym_concatenation_repeat1] = STATE(693), - [sym__concat] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(755), - [anon_sym_SEMI_SEMI] = ACTIONS(753), - [anon_sym_PIPE_AMP] = ACTIONS(753), - [anon_sym_AMP_AMP] = ACTIONS(753), - [anon_sym_PIPE_PIPE] = ACTIONS(753), - [sym__special_characters] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(755), - [sym_raw_string] = ACTIONS(753), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(753), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(753), - [anon_sym_LT_LPAREN] = ACTIONS(753), - [anon_sym_GT_LPAREN] = ACTIONS(753), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(755), - [sym_word] = ACTIONS(755), - [anon_sym_LF] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(755), + [sym_concatenation] = STATE(683), + [sym_string] = STATE(279), + [sym_simple_expansion] = STATE(279), + [sym_string_expansion] = STATE(279), + [sym_expansion] = STATE(279), + [sym_command_substitution] = STATE(279), + [sym_process_substitution] = STATE(279), + [aux_sym_command_repeat2] = STATE(683), + [sym__simple_heredoc_body] = ACTIONS(965), + [sym__heredoc_body_beginning] = ACTIONS(965), + [sym_file_descriptor] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(965), + [anon_sym_PIPE_AMP] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(965), + [anon_sym_EQ_TILDE] = ACTIONS(513), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(965), + [anon_sym_AMP_GT] = ACTIONS(967), + [anon_sym_AMP_GT_GT] = ACTIONS(965), + [anon_sym_LT_AMP] = ACTIONS(965), + [anon_sym_GT_AMP] = ACTIONS(965), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(965), + [anon_sym_LT_LT_LT] = ACTIONS(965), + [sym__special_characters] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(519), + [anon_sym_LF] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), }, [281] = { - [sym_concatenation] = STATE(694), - [sym_string] = STATE(280), - [sym_simple_expansion] = STATE(280), - [sym_string_expansion] = STATE(280), - [sym_expansion] = STATE(280), - [sym_command_substitution] = STATE(280), - [sym_process_substitution] = STATE(280), - [aux_sym_unset_command_repeat1] = STATE(694), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_SEMI_SEMI] = ACTIONS(767), - [anon_sym_PIPE_AMP] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(767), - [anon_sym_PIPE_PIPE] = ACTIONS(767), + [sym_concatenation] = STATE(684), + [sym_string] = STATE(279), + [sym_simple_expansion] = STATE(279), + [sym_string_expansion] = STATE(279), + [sym_expansion] = STATE(279), + [sym_command_substitution] = STATE(279), + [sym_process_substitution] = STATE(279), + [aux_sym_command_repeat2] = STATE(684), + [sym__simple_heredoc_body] = ACTIONS(965), + [sym__heredoc_body_beginning] = ACTIONS(965), + [sym_file_descriptor] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(965), + [anon_sym_PIPE_AMP] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(965), + [anon_sym_EQ_TILDE] = ACTIONS(513), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(965), + [anon_sym_AMP_GT] = ACTIONS(967), + [anon_sym_AMP_GT_GT] = ACTIONS(965), + [anon_sym_LT_AMP] = ACTIONS(965), + [anon_sym_GT_AMP] = ACTIONS(965), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(965), + [anon_sym_LT_LT_LT] = ACTIONS(965), [sym__special_characters] = ACTIONS(515), - [anon_sym_DQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), [sym_raw_string] = ACTIONS(517), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [anon_sym_LT_LPAREN] = ACTIONS(241), - [anon_sym_GT_LPAREN] = ACTIONS(241), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1332), - [sym_word] = ACTIONS(521), - [anon_sym_LF] = ACTIONS(767), - [anon_sym_AMP] = ACTIONS(769), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(519), + [anon_sym_LF] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), }, [282] = { - [aux_sym_concatenation_repeat1] = STATE(695), - [sym__simple_heredoc_body] = ACTIONS(807), - [sym__heredoc_body_beginning] = ACTIONS(807), - [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(809), - [anon_sym_AMP_GT_GT] = ACTIONS(807), - [anon_sym_LT_AMP] = ACTIONS(807), - [anon_sym_GT_AMP] = ACTIONS(807), - [anon_sym_LT_LT] = ACTIONS(809), - [anon_sym_LT_LT_DASH] = ACTIONS(807), - [anon_sym_LT_LT_LT] = ACTIONS(807), - [sym__special_characters] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_LT_LPAREN] = ACTIONS(807), - [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(809), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), + [sym__terminated_statement] = STATE(689), + [sym_redirected_statement] = STATE(524), + [sym_for_statement] = STATE(524), + [sym_c_style_for_statement] = STATE(524), + [sym_while_statement] = STATE(524), + [sym_if_statement] = STATE(524), + [sym_elif_clause] = STATE(690), + [sym_else_clause] = STATE(688), + [sym_case_statement] = STATE(524), + [sym_function_definition] = STATE(524), + [sym_compound_statement] = STATE(524), + [sym_subshell] = STATE(524), + [sym_pipeline] = STATE(524), + [sym_list] = STATE(524), + [sym_negated_command] = STATE(524), + [sym_test_command] = STATE(524), + [sym_declaration_command] = STATE(524), + [sym_unset_command] = STATE(524), + [sym_command] = STATE(524), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(525), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(689), + [aux_sym_if_statement_repeat1] = STATE(690), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_fi] = ACTIONS(1321), + [anon_sym_elif] = ACTIONS(1323), + [anon_sym_else] = ACTIONS(1325), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_typeset] = ACTIONS(101), + [anon_sym_export] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_local] = ACTIONS(101), + [anon_sym_unset] = ACTIONS(103), + [anon_sym_unsetenv] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [283] = { - [anon_sym_RPAREN] = ACTIONS(1334), - [sym_comment] = ACTIONS(55), + [sym_string] = STATE(691), + [sym_simple_expansion] = STATE(691), + [sym_string_expansion] = STATE(691), + [sym_expansion] = STATE(691), + [sym_command_substitution] = STATE(691), + [sym_process_substitution] = STATE(691), + [sym__special_characters] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(115), + [sym_raw_string] = ACTIONS(1327), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(119), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(123), + [anon_sym_LT_LPAREN] = ACTIONS(125), + [anon_sym_GT_LPAREN] = ACTIONS(125), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1327), }, [284] = { - [sym__terminated_statement] = STATE(698), - [sym_for_statement] = STATE(545), - [sym_c_style_for_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_function_definition] = STATE(545), - [sym_subshell] = STATE(545), - [sym_pipeline] = STATE(545), - [sym_list] = STATE(545), - [sym_negated_command] = STATE(545), - [sym_test_command] = STATE(545), - [sym_declaration_command] = STATE(545), - [sym_unset_command] = STATE(545), - [sym_command] = STATE(545), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(546), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(698), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_done] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_SEMI_SEMI] = ACTIONS(1331), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1331), }, [285] = { - [sym_file_redirect] = STATE(700), - [sym_heredoc_redirect] = STATE(700), - [sym_heredoc_body] = STATE(699), - [sym_herestring_redirect] = STATE(700), - [aux_sym_while_statement_repeat1] = STATE(700), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(343), - [ts_builtin_sym_end] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1340), - [anon_sym_SEMI_SEMI] = ACTIONS(1338), - [anon_sym_PIPE_AMP] = ACTIONS(1338), - [anon_sym_AMP_AMP] = ACTIONS(1338), - [anon_sym_PIPE_PIPE] = ACTIONS(1338), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(353), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(353), - [anon_sym_LT_AMP] = ACTIONS(353), - [anon_sym_GT_AMP] = ACTIONS(353), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(359), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_in] = ACTIONS(1333), + [sym_comment] = ACTIONS(57), }, [286] = { - [anon_sym_do] = ACTIONS(943), - [anon_sym_then] = ACTIONS(943), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(694), + [sym__concat] = ACTIONS(525), + [anon_sym_in] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(779), }, [287] = { - [sym_for_statement] = STATE(521), - [sym_c_style_for_statement] = STATE(521), - [sym_while_statement] = STATE(521), - [sym_if_statement] = STATE(521), - [sym_case_statement] = STATE(521), - [sym_function_definition] = STATE(521), - [sym_subshell] = STATE(521), - [sym_pipeline] = STATE(521), - [sym_list] = STATE(521), - [sym_negated_command] = STATE(521), - [sym_test_command] = STATE(521), - [sym_declaration_command] = STATE(521), - [sym_unset_command] = STATE(521), - [sym_command] = STATE(521), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(522), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [sym__concat] = ACTIONS(783), + [anon_sym_in] = ACTIONS(783), + [anon_sym_SEMI] = ACTIONS(785), + [anon_sym_SEMI_SEMI] = ACTIONS(783), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(783), + [anon_sym_AMP] = ACTIONS(783), }, [288] = { - [sym_for_statement] = STATE(701), - [sym_c_style_for_statement] = STATE(701), - [sym_while_statement] = STATE(701), - [sym_if_statement] = STATE(701), - [sym_case_statement] = STATE(701), - [sym_function_definition] = STATE(701), - [sym_subshell] = STATE(701), - [sym_pipeline] = STATE(701), - [sym_list] = STATE(701), - [sym_negated_command] = STATE(701), - [sym_test_command] = STATE(701), - [sym_declaration_command] = STATE(701), - [sym_unset_command] = STATE(701), - [sym_command] = STATE(701), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(702), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(1335), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [289] = { - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_GT_GT] = ACTIONS(1344), - [anon_sym_AMP_GT] = ACTIONS(1342), - [anon_sym_AMP_GT_GT] = ACTIONS(1344), - [anon_sym_LT_AMP] = ACTIONS(1344), - [anon_sym_GT_AMP] = ACTIONS(1344), - [sym_comment] = ACTIONS(55), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(455), + [anon_sym_DQUOTE] = ACTIONS(1335), + [anon_sym_DOLLAR] = ACTIONS(1337), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [290] = { - [sym_concatenation] = STATE(530), - [sym_string] = STATE(705), - [sym_simple_expansion] = STATE(705), - [sym_string_expansion] = STATE(705), - [sym_expansion] = STATE(705), - [sym_command_substitution] = STATE(705), - [sym_process_substitution] = STATE(705), - [sym_regex] = ACTIONS(965), - [sym__special_characters] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(1348), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1348), + [sym__concat] = ACTIONS(817), + [anon_sym_in] = ACTIONS(817), + [anon_sym_SEMI] = ACTIONS(819), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), }, [291] = { - [sym_concatenation] = STATE(535), - [sym_string] = STATE(707), - [sym_simple_expansion] = STATE(707), - [sym_string_expansion] = STATE(707), - [sym_expansion] = STATE(707), - [sym_command_substitution] = STATE(707), - [sym_process_substitution] = STATE(707), - [sym__special_characters] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(1352), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1352), + [sym__concat] = ACTIONS(821), + [anon_sym_in] = ACTIONS(821), + [anon_sym_SEMI] = ACTIONS(823), + [anon_sym_SEMI_SEMI] = ACTIONS(821), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(821), + [anon_sym_AMP] = ACTIONS(821), }, [292] = { - [sym_concatenation] = STATE(539), - [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(1354), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(1356), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1356), + [sym__concat] = ACTIONS(825), + [anon_sym_in] = ACTIONS(825), + [anon_sym_SEMI] = ACTIONS(827), + [anon_sym_SEMI_SEMI] = ACTIONS(825), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(825), + [anon_sym_AMP] = ACTIONS(825), }, [293] = { - [aux_sym_concatenation_repeat1] = STATE(282), - [sym__simple_heredoc_body] = ACTIONS(981), - [sym__heredoc_body_beginning] = ACTIONS(981), - [sym_file_descriptor] = ACTIONS(981), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(983), - [anon_sym_SEMI_SEMI] = ACTIONS(981), - [anon_sym_PIPE_AMP] = ACTIONS(981), - [anon_sym_AMP_AMP] = ACTIONS(981), - [anon_sym_PIPE_PIPE] = ACTIONS(981), - [anon_sym_EQ_TILDE] = ACTIONS(983), - [anon_sym_EQ_EQ] = ACTIONS(983), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(983), - [anon_sym_GT_GT] = ACTIONS(981), - [anon_sym_AMP_GT] = ACTIONS(983), - [anon_sym_AMP_GT_GT] = ACTIONS(981), - [anon_sym_LT_AMP] = ACTIONS(981), - [anon_sym_GT_AMP] = ACTIONS(981), - [anon_sym_LT_LT] = ACTIONS(983), - [anon_sym_LT_LT_DASH] = ACTIONS(981), - [anon_sym_LT_LT_LT] = ACTIONS(981), - [sym__special_characters] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(983), - [sym_raw_string] = ACTIONS(981), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(981), - [anon_sym_BQUOTE] = ACTIONS(981), - [anon_sym_LT_LPAREN] = ACTIONS(981), - [anon_sym_GT_LPAREN] = ACTIONS(981), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(983), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_AMP] = ACTIONS(983), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_SEMI_SEMI] = ACTIONS(1341), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1341), }, [294] = { - [aux_sym_concatenation_repeat1] = STATE(282), - [sym__simple_heredoc_body] = ACTIONS(985), - [sym__heredoc_body_beginning] = ACTIONS(985), - [sym_file_descriptor] = ACTIONS(985), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_PIPE] = ACTIONS(987), - [anon_sym_SEMI_SEMI] = ACTIONS(985), - [anon_sym_PIPE_AMP] = ACTIONS(985), - [anon_sym_AMP_AMP] = ACTIONS(985), - [anon_sym_PIPE_PIPE] = ACTIONS(985), - [anon_sym_EQ_TILDE] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_LT] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_AMP_GT] = ACTIONS(987), - [anon_sym_AMP_GT_GT] = ACTIONS(985), - [anon_sym_LT_AMP] = ACTIONS(985), - [anon_sym_GT_AMP] = ACTIONS(985), - [anon_sym_LT_LT] = ACTIONS(987), - [anon_sym_LT_LT_DASH] = ACTIONS(985), - [anon_sym_LT_LT_LT] = ACTIONS(985), - [sym__special_characters] = ACTIONS(985), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(987), - [sym_raw_string] = ACTIONS(985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(985), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(985), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LT_LPAREN] = ACTIONS(985), - [anon_sym_GT_LPAREN] = ACTIONS(985), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(987), + [anon_sym_in] = ACTIONS(1343), + [sym_comment] = ACTIONS(57), }, [295] = { - [sym_file_redirect] = STATE(710), - [sym_heredoc_redirect] = STATE(710), - [sym_heredoc_body] = STATE(540), - [sym_herestring_redirect] = STATE(710), - [aux_sym_while_statement_repeat1] = STATE(710), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(537), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_SEMI_SEMI] = ACTIONS(989), - [anon_sym_PIPE_AMP] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(989), - [anon_sym_PIPE_PIPE] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(541), - [anon_sym_GT] = ACTIONS(541), - [anon_sym_GT_GT] = ACTIONS(543), - [anon_sym_AMP_GT] = ACTIONS(541), - [anon_sym_AMP_GT_GT] = ACTIONS(543), - [anon_sym_LT_AMP] = ACTIONS(543), - [anon_sym_GT_AMP] = ACTIONS(543), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(545), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(1345), + [sym_comment] = ACTIONS(57), }, [296] = { - [sym_file_redirect] = STATE(711), - [sym_heredoc_redirect] = STATE(711), - [sym_heredoc_body] = STATE(540), - [sym_herestring_redirect] = STATE(711), - [sym_concatenation] = STATE(712), - [sym_string] = STATE(294), - [sym_simple_expansion] = STATE(294), - [sym_string_expansion] = STATE(294), - [sym_expansion] = STATE(294), - [sym_command_substitution] = STATE(294), - [sym_process_substitution] = STATE(294), - [aux_sym_while_statement_repeat1] = STATE(711), - [aux_sym_command_repeat2] = STATE(712), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(537), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_SEMI_SEMI] = ACTIONS(989), - [anon_sym_PIPE_AMP] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(989), - [anon_sym_PIPE_PIPE] = ACTIONS(989), - [anon_sym_EQ_TILDE] = ACTIONS(539), - [anon_sym_EQ_EQ] = ACTIONS(539), - [anon_sym_LT] = ACTIONS(541), - [anon_sym_GT] = ACTIONS(541), - [anon_sym_GT_GT] = ACTIONS(543), - [anon_sym_AMP_GT] = ACTIONS(541), - [anon_sym_AMP_GT_GT] = ACTIONS(543), - [anon_sym_LT_AMP] = ACTIONS(543), - [anon_sym_GT_AMP] = ACTIONS(543), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(545), - [sym__special_characters] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(549), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(551), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [sym_subscript] = STATE(702), + [sym_variable_name] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_DOLLAR] = ACTIONS(1349), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_AT] = ACTIONS(1353), + [anon_sym_QMARK] = ACTIONS(1353), + [anon_sym_0] = ACTIONS(1351), + [anon_sym__] = ACTIONS(1351), }, [297] = { - [sym_file_redirect] = STATE(711), - [sym_heredoc_redirect] = STATE(711), - [sym_heredoc_body] = STATE(540), - [sym_herestring_redirect] = STATE(711), - [sym_concatenation] = STATE(713), - [sym_string] = STATE(294), - [sym_simple_expansion] = STATE(294), - [sym_string_expansion] = STATE(294), - [sym_expansion] = STATE(294), - [sym_command_substitution] = STATE(294), - [sym_process_substitution] = STATE(294), - [aux_sym_while_statement_repeat1] = STATE(711), - [aux_sym_command_repeat2] = STATE(713), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(537), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_SEMI_SEMI] = ACTIONS(989), - [anon_sym_PIPE_AMP] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(989), - [anon_sym_PIPE_PIPE] = ACTIONS(989), - [anon_sym_EQ_TILDE] = ACTIONS(539), - [anon_sym_EQ_EQ] = ACTIONS(539), - [anon_sym_LT] = ACTIONS(541), - [anon_sym_GT] = ACTIONS(541), - [anon_sym_GT_GT] = ACTIONS(543), - [anon_sym_AMP_GT] = ACTIONS(541), - [anon_sym_AMP_GT_GT] = ACTIONS(543), - [anon_sym_LT_AMP] = ACTIONS(543), - [anon_sym_GT_AMP] = ACTIONS(543), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(545), - [sym__special_characters] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(549), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(551), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [sym_concatenation] = STATE(705), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(705), + [anon_sym_RBRACE] = ACTIONS(1355), + [anon_sym_EQ] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(1361), + [anon_sym_COLON] = ACTIONS(1357), + [anon_sym_COLON_QMARK] = ACTIONS(1357), + [anon_sym_COLON_DASH] = ACTIONS(1357), + [anon_sym_PERCENT] = ACTIONS(1357), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [298] = { - [sym__terminated_statement] = STATE(718), - [sym_for_statement] = STATE(545), - [sym_c_style_for_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_elif_clause] = STATE(719), - [sym_else_clause] = STATE(717), - [sym_case_statement] = STATE(545), - [sym_function_definition] = STATE(545), - [sym_subshell] = STATE(545), - [sym_pipeline] = STATE(545), - [sym_list] = STATE(545), - [sym_negated_command] = STATE(545), - [sym_test_command] = STATE(545), - [sym_declaration_command] = STATE(545), - [sym_unset_command] = STATE(545), - [sym_command] = STATE(545), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(546), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(718), - [aux_sym_if_statement_repeat1] = STATE(719), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_fi] = ACTIONS(1358), - [anon_sym_elif] = ACTIONS(1360), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [sym_concatenation] = STATE(708), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(708), + [anon_sym_RBRACE] = ACTIONS(1363), + [anon_sym_EQ] = ACTIONS(1365), + [anon_sym_DASH] = ACTIONS(1365), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1367), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_COLON_QMARK] = ACTIONS(1365), + [anon_sym_COLON_DASH] = ACTIONS(1365), + [anon_sym_PERCENT] = ACTIONS(1365), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [299] = { - [sym_string] = STATE(720), - [sym_simple_expansion] = STATE(720), - [sym_string_expansion] = STATE(720), - [sym_expansion] = STATE(720), - [sym_command_substitution] = STATE(720), - [sym_process_substitution] = STATE(720), - [sym__special_characters] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(123), - [sym_raw_string] = ACTIONS(1364), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(127), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(129), - [anon_sym_BQUOTE] = ACTIONS(131), - [anon_sym_LT_LPAREN] = ACTIONS(133), - [anon_sym_GT_LPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1364), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(711), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1375), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1371), }, [300] = { - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_SEMI_SEMI] = ACTIONS(1368), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(711), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_SEMI_SEMI] = ACTIONS(1375), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1371), }, [301] = { - [anon_sym_in] = ACTIONS(1370), - [sym_comment] = ACTIONS(55), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(712), + [sym_for_statement] = STATE(712), + [sym_c_style_for_statement] = STATE(712), + [sym_while_statement] = STATE(712), + [sym_if_statement] = STATE(712), + [sym_case_statement] = STATE(712), + [sym_function_definition] = STATE(712), + [sym_compound_statement] = STATE(712), + [sym_subshell] = STATE(712), + [sym_pipeline] = STATE(712), + [sym_list] = STATE(712), + [sym_negated_command] = STATE(712), + [sym_test_command] = STATE(712), + [sym_declaration_command] = STATE(712), + [sym_unset_command] = STATE(712), + [sym_command] = STATE(712), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(713), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [302] = { - [aux_sym_concatenation_repeat1] = STATE(723), - [sym__concat] = ACTIONS(557), - [anon_sym_in] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(807), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(715), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(1379), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(1373), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1377), }, [303] = { - [sym__concat] = ACTIONS(811), - [anon_sym_in] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(813), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(715), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(1379), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(1373), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1377), }, [304] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(1372), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(716), + [sym_for_statement] = STATE(716), + [sym_c_style_for_statement] = STATE(716), + [sym_while_statement] = STATE(716), + [sym_if_statement] = STATE(716), + [sym_case_statement] = STATE(716), + [sym_function_definition] = STATE(716), + [sym_compound_statement] = STATE(716), + [sym_subshell] = STATE(716), + [sym_pipeline] = STATE(716), + [sym_list] = STATE(716), + [sym_negated_command] = STATE(716), + [sym_test_command] = STATE(716), + [sym_declaration_command] = STATE(716), + [sym_unset_command] = STATE(716), + [sym_command] = STATE(716), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(717), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [305] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(473), - [anon_sym_DQUOTE] = ACTIONS(1372), - [anon_sym_DOLLAR] = ACTIONS(1374), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(720), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1383), + [anon_sym_SEMI_SEMI] = ACTIONS(1385), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1381), }, [306] = { - [sym__concat] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_SEMI_SEMI] = ACTIONS(845), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(845), - [anon_sym_AMP] = ACTIONS(845), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(720), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1383), + [anon_sym_SEMI_SEMI] = ACTIONS(1385), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1381), }, [307] = { - [sym__concat] = ACTIONS(849), - [anon_sym_in] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_SEMI_SEMI] = ACTIONS(849), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(721), + [sym_for_statement] = STATE(721), + [sym_c_style_for_statement] = STATE(721), + [sym_while_statement] = STATE(721), + [sym_if_statement] = STATE(721), + [sym_case_statement] = STATE(721), + [sym_function_definition] = STATE(721), + [sym_compound_statement] = STATE(721), + [sym_subshell] = STATE(721), + [sym_pipeline] = STATE(721), + [sym_list] = STATE(721), + [sym_negated_command] = STATE(721), + [sym_test_command] = STATE(721), + [sym_declaration_command] = STATE(721), + [sym_unset_command] = STATE(721), + [sym_command] = STATE(721), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(722), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [308] = { - [sym__concat] = ACTIONS(853), - [anon_sym_in] = ACTIONS(853), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_SEMI_SEMI] = ACTIONS(853), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(853), + [anon_sym_RPAREN] = ACTIONS(1387), + [sym_comment] = ACTIONS(57), }, [309] = { - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_SEMI_SEMI] = ACTIONS(1378), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1378), + [sym__simple_heredoc_body] = ACTIONS(1389), + [sym__heredoc_body_beginning] = ACTIONS(1389), + [sym_file_descriptor] = ACTIONS(1389), + [ts_builtin_sym_end] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_esac] = ACTIONS(1389), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1389), + [anon_sym_SEMI_SEMI] = ACTIONS(1389), + [anon_sym_PIPE_AMP] = ACTIONS(1389), + [anon_sym_AMP_AMP] = ACTIONS(1389), + [anon_sym_PIPE_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_GT_GT] = ACTIONS(1389), + [anon_sym_AMP_GT] = ACTIONS(1391), + [anon_sym_AMP_GT_GT] = ACTIONS(1389), + [anon_sym_LT_AMP] = ACTIONS(1389), + [anon_sym_GT_AMP] = ACTIONS(1389), + [anon_sym_LT_LT] = ACTIONS(1391), + [anon_sym_LT_LT_DASH] = ACTIONS(1389), + [anon_sym_LT_LT_LT] = ACTIONS(1389), + [anon_sym_BQUOTE] = ACTIONS(1389), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(1391), }, [310] = { - [anon_sym_in] = ACTIONS(1380), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(196), + [sym_string] = STATE(725), + [sym_array] = STATE(196), + [sym_simple_expansion] = STATE(725), + [sym_string_expansion] = STATE(725), + [sym_expansion] = STATE(725), + [sym_command_substitution] = STATE(725), + [sym_process_substitution] = STATE(725), + [sym__empty_value] = ACTIONS(353), + [anon_sym_LPAREN] = ACTIONS(355), + [sym__special_characters] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_DOLLAR] = ACTIONS(361), + [sym_raw_string] = ACTIONS(1395), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(365), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(369), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1395), }, [311] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(1382), - [sym_comment] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(1397), + [anon_sym_PLUS_EQ] = ACTIONS(1397), + [sym_comment] = ACTIONS(57), }, [312] = { - [sym_subscript] = STATE(731), - [sym_variable_name] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1386), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(1390), - [anon_sym_QMARK] = ACTIONS(1390), - [anon_sym_0] = ACTIONS(1388), - [anon_sym__] = ACTIONS(1388), + [aux_sym_concatenation_repeat1] = STATE(727), + [sym__simple_heredoc_body] = ACTIONS(669), + [sym__heredoc_body_beginning] = ACTIONS(669), + [sym_file_descriptor] = ACTIONS(669), + [sym__concat] = ACTIONS(671), + [sym_variable_name] = ACTIONS(669), + [anon_sym_SEMI] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(669), + [anon_sym_AMP_GT] = ACTIONS(673), + [anon_sym_AMP_GT_GT] = ACTIONS(669), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [anon_sym_LT_LT_LT] = ACTIONS(669), + [sym__special_characters] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(673), + [sym_raw_string] = ACTIONS(669), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(669), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), + [anon_sym_BQUOTE] = ACTIONS(669), + [anon_sym_LT_LPAREN] = ACTIONS(669), + [anon_sym_GT_LPAREN] = ACTIONS(669), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(673), + [sym_word] = ACTIONS(673), + [anon_sym_LF] = ACTIONS(669), + [anon_sym_AMP] = ACTIONS(673), }, [313] = { - [sym_concatenation] = STATE(734), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(734), - [anon_sym_RBRACE] = ACTIONS(1392), - [anon_sym_EQ] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_COLON] = ACTIONS(1394), - [anon_sym_COLON_QMARK] = ACTIONS(1394), - [anon_sym_COLON_DASH] = ACTIONS(1394), - [anon_sym_PERCENT] = ACTIONS(1394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(727), + [sym__simple_heredoc_body] = ACTIONS(687), + [sym__heredoc_body_beginning] = ACTIONS(687), + [sym_file_descriptor] = ACTIONS(687), + [sym__concat] = ACTIONS(671), + [sym_variable_name] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(687), + [anon_sym_SEMI_SEMI] = ACTIONS(687), + [anon_sym_PIPE_AMP] = ACTIONS(687), + [anon_sym_AMP_AMP] = ACTIONS(687), + [anon_sym_PIPE_PIPE] = ACTIONS(687), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(687), + [anon_sym_AMP_GT] = ACTIONS(689), + [anon_sym_AMP_GT_GT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(687), + [anon_sym_LT_LT] = ACTIONS(689), + [anon_sym_LT_LT_DASH] = ACTIONS(687), + [anon_sym_LT_LT_LT] = ACTIONS(687), + [sym__special_characters] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(687), + [anon_sym_DOLLAR] = ACTIONS(689), + [sym_raw_string] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(687), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_BQUOTE] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(687), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(689), + [sym_word] = ACTIONS(689), + [anon_sym_LF] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(689), }, [314] = { - [sym_concatenation] = STATE(737), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(737), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1404), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(1406), - [anon_sym_COLON] = ACTIONS(1402), - [anon_sym_COLON_QMARK] = ACTIONS(1402), - [anon_sym_COLON_DASH] = ACTIONS(1402), - [anon_sym_PERCENT] = ACTIONS(1402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_EQ] = ACTIONS(1397), + [anon_sym_PLUS_EQ] = ACTIONS(1397), + [sym_comment] = ACTIONS(57), }, [315] = { - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1410), - [anon_sym_SEMI_SEMI] = ACTIONS(1412), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1408), + [sym_variable_assignment] = STATE(728), + [sym_subscript] = STATE(314), + [sym_concatenation] = STATE(728), + [sym_string] = STATE(313), + [sym_simple_expansion] = STATE(313), + [sym_string_expansion] = STATE(313), + [sym_expansion] = STATE(313), + [sym_command_substitution] = STATE(313), + [sym_process_substitution] = STATE(313), + [aux_sym_declaration_command_repeat1] = STATE(728), + [sym__simple_heredoc_body] = ACTIONS(701), + [sym__heredoc_body_beginning] = ACTIONS(701), + [sym_file_descriptor] = ACTIONS(701), + [sym_variable_name] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(703), + [anon_sym_RPAREN] = ACTIONS(701), + [anon_sym_SEMI_SEMI] = ACTIONS(701), + [anon_sym_PIPE_AMP] = ACTIONS(701), + [anon_sym_AMP_AMP] = ACTIONS(701), + [anon_sym_PIPE_PIPE] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(703), + [anon_sym_GT_GT] = ACTIONS(701), + [anon_sym_AMP_GT] = ACTIONS(703), + [anon_sym_AMP_GT_GT] = ACTIONS(701), + [anon_sym_LT_AMP] = ACTIONS(701), + [anon_sym_GT_AMP] = ACTIONS(701), + [anon_sym_LT_LT] = ACTIONS(703), + [anon_sym_LT_LT_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(701), + [sym__special_characters] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(569), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(199), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1399), + [sym_word] = ACTIONS(573), + [anon_sym_LF] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), }, [316] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1410), - [anon_sym_SEMI_SEMI] = ACTIONS(1412), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1408), + [aux_sym_concatenation_repeat1] = STATE(729), + [sym__simple_heredoc_body] = ACTIONS(707), + [sym__heredoc_body_beginning] = ACTIONS(707), + [sym_file_descriptor] = ACTIONS(707), + [sym__concat] = ACTIONS(709), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(711), + [anon_sym_RPAREN] = ACTIONS(707), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(711), + [anon_sym_GT_GT] = ACTIONS(707), + [anon_sym_AMP_GT] = ACTIONS(711), + [anon_sym_AMP_GT_GT] = ACTIONS(707), + [anon_sym_LT_AMP] = ACTIONS(707), + [anon_sym_GT_AMP] = ACTIONS(707), + [anon_sym_LT_LT] = ACTIONS(711), + [anon_sym_LT_LT_DASH] = ACTIONS(707), + [anon_sym_LT_LT_LT] = ACTIONS(707), + [sym__special_characters] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(711), + [sym_raw_string] = ACTIONS(707), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(707), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(707), + [anon_sym_BQUOTE] = ACTIONS(707), + [anon_sym_LT_LPAREN] = ACTIONS(707), + [anon_sym_GT_LPAREN] = ACTIONS(707), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [sym_word] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(711), }, [317] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(740), - [sym_c_style_for_statement] = STATE(740), - [sym_while_statement] = STATE(740), - [sym_if_statement] = STATE(740), - [sym_case_statement] = STATE(740), - [sym_function_definition] = STATE(740), - [sym_subshell] = STATE(740), - [sym_pipeline] = STATE(740), - [sym_list] = STATE(740), - [sym_negated_command] = STATE(740), - [sym_test_command] = STATE(740), - [sym_declaration_command] = STATE(740), - [sym_unset_command] = STATE(740), - [sym_command] = STATE(740), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(741), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [aux_sym_concatenation_repeat1] = STATE(729), + [sym__simple_heredoc_body] = ACTIONS(725), + [sym__heredoc_body_beginning] = ACTIONS(725), + [sym_file_descriptor] = ACTIONS(725), + [sym__concat] = ACTIONS(709), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_RPAREN] = ACTIONS(725), + [anon_sym_SEMI_SEMI] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_AMP_GT] = ACTIONS(727), + [anon_sym_AMP_GT_GT] = ACTIONS(725), + [anon_sym_LT_AMP] = ACTIONS(725), + [anon_sym_GT_AMP] = ACTIONS(725), + [anon_sym_LT_LT] = ACTIONS(727), + [anon_sym_LT_LT_DASH] = ACTIONS(725), + [anon_sym_LT_LT_LT] = ACTIONS(725), + [sym__special_characters] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(727), + [sym_raw_string] = ACTIONS(725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_LT_LPAREN] = ACTIONS(725), + [anon_sym_GT_LPAREN] = ACTIONS(725), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(727), + [sym_word] = ACTIONS(727), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_AMP] = ACTIONS(727), }, [318] = { - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(1416), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(1410), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1414), + [sym_concatenation] = STATE(730), + [sym_string] = STATE(317), + [sym_simple_expansion] = STATE(317), + [sym_string_expansion] = STATE(317), + [sym_expansion] = STATE(317), + [sym_command_substitution] = STATE(317), + [sym_process_substitution] = STATE(317), + [aux_sym_unset_command_repeat1] = STATE(730), + [sym__simple_heredoc_body] = ACTIONS(739), + [sym__heredoc_body_beginning] = ACTIONS(739), + [sym_file_descriptor] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_RPAREN] = ACTIONS(739), + [anon_sym_SEMI_SEMI] = ACTIONS(739), + [anon_sym_PIPE_AMP] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(739), + [anon_sym_PIPE_PIPE] = ACTIONS(739), + [anon_sym_LT] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(741), + [anon_sym_GT_GT] = ACTIONS(739), + [anon_sym_AMP_GT] = ACTIONS(741), + [anon_sym_AMP_GT_GT] = ACTIONS(739), + [anon_sym_LT_AMP] = ACTIONS(739), + [anon_sym_GT_AMP] = ACTIONS(739), + [anon_sym_LT_LT] = ACTIONS(741), + [anon_sym_LT_LT_DASH] = ACTIONS(739), + [anon_sym_LT_LT_LT] = ACTIONS(739), + [sym__special_characters] = ACTIONS(575), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(215), + [sym_raw_string] = ACTIONS(577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), + [anon_sym_BQUOTE] = ACTIONS(223), + [anon_sym_LT_LPAREN] = ACTIONS(225), + [anon_sym_GT_LPAREN] = ACTIONS(225), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1401), + [sym_word] = ACTIONS(581), + [anon_sym_LF] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(741), }, [319] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(1416), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(1410), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1414), + [aux_sym_concatenation_repeat1] = STATE(731), + [sym__simple_heredoc_body] = ACTIONS(779), + [sym__heredoc_body_beginning] = ACTIONS(779), + [sym_file_descriptor] = ACTIONS(779), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [anon_sym_PIPE_AMP] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_EQ_TILDE] = ACTIONS(781), + [anon_sym_EQ_EQ] = ACTIONS(781), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_AMP_GT] = ACTIONS(781), + [anon_sym_AMP_GT_GT] = ACTIONS(779), + [anon_sym_LT_AMP] = ACTIONS(779), + [anon_sym_GT_AMP] = ACTIONS(779), + [anon_sym_LT_LT] = ACTIONS(781), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_LT] = ACTIONS(779), + [sym__special_characters] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(781), + [sym_raw_string] = ACTIONS(779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(779), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(781), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(781), }, [320] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(743), - [sym_c_style_for_statement] = STATE(743), - [sym_while_statement] = STATE(743), - [sym_if_statement] = STATE(743), - [sym_case_statement] = STATE(743), - [sym_function_definition] = STATE(743), - [sym_subshell] = STATE(743), - [sym_pipeline] = STATE(743), - [sym_list] = STATE(743), - [sym_negated_command] = STATE(743), - [sym_test_command] = STATE(743), - [sym_declaration_command] = STATE(743), - [sym_unset_command] = STATE(743), - [sym_command] = STATE(743), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(744), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [anon_sym_LT] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(1403), + [anon_sym_GT_GT] = ACTIONS(1405), + [anon_sym_AMP_GT] = ACTIONS(1403), + [anon_sym_AMP_GT_GT] = ACTIONS(1405), + [anon_sym_LT_AMP] = ACTIONS(1405), + [anon_sym_GT_AMP] = ACTIONS(1405), + [sym_comment] = ACTIONS(57), }, [321] = { - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1420), - [anon_sym_SEMI_SEMI] = ACTIONS(1422), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1418), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(1407), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [322] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1420), - [anon_sym_SEMI_SEMI] = ACTIONS(1422), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1418), + [sym_redirected_statement] = STATE(734), + [sym_for_statement] = STATE(734), + [sym_c_style_for_statement] = STATE(734), + [sym_while_statement] = STATE(734), + [sym_if_statement] = STATE(734), + [sym_case_statement] = STATE(734), + [sym_function_definition] = STATE(734), + [sym_compound_statement] = STATE(734), + [sym_subshell] = STATE(734), + [sym_pipeline] = STATE(734), + [sym_list] = STATE(734), + [sym_negated_command] = STATE(734), + [sym_test_command] = STATE(734), + [sym_declaration_command] = STATE(734), + [sym_unset_command] = STATE(734), + [sym_command] = STATE(734), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(735), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [323] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(747), - [sym_c_style_for_statement] = STATE(747), - [sym_while_statement] = STATE(747), - [sym_if_statement] = STATE(747), - [sym_case_statement] = STATE(747), - [sym_function_definition] = STATE(747), - [sym_subshell] = STATE(747), - [sym_pipeline] = STATE(747), - [sym_list] = STATE(747), - [sym_negated_command] = STATE(747), - [sym_test_command] = STATE(747), - [sym_declaration_command] = STATE(747), - [sym_unset_command] = STATE(747), - [sym_command] = STATE(747), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(748), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym__simple_heredoc_body] = ACTIONS(1409), + [sym__heredoc_body_beginning] = ACTIONS(1409), + [sym_file_descriptor] = ACTIONS(1409), + [ts_builtin_sym_end] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1411), + [anon_sym_esac] = ACTIONS(1409), + [anon_sym_PIPE] = ACTIONS(1411), + [anon_sym_RPAREN] = ACTIONS(1409), + [anon_sym_SEMI_SEMI] = ACTIONS(1409), + [anon_sym_PIPE_AMP] = ACTIONS(1409), + [anon_sym_AMP_AMP] = ACTIONS(1409), + [anon_sym_PIPE_PIPE] = ACTIONS(1409), + [anon_sym_LT] = ACTIONS(1411), + [anon_sym_GT] = ACTIONS(1411), + [anon_sym_GT_GT] = ACTIONS(1409), + [anon_sym_AMP_GT] = ACTIONS(1411), + [anon_sym_AMP_GT_GT] = ACTIONS(1409), + [anon_sym_LT_AMP] = ACTIONS(1409), + [anon_sym_GT_AMP] = ACTIONS(1409), + [anon_sym_LT_LT] = ACTIONS(1411), + [anon_sym_LT_LT_DASH] = ACTIONS(1409), + [anon_sym_LT_LT_LT] = ACTIONS(1409), + [anon_sym_BQUOTE] = ACTIONS(1409), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1411), }, [324] = { - [anon_sym_RPAREN] = ACTIONS(1424), - [sym_comment] = ACTIONS(55), + [sym_redirected_statement] = STATE(736), + [sym_for_statement] = STATE(736), + [sym_c_style_for_statement] = STATE(736), + [sym_while_statement] = STATE(736), + [sym_if_statement] = STATE(736), + [sym_case_statement] = STATE(736), + [sym_function_definition] = STATE(736), + [sym_compound_statement] = STATE(736), + [sym_subshell] = STATE(736), + [sym_pipeline] = STATE(736), + [sym_list] = STATE(736), + [sym_negated_command] = STATE(736), + [sym_test_command] = STATE(736), + [sym_declaration_command] = STATE(736), + [sym_unset_command] = STATE(736), + [sym_command] = STATE(736), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(737), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [325] = { - [sym__terminated_statement] = STATE(753), - [sym_for_statement] = STATE(751), - [sym_c_style_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_if_statement] = STATE(751), - [sym_case_statement] = STATE(751), - [sym_function_definition] = STATE(751), - [sym_subshell] = STATE(751), - [sym_pipeline] = STATE(751), - [sym_list] = STATE(751), - [sym_negated_command] = STATE(751), - [sym_test_command] = STATE(751), - [sym_declaration_command] = STATE(751), - [sym_unset_command] = STATE(751), - [sym_command] = STATE(751), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(752), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(753), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [sym_concatenation] = STATE(511), + [sym_string] = STATE(739), + [sym_simple_expansion] = STATE(739), + [sym_string_expansion] = STATE(739), + [sym_expansion] = STATE(739), + [sym_command_substitution] = STATE(739), + [sym_process_substitution] = STATE(739), + [sym__special_characters] = ACTIONS(1413), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(1415), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1415), }, [326] = { - [sym_file_redirect] = STATE(756), - [sym_file_descriptor] = ACTIONS(1428), - [ts_builtin_sym_end] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_SEMI_SEMI] = ACTIONS(1430), - [anon_sym_PIPE_AMP] = ACTIONS(1430), - [anon_sym_AMP_AMP] = ACTIONS(1430), - [anon_sym_PIPE_PIPE] = ACTIONS(1430), - [anon_sym_LT] = ACTIONS(1434), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_GT_GT] = ACTIONS(1436), - [anon_sym_AMP_GT] = ACTIONS(1434), - [anon_sym_AMP_GT_GT] = ACTIONS(1436), - [anon_sym_LT_AMP] = ACTIONS(1436), - [anon_sym_GT_AMP] = ACTIONS(1436), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1432), + [sym_concatenation] = STATE(515), + [sym_string] = STATE(741), + [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__special_characters] = ACTIONS(1417), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(1419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1419), }, [327] = { - [sym_concatenation] = STATE(207), - [sym_string] = STATE(758), - [sym_array] = STATE(207), - [sym_simple_expansion] = STATE(758), - [sym_string_expansion] = STATE(758), - [sym_expansion] = STATE(758), - [sym_command_substitution] = STATE(758), - [sym_process_substitution] = STATE(758), - [sym__empty_value] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(383), - [sym__special_characters] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_DOLLAR] = ACTIONS(389), - [sym_raw_string] = ACTIONS(1440), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(393), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(395), - [anon_sym_BQUOTE] = ACTIONS(397), - [anon_sym_LT_LPAREN] = ACTIONS(399), - [anon_sym_GT_LPAREN] = ACTIONS(399), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1421), + [anon_sym_RPAREN] = ACTIONS(1407), + [anon_sym_SEMI_SEMI] = ACTIONS(1423), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1423), }, [328] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(1442), - [anon_sym_AMP_AMP] = ACTIONS(493), - [anon_sym_PIPE_PIPE] = ACTIONS(493), - [anon_sym_EQ_TILDE] = ACTIONS(495), - [anon_sym_EQ_EQ] = ACTIONS(495), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(493), - [anon_sym_LT] = ACTIONS(497), - [anon_sym_GT] = ACTIONS(497), - [anon_sym_BANG_EQ] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(497), - [anon_sym_DASH] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(493), - [anon_sym_LT_EQ] = ACTIONS(493), - [anon_sym_GT_EQ] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(493), + [sym_file_redirect] = STATE(743), + [sym_heredoc_redirect] = STATE(743), + [sym_herestring_redirect] = STATE(743), + [aux_sym_redirected_statement_repeat1] = STATE(743), + [sym__simple_heredoc_body] = ACTIONS(947), + [sym__heredoc_body_beginning] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(947), + [anon_sym_SEMI_SEMI] = ACTIONS(947), + [anon_sym_PIPE_AMP] = ACTIONS(947), + [anon_sym_AMP_AMP] = ACTIONS(947), + [anon_sym_PIPE_PIPE] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(947), + [anon_sym_AMP] = ACTIONS(949), }, [329] = { - [sym_do_group] = STATE(760), - [anon_sym_do] = ACTIONS(525), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(518), + [sym_string] = STATE(745), + [sym_simple_expansion] = STATE(745), + [sym_string_expansion] = STATE(745), + [sym_expansion] = STATE(745), + [sym_command_substitution] = STATE(745), + [sym_process_substitution] = STATE(745), + [sym_regex] = ACTIONS(951), + [sym__special_characters] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(1427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1427), }, [330] = { - [sym_compound_statement] = STATE(762), - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(595), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(319), + [sym__simple_heredoc_body] = ACTIONS(957), + [sym__heredoc_body_beginning] = ACTIONS(957), + [sym_file_descriptor] = ACTIONS(957), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(959), + [anon_sym_RPAREN] = ACTIONS(957), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_EQ_TILDE] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [sym__special_characters] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(959), + [sym_raw_string] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), + [anon_sym_BQUOTE] = ACTIONS(957), + [anon_sym_LT_LPAREN] = ACTIONS(957), + [anon_sym_GT_LPAREN] = ACTIONS(957), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(959), + [anon_sym_LF] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), }, [331] = { - [anon_sym_AMP_AMP] = ACTIONS(681), - [anon_sym_PIPE_PIPE] = ACTIONS(681), - [anon_sym_RBRACK] = ACTIONS(1442), - [anon_sym_EQ_TILDE] = ACTIONS(683), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(685), - [anon_sym_PLUS_EQ] = ACTIONS(681), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(681), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(681), - [anon_sym_LT_EQ] = ACTIONS(681), - [anon_sym_GT_EQ] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(681), + [aux_sym_concatenation_repeat1] = STATE(319), + [sym__simple_heredoc_body] = ACTIONS(961), + [sym__heredoc_body_beginning] = ACTIONS(961), + [sym_file_descriptor] = ACTIONS(961), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(961), + [anon_sym_SEMI_SEMI] = ACTIONS(961), + [anon_sym_PIPE_AMP] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_EQ_TILDE] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(963), + [anon_sym_GT] = ACTIONS(963), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_AMP_GT] = ACTIONS(963), + [anon_sym_AMP_GT_GT] = ACTIONS(961), + [anon_sym_LT_AMP] = ACTIONS(961), + [anon_sym_GT_AMP] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(963), + [anon_sym_LT_LT_DASH] = ACTIONS(961), + [anon_sym_LT_LT_LT] = ACTIONS(961), + [sym__special_characters] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(963), + [sym_raw_string] = ACTIONS(961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(961), + [anon_sym_BQUOTE] = ACTIONS(961), + [anon_sym_LT_LPAREN] = ACTIONS(961), + [anon_sym_GT_LPAREN] = ACTIONS(961), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(963), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), }, [332] = { - [anon_sym_AMP_AMP] = ACTIONS(689), - [anon_sym_PIPE_PIPE] = ACTIONS(689), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1442), - [anon_sym_EQ_TILDE] = ACTIONS(691), - [anon_sym_EQ_EQ] = ACTIONS(691), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_PLUS_EQ] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(693), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG_EQ] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_DASH_EQ] = ACTIONS(689), - [anon_sym_LT_EQ] = ACTIONS(689), - [anon_sym_GT_EQ] = ACTIONS(689), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(689), + [sym_concatenation] = STATE(746), + [sym_string] = STATE(331), + [sym_simple_expansion] = STATE(331), + [sym_string_expansion] = STATE(331), + [sym_expansion] = STATE(331), + [sym_command_substitution] = STATE(331), + [sym_process_substitution] = STATE(331), + [aux_sym_command_repeat2] = STATE(746), + [sym__simple_heredoc_body] = ACTIONS(965), + [sym__heredoc_body_beginning] = ACTIONS(965), + [sym_file_descriptor] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_RPAREN] = ACTIONS(965), + [anon_sym_SEMI_SEMI] = ACTIONS(965), + [anon_sym_PIPE_AMP] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(965), + [anon_sym_EQ_TILDE] = ACTIONS(603), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(965), + [anon_sym_AMP_GT] = ACTIONS(967), + [anon_sym_AMP_GT_GT] = ACTIONS(965), + [anon_sym_LT_AMP] = ACTIONS(965), + [anon_sym_GT_AMP] = ACTIONS(965), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(965), + [anon_sym_LT_LT_LT] = ACTIONS(965), + [sym__special_characters] = ACTIONS(605), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(607), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), }, [333] = { - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_PLUS_EQ] = ACTIONS(1446), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(748), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1407), + [anon_sym_SEMI_SEMI] = ACTIONS(1431), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1429), }, [334] = { - [aux_sym_concatenation_repeat1] = STATE(764), - [sym__concat] = ACTIONS(697), - [sym_variable_name] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_RPAREN] = ACTIONS(699), - [anon_sym_SEMI_SEMI] = ACTIONS(699), - [anon_sym_PIPE_AMP] = ACTIONS(699), - [anon_sym_AMP_AMP] = ACTIONS(699), - [anon_sym_PIPE_PIPE] = ACTIONS(699), - [sym__special_characters] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(701), - [sym_raw_string] = ACTIONS(699), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), - [anon_sym_BQUOTE] = ACTIONS(699), - [anon_sym_LT_LPAREN] = ACTIONS(699), - [anon_sym_GT_LPAREN] = ACTIONS(699), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(701), - [sym_word] = ACTIONS(701), - [anon_sym_LF] = ACTIONS(699), - [anon_sym_AMP] = ACTIONS(701), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(748), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1407), + [anon_sym_SEMI_SEMI] = ACTIONS(1431), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1429), }, [335] = { - [aux_sym_concatenation_repeat1] = STATE(764), - [sym__concat] = ACTIONS(697), - [sym_variable_name] = ACTIONS(715), - [anon_sym_SEMI] = ACTIONS(717), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_RPAREN] = ACTIONS(715), - [anon_sym_SEMI_SEMI] = ACTIONS(715), - [anon_sym_PIPE_AMP] = ACTIONS(715), - [anon_sym_AMP_AMP] = ACTIONS(715), - [anon_sym_PIPE_PIPE] = ACTIONS(715), - [sym__special_characters] = ACTIONS(715), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_DOLLAR] = ACTIONS(717), - [sym_raw_string] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(715), - [anon_sym_BQUOTE] = ACTIONS(715), - [anon_sym_LT_LPAREN] = ACTIONS(715), - [anon_sym_GT_LPAREN] = ACTIONS(715), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(717), - [sym_word] = ACTIONS(717), - [anon_sym_LF] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(717), + [sym_concatenation] = STATE(749), + [sym_string] = STATE(331), + [sym_simple_expansion] = STATE(331), + [sym_string_expansion] = STATE(331), + [sym_expansion] = STATE(331), + [sym_command_substitution] = STATE(331), + [sym_process_substitution] = STATE(331), + [aux_sym_command_repeat2] = STATE(749), + [sym__simple_heredoc_body] = ACTIONS(965), + [sym__heredoc_body_beginning] = ACTIONS(965), + [sym_file_descriptor] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_RPAREN] = ACTIONS(965), + [anon_sym_SEMI_SEMI] = ACTIONS(965), + [anon_sym_PIPE_AMP] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(965), + [anon_sym_EQ_TILDE] = ACTIONS(603), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(965), + [anon_sym_AMP_GT] = ACTIONS(967), + [anon_sym_AMP_GT_GT] = ACTIONS(965), + [anon_sym_LT_AMP] = ACTIONS(965), + [anon_sym_GT_AMP] = ACTIONS(965), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(965), + [anon_sym_LT_LT_LT] = ACTIONS(965), + [sym__special_characters] = ACTIONS(605), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(607), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), }, [336] = { - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_PLUS_EQ] = ACTIONS(1446), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [337] = { - [sym_variable_assignment] = STATE(765), - [sym_subscript] = STATE(336), - [sym_concatenation] = STATE(765), - [sym_string] = STATE(335), - [sym_simple_expansion] = STATE(335), - [sym_string_expansion] = STATE(335), - [sym_expansion] = STATE(335), - [sym_command_substitution] = STATE(335), - [sym_process_substitution] = STATE(335), - [aux_sym_declaration_command_repeat1] = STATE(765), - [sym_variable_name] = ACTIONS(601), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_SEMI_SEMI] = ACTIONS(729), - [anon_sym_PIPE_AMP] = ACTIONS(729), - [anon_sym_AMP_AMP] = ACTIONS(729), - [anon_sym_PIPE_PIPE] = ACTIONS(729), - [sym__special_characters] = ACTIONS(603), - [anon_sym_DQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR] = ACTIONS(207), - [sym_raw_string] = ACTIONS(605), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_BQUOTE] = ACTIONS(215), - [anon_sym_LT_LPAREN] = ACTIONS(217), - [anon_sym_GT_LPAREN] = ACTIONS(217), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1448), - [sym_word] = ACTIONS(609), - [anon_sym_LF] = ACTIONS(729), - [anon_sym_AMP] = ACTIONS(731), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_SEMI_SEMI] = ACTIONS(1435), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1435), }, [338] = { - [aux_sym_concatenation_repeat1] = STATE(766), - [sym__concat] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [sym__special_characters] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(739), - [sym_raw_string] = ACTIONS(737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [anon_sym_LT_LPAREN] = ACTIONS(737), - [anon_sym_GT_LPAREN] = ACTIONS(737), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(739), - [sym_word] = ACTIONS(739), - [anon_sym_LF] = ACTIONS(737), - [anon_sym_AMP] = ACTIONS(739), + [sym__simple_heredoc_body] = ACTIONS(1437), + [sym__heredoc_body_beginning] = ACTIONS(1437), + [sym_file_descriptor] = ACTIONS(1437), + [ts_builtin_sym_end] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_esac] = ACTIONS(1437), + [anon_sym_PIPE] = ACTIONS(1439), + [anon_sym_RPAREN] = ACTIONS(1437), + [anon_sym_SEMI_SEMI] = ACTIONS(1437), + [anon_sym_PIPE_AMP] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1437), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_GT_GT] = ACTIONS(1437), + [anon_sym_AMP_GT] = ACTIONS(1439), + [anon_sym_AMP_GT_GT] = ACTIONS(1437), + [anon_sym_LT_AMP] = ACTIONS(1437), + [anon_sym_GT_AMP] = ACTIONS(1437), + [anon_sym_LT_LT] = ACTIONS(1439), + [anon_sym_LT_LT_DASH] = ACTIONS(1437), + [anon_sym_LT_LT_LT] = ACTIONS(1437), + [anon_sym_BQUOTE] = ACTIONS(1437), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1437), + [anon_sym_AMP] = ACTIONS(1439), }, [339] = { - [aux_sym_concatenation_repeat1] = STATE(766), - [sym__concat] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(755), - [anon_sym_RPAREN] = ACTIONS(753), - [anon_sym_SEMI_SEMI] = ACTIONS(753), - [anon_sym_PIPE_AMP] = ACTIONS(753), - [anon_sym_AMP_AMP] = ACTIONS(753), - [anon_sym_PIPE_PIPE] = ACTIONS(753), - [sym__special_characters] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(755), - [sym_raw_string] = ACTIONS(753), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(753), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(753), - [anon_sym_LT_LPAREN] = ACTIONS(753), - [anon_sym_GT_LPAREN] = ACTIONS(753), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(755), - [sym_word] = ACTIONS(755), - [anon_sym_LF] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(755), + [sym__terminated_statement] = STATE(339), + [sym_redirected_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_c_style_for_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_case_statement] = STATE(89), + [sym_function_definition] = STATE(89), + [sym_compound_statement] = STATE(89), + [sym_subshell] = STATE(89), + [sym_pipeline] = STATE(89), + [sym_list] = STATE(89), + [sym_negated_command] = STATE(89), + [sym_test_command] = STATE(89), + [sym_declaration_command] = STATE(89), + [sym_unset_command] = STATE(89), + [sym_command] = STATE(89), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(90), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(339), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(973), + [sym_variable_name] = ACTIONS(976), + [anon_sym_for] = ACTIONS(979), + [anon_sym_LPAREN_LPAREN] = ACTIONS(982), + [anon_sym_while] = ACTIONS(985), + [anon_sym_if] = ACTIONS(988), + [anon_sym_case] = ACTIONS(991), + [anon_sym_function] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(997), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1009), + [anon_sym_declare] = ACTIONS(1012), + [anon_sym_typeset] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1012), + [anon_sym_readonly] = ACTIONS(1012), + [anon_sym_local] = ACTIONS(1012), + [anon_sym_unset] = ACTIONS(1015), + [anon_sym_unsetenv] = ACTIONS(1015), + [anon_sym_LT] = ACTIONS(1018), + [anon_sym_GT] = ACTIONS(1018), + [anon_sym_GT_GT] = ACTIONS(1021), + [anon_sym_AMP_GT] = ACTIONS(1018), + [anon_sym_AMP_GT_GT] = ACTIONS(1021), + [anon_sym_LT_AMP] = ACTIONS(1021), + [anon_sym_GT_AMP] = ACTIONS(1021), + [sym__special_characters] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1027), + [anon_sym_DOLLAR] = ACTIONS(1030), + [sym_raw_string] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), + [anon_sym_BQUOTE] = ACTIONS(1042), + [anon_sym_LT_LPAREN] = ACTIONS(1045), + [anon_sym_GT_LPAREN] = ACTIONS(1045), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1048), }, [340] = { - [sym_concatenation] = STATE(767), - [sym_string] = STATE(339), - [sym_simple_expansion] = STATE(339), - [sym_string_expansion] = STATE(339), - [sym_expansion] = STATE(339), - [sym_command_substitution] = STATE(339), - [sym_process_substitution] = STATE(339), - [aux_sym_unset_command_repeat1] = STATE(767), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_SEMI_SEMI] = ACTIONS(767), - [anon_sym_PIPE_AMP] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(767), - [anon_sym_PIPE_PIPE] = ACTIONS(767), - [sym__special_characters] = ACTIONS(611), - [anon_sym_DQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [sym_raw_string] = ACTIONS(613), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [anon_sym_LT_LPAREN] = ACTIONS(241), - [anon_sym_GT_LPAREN] = ACTIONS(241), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1450), - [sym_word] = ACTIONS(617), - [anon_sym_LF] = ACTIONS(767), - [anon_sym_AMP] = ACTIONS(769), + [sym_concatenation] = STATE(751), + [sym_string] = STATE(754), + [sym_array] = STATE(751), + [sym_simple_expansion] = STATE(754), + [sym_string_expansion] = STATE(754), + [sym_expansion] = STATE(754), + [sym_command_substitution] = STATE(754), + [sym_process_substitution] = STATE(754), + [sym__empty_value] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1445), + [sym__special_characters] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [sym_raw_string] = ACTIONS(1449), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(239), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1449), }, [341] = { - [aux_sym_concatenation_repeat1] = STATE(768), - [sym__simple_heredoc_body] = ACTIONS(807), - [sym__heredoc_body_beginning] = ACTIONS(807), - [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(809), - [anon_sym_AMP_GT_GT] = ACTIONS(807), - [anon_sym_LT_AMP] = ACTIONS(807), - [anon_sym_GT_AMP] = ACTIONS(807), - [anon_sym_LT_LT] = ACTIONS(809), - [anon_sym_LT_LT_DASH] = ACTIONS(807), - [anon_sym_LT_LT_LT] = ACTIONS(807), - [sym__special_characters] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_LT_LPAREN] = ACTIONS(807), - [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(809), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), + [anon_sym_RPAREN] = ACTIONS(1451), + [anon_sym_AMP_AMP] = ACTIONS(1217), + [anon_sym_PIPE_PIPE] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_EQ] = ACTIONS(1221), + [anon_sym_PLUS_EQ] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_DASH_EQ] = ACTIONS(1217), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1223), + [anon_sym_DASH_DASH] = ACTIONS(1223), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1217), }, [342] = { - [anon_sym_RPAREN] = ACTIONS(1452), - [sym_comment] = ACTIONS(55), + [anon_sym_AMP_AMP] = ACTIONS(653), + [anon_sym_PIPE_PIPE] = ACTIONS(653), + [anon_sym_RBRACK] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(655), + [anon_sym_EQ_EQ] = ACTIONS(655), + [anon_sym_EQ] = ACTIONS(657), + [anon_sym_PLUS_EQ] = ACTIONS(653), + [anon_sym_LT] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(657), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_PLUS] = ACTIONS(657), + [anon_sym_DASH] = ACTIONS(657), + [anon_sym_DASH_EQ] = ACTIONS(653), + [anon_sym_LT_EQ] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(659), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(653), }, [343] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_string] = STATE(756), + [sym_simple_expansion] = STATE(756), + [sym_string_expansion] = STATE(756), + [sym_expansion] = STATE(756), + [sym_command_substitution] = STATE(756), + [sym_process_substitution] = STATE(756), + [sym__special_characters] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(155), + [sym_raw_string] = ACTIONS(1453), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(163), + [anon_sym_LT_LPAREN] = ACTIONS(165), + [anon_sym_GT_LPAREN] = ACTIONS(165), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1453), }, [344] = { - [sym_for_statement] = STATE(521), - [sym_c_style_for_statement] = STATE(521), - [sym_while_statement] = STATE(521), - [sym_if_statement] = STATE(521), - [sym_case_statement] = STATE(521), - [sym_function_definition] = STATE(521), - [sym_subshell] = STATE(521), - [sym_pipeline] = STATE(521), - [sym_list] = STATE(521), - [sym_negated_command] = STATE(521), - [sym_test_command] = STATE(521), - [sym_declaration_command] = STATE(521), - [sym_unset_command] = STATE(521), - [sym_command] = STATE(521), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(522), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [aux_sym_concatenation_repeat1] = STATE(757), + [sym__concat] = ACTIONS(629), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_RBRACK] = ACTIONS(779), + [anon_sym_EQ_TILDE] = ACTIONS(779), + [anon_sym_EQ_EQ] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(781), + [anon_sym_PLUS_EQ] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_BANG_EQ] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_EQ] = ACTIONS(779), + [anon_sym_LT_EQ] = ACTIONS(779), + [anon_sym_GT_EQ] = ACTIONS(779), + [anon_sym_PLUS_PLUS] = ACTIONS(779), + [anon_sym_DASH_DASH] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(779), }, [345] = { - [ts_builtin_sym_end] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_esac] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_RPAREN] = ACTIONS(1456), - [anon_sym_SEMI_SEMI] = ACTIONS(1456), - [anon_sym_PIPE_AMP] = ACTIONS(1456), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE_PIPE] = ACTIONS(1456), - [anon_sym_BQUOTE] = ACTIONS(1456), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1458), + [sym__concat] = ACTIONS(783), + [anon_sym_AMP_AMP] = ACTIONS(783), + [anon_sym_PIPE_PIPE] = ACTIONS(783), + [anon_sym_RBRACK] = ACTIONS(783), + [anon_sym_EQ_TILDE] = ACTIONS(783), + [anon_sym_EQ_EQ] = ACTIONS(783), + [anon_sym_EQ] = ACTIONS(785), + [anon_sym_PLUS_EQ] = ACTIONS(783), + [anon_sym_LT] = ACTIONS(785), + [anon_sym_GT] = ACTIONS(785), + [anon_sym_BANG_EQ] = ACTIONS(783), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_DASH_EQ] = ACTIONS(783), + [anon_sym_LT_EQ] = ACTIONS(783), + [anon_sym_GT_EQ] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_DASH_DASH] = ACTIONS(783), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(783), }, [346] = { - [sym_for_statement] = STATE(771), - [sym_c_style_for_statement] = STATE(771), - [sym_while_statement] = STATE(771), - [sym_if_statement] = STATE(771), - [sym_case_statement] = STATE(771), - [sym_function_definition] = STATE(771), - [sym_subshell] = STATE(771), - [sym_pipeline] = STATE(771), - [sym_list] = STATE(771), - [sym_negated_command] = STATE(771), - [sym_test_command] = STATE(771), - [sym_declaration_command] = STATE(771), - [sym_unset_command] = STATE(771), - [sym_command] = STATE(771), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(772), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [347] = { - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1462), - [anon_sym_AMP_GT] = ACTIONS(1460), - [anon_sym_AMP_GT_GT] = ACTIONS(1462), - [anon_sym_LT_AMP] = ACTIONS(1462), - [anon_sym_GT_AMP] = ACTIONS(1462), - [sym_comment] = ACTIONS(55), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(1457), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [348] = { - [sym_concatenation] = STATE(530), - [sym_string] = STATE(775), - [sym_simple_expansion] = STATE(775), - [sym_string_expansion] = STATE(775), - [sym_expansion] = STATE(775), - [sym_command_substitution] = STATE(775), - [sym_process_substitution] = STATE(775), - [sym_regex] = ACTIONS(965), - [sym__special_characters] = ACTIONS(1464), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(1466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1466), + [sym__concat] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_RBRACK] = ACTIONS(817), + [anon_sym_EQ_TILDE] = ACTIONS(817), + [anon_sym_EQ_EQ] = ACTIONS(817), + [anon_sym_EQ] = ACTIONS(819), + [anon_sym_PLUS_EQ] = ACTIONS(817), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_BANG_EQ] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_DASH_EQ] = ACTIONS(817), + [anon_sym_LT_EQ] = ACTIONS(817), + [anon_sym_GT_EQ] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(817), + [anon_sym_DASH_DASH] = ACTIONS(817), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(817), }, [349] = { - [sym_concatenation] = STATE(535), - [sym_string] = STATE(777), - [sym_simple_expansion] = STATE(777), - [sym_string_expansion] = STATE(777), - [sym_expansion] = STATE(777), - [sym_command_substitution] = STATE(777), - [sym_process_substitution] = STATE(777), - [sym__special_characters] = ACTIONS(1468), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(1470), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1470), + [sym__concat] = ACTIONS(821), + [anon_sym_AMP_AMP] = ACTIONS(821), + [anon_sym_PIPE_PIPE] = ACTIONS(821), + [anon_sym_RBRACK] = ACTIONS(821), + [anon_sym_EQ_TILDE] = ACTIONS(821), + [anon_sym_EQ_EQ] = ACTIONS(821), + [anon_sym_EQ] = ACTIONS(823), + [anon_sym_PLUS_EQ] = ACTIONS(821), + [anon_sym_LT] = ACTIONS(823), + [anon_sym_GT] = ACTIONS(823), + [anon_sym_BANG_EQ] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_EQ] = ACTIONS(821), + [anon_sym_LT_EQ] = ACTIONS(821), + [anon_sym_GT_EQ] = ACTIONS(821), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(821), }, [350] = { - [sym_concatenation] = STATE(539), - [sym_string] = STATE(779), - [sym_simple_expansion] = STATE(779), - [sym_string_expansion] = STATE(779), - [sym_expansion] = STATE(779), - [sym_command_substitution] = STATE(779), - [sym_process_substitution] = STATE(779), - [sym__special_characters] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(1474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1474), + [sym__concat] = ACTIONS(825), + [anon_sym_AMP_AMP] = ACTIONS(825), + [anon_sym_PIPE_PIPE] = ACTIONS(825), + [anon_sym_RBRACK] = ACTIONS(825), + [anon_sym_EQ_TILDE] = ACTIONS(825), + [anon_sym_EQ_EQ] = ACTIONS(825), + [anon_sym_EQ] = ACTIONS(827), + [anon_sym_PLUS_EQ] = ACTIONS(825), + [anon_sym_LT] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(825), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_DASH_EQ] = ACTIONS(825), + [anon_sym_LT_EQ] = ACTIONS(825), + [anon_sym_GT_EQ] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(825), }, [351] = { - [aux_sym_concatenation_repeat1] = STATE(341), - [sym__simple_heredoc_body] = ACTIONS(981), - [sym__heredoc_body_beginning] = ACTIONS(981), - [sym_file_descriptor] = ACTIONS(981), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(983), - [anon_sym_RPAREN] = ACTIONS(981), - [anon_sym_SEMI_SEMI] = ACTIONS(981), - [anon_sym_PIPE_AMP] = ACTIONS(981), - [anon_sym_AMP_AMP] = ACTIONS(981), - [anon_sym_PIPE_PIPE] = ACTIONS(981), - [anon_sym_EQ_TILDE] = ACTIONS(983), - [anon_sym_EQ_EQ] = ACTIONS(983), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(983), - [anon_sym_GT_GT] = ACTIONS(981), - [anon_sym_AMP_GT] = ACTIONS(983), - [anon_sym_AMP_GT_GT] = ACTIONS(981), - [anon_sym_LT_AMP] = ACTIONS(981), - [anon_sym_GT_AMP] = ACTIONS(981), - [anon_sym_LT_LT] = ACTIONS(983), - [anon_sym_LT_LT_DASH] = ACTIONS(981), - [anon_sym_LT_LT_LT] = ACTIONS(981), - [sym__special_characters] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(983), - [sym_raw_string] = ACTIONS(981), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(981), - [anon_sym_BQUOTE] = ACTIONS(981), - [anon_sym_LT_LPAREN] = ACTIONS(981), - [anon_sym_GT_LPAREN] = ACTIONS(981), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(983), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_AMP] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(1459), + [sym_comment] = ACTIONS(57), }, [352] = { - [aux_sym_concatenation_repeat1] = STATE(341), - [sym__simple_heredoc_body] = ACTIONS(985), - [sym__heredoc_body_beginning] = ACTIONS(985), - [sym_file_descriptor] = ACTIONS(985), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_PIPE] = ACTIONS(987), - [anon_sym_RPAREN] = ACTIONS(985), - [anon_sym_SEMI_SEMI] = ACTIONS(985), - [anon_sym_PIPE_AMP] = ACTIONS(985), - [anon_sym_AMP_AMP] = ACTIONS(985), - [anon_sym_PIPE_PIPE] = ACTIONS(985), - [anon_sym_EQ_TILDE] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_LT] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_AMP_GT] = ACTIONS(987), - [anon_sym_AMP_GT_GT] = ACTIONS(985), - [anon_sym_LT_AMP] = ACTIONS(985), - [anon_sym_GT_AMP] = ACTIONS(985), - [anon_sym_LT_LT] = ACTIONS(987), - [anon_sym_LT_LT_DASH] = ACTIONS(985), - [anon_sym_LT_LT_LT] = ACTIONS(985), - [sym__special_characters] = ACTIONS(985), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(987), - [sym_raw_string] = ACTIONS(985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(985), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(985), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LT_LPAREN] = ACTIONS(985), - [anon_sym_GT_LPAREN] = ACTIONS(985), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(987), + [sym_subscript] = STATE(763), + [sym_variable_name] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1463), + [anon_sym_DOLLAR] = ACTIONS(1463), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_AT] = ACTIONS(1467), + [anon_sym_QMARK] = ACTIONS(1467), + [anon_sym_0] = ACTIONS(1465), + [anon_sym__] = ACTIONS(1465), }, [353] = { - [sym_file_redirect] = STATE(780), - [sym_heredoc_redirect] = STATE(780), - [sym_heredoc_body] = STATE(540), - [sym_herestring_redirect] = STATE(780), - [aux_sym_while_statement_repeat1] = STATE(780), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(633), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_RPAREN] = ACTIONS(989), - [anon_sym_SEMI_SEMI] = ACTIONS(989), - [anon_sym_PIPE_AMP] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(989), - [anon_sym_PIPE_PIPE] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(637), - [anon_sym_GT] = ACTIONS(637), - [anon_sym_GT_GT] = ACTIONS(639), - [anon_sym_AMP_GT] = ACTIONS(637), - [anon_sym_AMP_GT_GT] = ACTIONS(639), - [anon_sym_LT_AMP] = ACTIONS(639), - [anon_sym_GT_AMP] = ACTIONS(639), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(641), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [sym_concatenation] = STATE(766), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(766), + [anon_sym_RBRACE] = ACTIONS(1469), + [anon_sym_EQ] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(1475), + [anon_sym_COLON] = ACTIONS(1471), + [anon_sym_COLON_QMARK] = ACTIONS(1471), + [anon_sym_COLON_DASH] = ACTIONS(1471), + [anon_sym_PERCENT] = ACTIONS(1471), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [354] = { - [sym_file_redirect] = STATE(781), - [sym_heredoc_redirect] = STATE(781), - [sym_heredoc_body] = STATE(540), - [sym_herestring_redirect] = STATE(781), - [sym_concatenation] = STATE(782), - [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), - [aux_sym_while_statement_repeat1] = STATE(781), - [aux_sym_command_repeat2] = STATE(782), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(633), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_RPAREN] = ACTIONS(989), - [anon_sym_SEMI_SEMI] = ACTIONS(989), - [anon_sym_PIPE_AMP] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(989), - [anon_sym_PIPE_PIPE] = ACTIONS(989), - [anon_sym_EQ_TILDE] = ACTIONS(635), - [anon_sym_EQ_EQ] = ACTIONS(635), - [anon_sym_LT] = ACTIONS(637), - [anon_sym_GT] = ACTIONS(637), - [anon_sym_GT_GT] = ACTIONS(639), - [anon_sym_AMP_GT] = ACTIONS(637), - [anon_sym_AMP_GT_GT] = ACTIONS(639), - [anon_sym_LT_AMP] = ACTIONS(639), - [anon_sym_GT_AMP] = ACTIONS(639), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(641), - [sym__special_characters] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(647), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [sym_concatenation] = STATE(769), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(769), + [anon_sym_RBRACE] = ACTIONS(1477), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(1483), + [anon_sym_COLON] = ACTIONS(1479), + [anon_sym_COLON_QMARK] = ACTIONS(1479), + [anon_sym_COLON_DASH] = ACTIONS(1479), + [anon_sym_PERCENT] = ACTIONS(1479), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [355] = { - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1454), - [anon_sym_SEMI_SEMI] = ACTIONS(1478), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1476), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(772), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1487), + [anon_sym_SEMI_SEMI] = ACTIONS(1489), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1489), + [anon_sym_AMP] = ACTIONS(1485), }, [356] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1454), - [anon_sym_SEMI_SEMI] = ACTIONS(1478), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1476), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(772), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1487), + [anon_sym_SEMI_SEMI] = ACTIONS(1489), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1489), + [anon_sym_AMP] = ACTIONS(1485), }, [357] = { - [sym_file_redirect] = STATE(781), - [sym_heredoc_redirect] = STATE(781), - [sym_heredoc_body] = STATE(540), - [sym_herestring_redirect] = STATE(781), - [sym_concatenation] = STATE(784), - [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), - [aux_sym_while_statement_repeat1] = STATE(781), - [aux_sym_command_repeat2] = STATE(784), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(633), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_RPAREN] = ACTIONS(989), - [anon_sym_SEMI_SEMI] = ACTIONS(989), - [anon_sym_PIPE_AMP] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(989), - [anon_sym_PIPE_PIPE] = ACTIONS(989), - [anon_sym_EQ_TILDE] = ACTIONS(635), - [anon_sym_EQ_EQ] = ACTIONS(635), - [anon_sym_LT] = ACTIONS(637), - [anon_sym_GT] = ACTIONS(637), - [anon_sym_GT_GT] = ACTIONS(639), - [anon_sym_AMP_GT] = ACTIONS(637), - [anon_sym_AMP_GT_GT] = ACTIONS(639), - [anon_sym_LT_AMP] = ACTIONS(639), - [anon_sym_GT_AMP] = ACTIONS(639), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(641), - [sym__special_characters] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(647), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(773), + [sym_for_statement] = STATE(773), + [sym_c_style_for_statement] = STATE(773), + [sym_while_statement] = STATE(773), + [sym_if_statement] = STATE(773), + [sym_case_statement] = STATE(773), + [sym_function_definition] = STATE(773), + [sym_compound_statement] = STATE(773), + [sym_subshell] = STATE(773), + [sym_pipeline] = STATE(773), + [sym_list] = STATE(773), + [sym_negated_command] = STATE(773), + [sym_test_command] = STATE(773), + [sym_declaration_command] = STATE(773), + [sym_unset_command] = STATE(773), + [sym_command] = STATE(773), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(774), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [358] = { - [sym_concatenation] = STATE(785), - [sym_string] = STATE(788), - [sym_array] = STATE(785), - [sym_simple_expansion] = STATE(788), - [sym_string_expansion] = STATE(788), - [sym_expansion] = STATE(788), - [sym_command_substitution] = STATE(788), - [sym_process_substitution] = STATE(788), - [sym__empty_value] = ACTIONS(1480), - [anon_sym_LPAREN] = ACTIONS(1482), - [sym__special_characters] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR] = ACTIONS(251), - [sym_raw_string] = ACTIONS(1486), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(255), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), - [anon_sym_BQUOTE] = ACTIONS(259), - [anon_sym_LT_LPAREN] = ACTIONS(261), - [anon_sym_GT_LPAREN] = ACTIONS(261), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1486), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(776), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(1493), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(1487), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1491), }, [359] = { - [anon_sym_RPAREN] = ACTIONS(1488), - [anon_sym_AMP_AMP] = ACTIONS(1240), - [anon_sym_PIPE_PIPE] = ACTIONS(1240), - [anon_sym_EQ_TILDE] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1244), - [anon_sym_PLUS_EQ] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1244), - [anon_sym_GT] = ACTIONS(1244), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_DASH_EQ] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1240), - [anon_sym_GT_EQ] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1240), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(776), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(1493), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(1487), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1491), }, [360] = { - [anon_sym_AMP_AMP] = ACTIONS(681), - [anon_sym_PIPE_PIPE] = ACTIONS(681), - [anon_sym_RBRACK] = ACTIONS(1248), - [anon_sym_EQ_TILDE] = ACTIONS(683), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(685), - [anon_sym_PLUS_EQ] = ACTIONS(681), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(681), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(681), - [anon_sym_LT_EQ] = ACTIONS(681), - [anon_sym_GT_EQ] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(681), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(777), + [sym_for_statement] = STATE(777), + [sym_c_style_for_statement] = STATE(777), + [sym_while_statement] = STATE(777), + [sym_if_statement] = STATE(777), + [sym_case_statement] = STATE(777), + [sym_function_definition] = STATE(777), + [sym_compound_statement] = STATE(777), + [sym_subshell] = STATE(777), + [sym_pipeline] = STATE(777), + [sym_list] = STATE(777), + [sym_negated_command] = STATE(777), + [sym_test_command] = STATE(777), + [sym_declaration_command] = STATE(777), + [sym_unset_command] = STATE(777), + [sym_command] = STATE(777), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(778), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [361] = { + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(781), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1497), + [anon_sym_SEMI_SEMI] = ACTIONS(1499), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1495), + }, + [362] = { + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(781), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1497), + [anon_sym_SEMI_SEMI] = ACTIONS(1499), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1495), + }, + [363] = { + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(782), + [sym_for_statement] = STATE(782), + [sym_c_style_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_compound_statement] = STATE(782), + [sym_subshell] = STATE(782), + [sym_pipeline] = STATE(782), + [sym_list] = STATE(782), + [sym_negated_command] = STATE(782), + [sym_test_command] = STATE(782), + [sym_declaration_command] = STATE(782), + [sym_unset_command] = STATE(782), + [sym_command] = STATE(782), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(783), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), + }, + [364] = { + [sym__expression] = STATE(784), + [sym_binary_expression] = STATE(784), + [sym_unary_expression] = STATE(784), + [sym_postfix_expression] = STATE(784), + [sym_parenthesized_expression] = STATE(784), + [sym_concatenation] = STATE(784), + [sym_string] = STATE(100), + [sym_simple_expansion] = STATE(100), + [sym_string_expansion] = STATE(100), + [sym_expansion] = STATE(100), + [sym_command_substitution] = STATE(100), + [sym_process_substitution] = STATE(100), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(149), + [sym__special_characters] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(155), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(163), + [anon_sym_LT_LPAREN] = ACTIONS(165), + [anon_sym_GT_LPAREN] = ACTIONS(165), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(167), + [sym_test_operator] = ACTIONS(169), + }, + [365] = { + [sym__expression] = STATE(784), + [sym_binary_expression] = STATE(784), + [sym_unary_expression] = STATE(784), + [sym_postfix_expression] = STATE(784), + [sym_parenthesized_expression] = STATE(784), + [sym_concatenation] = STATE(784), + [sym_string] = STATE(100), + [sym_simple_expansion] = STATE(100), + [sym_string_expansion] = STATE(100), + [sym_expansion] = STATE(100), + [sym_command_substitution] = STATE(100), + [sym_process_substitution] = STATE(100), + [sym_regex] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(149), + [sym__special_characters] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(155), + [sym_raw_string] = ACTIONS(157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(163), + [anon_sym_LT_LPAREN] = ACTIONS(165), + [anon_sym_GT_LPAREN] = ACTIONS(165), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(167), + [sym_test_operator] = ACTIONS(169), + }, + [366] = { + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [anon_sym_RBRACK] = ACTIONS(1281), + [anon_sym_EQ_TILDE] = ACTIONS(1281), + [anon_sym_EQ_EQ] = ACTIONS(1281), + [anon_sym_EQ] = ACTIONS(1283), + [anon_sym_PLUS_EQ] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_BANG_EQ] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_DASH_EQ] = ACTIONS(1281), + [anon_sym_LT_EQ] = ACTIONS(1281), + [anon_sym_GT_EQ] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1281), + }, + [367] = { + [anon_sym_AMP_AMP] = ACTIONS(661), + [anon_sym_PIPE_PIPE] = ACTIONS(661), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(663), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(665), + [anon_sym_PLUS_EQ] = ACTIONS(661), + [anon_sym_LT] = ACTIONS(665), + [anon_sym_GT] = ACTIONS(665), + [anon_sym_BANG_EQ] = ACTIONS(661), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_DASH] = ACTIONS(665), + [anon_sym_DASH_EQ] = ACTIONS(661), + [anon_sym_LT_EQ] = ACTIONS(661), + [anon_sym_GT_EQ] = ACTIONS(661), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(661), + }, + [368] = { + [aux_sym_concatenation_repeat1] = STATE(786), + [sym__concat] = ACTIONS(431), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_RBRACK_RBRACK] = ACTIONS(779), + [anon_sym_EQ_TILDE] = ACTIONS(779), + [anon_sym_EQ_EQ] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(781), + [anon_sym_PLUS_EQ] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_BANG_EQ] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_EQ] = ACTIONS(779), + [anon_sym_LT_EQ] = ACTIONS(779), + [anon_sym_GT_EQ] = ACTIONS(779), + [anon_sym_PLUS_PLUS] = ACTIONS(779), + [anon_sym_DASH_DASH] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(779), + }, + [369] = { + [sym__expression] = STATE(658), + [sym_binary_expression] = STATE(658), + [sym_unary_expression] = STATE(658), + [sym_postfix_expression] = STATE(658), + [sym_parenthesized_expression] = STATE(658), + [sym_concatenation] = STATE(658), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_string_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [anon_sym_LPAREN] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(171), + [sym__special_characters] = ACTIONS(173), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(81), + [sym_raw_string] = ACTIONS(175), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(85), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(89), + [anon_sym_LT_LPAREN] = ACTIONS(91), + [anon_sym_GT_LPAREN] = ACTIONS(91), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(177), + [sym_test_operator] = ACTIONS(179), + }, + [370] = { + [sym__expression] = STATE(658), + [sym_binary_expression] = STATE(658), + [sym_unary_expression] = STATE(658), + [sym_postfix_expression] = STATE(658), + [sym_parenthesized_expression] = STATE(658), + [sym_concatenation] = STATE(658), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_string_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [sym_regex] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(171), + [sym__special_characters] = ACTIONS(173), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(81), + [sym_raw_string] = ACTIONS(175), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(85), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(89), + [anon_sym_LT_LPAREN] = ACTIONS(91), + [anon_sym_GT_LPAREN] = ACTIONS(91), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(177), + [sym_test_operator] = ACTIONS(179), + }, + [371] = { + [sym_concatenation] = STATE(787), [sym_string] = STATE(790), + [sym_array] = STATE(787), [sym_simple_expansion] = STATE(790), [sym_string_expansion] = STATE(790), [sym_expansion] = STATE(790), [sym_command_substitution] = STATE(790), [sym_process_substitution] = STATE(790), - [sym__special_characters] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_DOLLAR] = ACTIONS(171), - [sym_raw_string] = ACTIONS(1490), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), - [anon_sym_BQUOTE] = ACTIONS(179), - [anon_sym_LT_LPAREN] = ACTIONS(181), - [anon_sym_GT_LPAREN] = ACTIONS(181), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1490), - }, - [362] = { - [aux_sym_concatenation_repeat1] = STATE(791), - [sym__concat] = ACTIONS(657), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_RBRACK] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(809), - [anon_sym_DASH_EQ] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(807), - }, - [363] = { - [sym__concat] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_RBRACK] = ACTIONS(811), - [anon_sym_EQ_TILDE] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(813), - [anon_sym_PLUS_EQ] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_DASH_EQ] = ACTIONS(811), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_PLUS_PLUS] = ACTIONS(811), - [anon_sym_DASH_DASH] = ACTIONS(811), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(811), - }, - [364] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(1492), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), - }, - [365] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(473), - [anon_sym_DQUOTE] = ACTIONS(1492), - [anon_sym_DOLLAR] = ACTIONS(1494), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), - }, - [366] = { - [sym__concat] = ACTIONS(845), - [anon_sym_AMP_AMP] = ACTIONS(845), - [anon_sym_PIPE_PIPE] = ACTIONS(845), - [anon_sym_RBRACK] = ACTIONS(845), - [anon_sym_EQ_TILDE] = ACTIONS(845), - [anon_sym_EQ_EQ] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(847), - [anon_sym_PLUS_EQ] = ACTIONS(845), - [anon_sym_LT] = ACTIONS(847), - [anon_sym_GT] = ACTIONS(847), - [anon_sym_BANG_EQ] = ACTIONS(845), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_DASH_EQ] = ACTIONS(845), - [anon_sym_LT_EQ] = ACTIONS(845), - [anon_sym_GT_EQ] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(845), - }, - [367] = { - [sym__concat] = ACTIONS(849), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [anon_sym_RBRACK] = ACTIONS(849), - [anon_sym_EQ_TILDE] = ACTIONS(849), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_EQ] = ACTIONS(851), - [anon_sym_PLUS_EQ] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_DASH_EQ] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(849), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(849), - }, - [368] = { - [sym__concat] = ACTIONS(853), - [anon_sym_AMP_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(853), - [anon_sym_RBRACK] = ACTIONS(853), - [anon_sym_EQ_TILDE] = ACTIONS(853), - [anon_sym_EQ_EQ] = ACTIONS(853), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_PLUS_EQ] = ACTIONS(853), - [anon_sym_LT] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_EQ] = ACTIONS(853), - [anon_sym_LT_EQ] = ACTIONS(853), - [anon_sym_GT_EQ] = ACTIONS(853), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(853), - }, - [369] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(1496), - [sym_comment] = ACTIONS(55), - }, - [370] = { - [sym_subscript] = STATE(797), - [sym_variable_name] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_DOLLAR] = ACTIONS(1500), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1504), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_0] = ACTIONS(1502), - [anon_sym__] = ACTIONS(1502), - }, - [371] = { - [sym_concatenation] = STATE(800), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(800), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1510), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(1512), - [anon_sym_COLON] = ACTIONS(1508), - [anon_sym_COLON_QMARK] = ACTIONS(1508), - [anon_sym_COLON_DASH] = ACTIONS(1508), - [anon_sym_PERCENT] = ACTIONS(1508), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__empty_value] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1505), + [sym__special_characters] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(1509), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(199), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1509), }, [372] = { - [sym_concatenation] = STATE(803), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(803), - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_EQ] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1518), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(1520), - [anon_sym_COLON] = ACTIONS(1516), - [anon_sym_COLON_QMARK] = ACTIONS(1516), - [anon_sym_COLON_DASH] = ACTIONS(1516), - [anon_sym_PERCENT] = ACTIONS(1516), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_string] = STATE(791), + [sym_simple_expansion] = STATE(791), + [sym_string_expansion] = STATE(791), + [sym_expansion] = STATE(791), + [sym_command_substitution] = STATE(791), + [sym_process_substitution] = STATE(791), + [sym__special_characters] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(1511), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(199), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1511), }, [373] = { - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1524), - [anon_sym_SEMI_SEMI] = ACTIONS(1526), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1522), + [aux_sym_concatenation_repeat1] = STATE(792), + [sym__simple_heredoc_body] = ACTIONS(779), + [sym__heredoc_body_beginning] = ACTIONS(779), + [sym_file_descriptor] = ACTIONS(779), + [sym__concat] = ACTIONS(671), + [sym_variable_name] = ACTIONS(779), + [ts_builtin_sym_end] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [anon_sym_PIPE_AMP] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_AMP_GT] = ACTIONS(781), + [anon_sym_AMP_GT_GT] = ACTIONS(779), + [anon_sym_LT_AMP] = ACTIONS(779), + [anon_sym_GT_AMP] = ACTIONS(779), + [anon_sym_LT_LT] = ACTIONS(781), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_LT] = ACTIONS(779), + [sym__special_characters] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(781), + [sym_raw_string] = ACTIONS(779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(779), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), + [sym_word] = ACTIONS(781), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(781), }, [374] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1524), - [anon_sym_SEMI_SEMI] = ACTIONS(1526), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1522), + [sym__simple_heredoc_body] = ACTIONS(783), + [sym__heredoc_body_beginning] = ACTIONS(783), + [sym_file_descriptor] = ACTIONS(783), + [sym__concat] = ACTIONS(783), + [sym_variable_name] = ACTIONS(783), + [ts_builtin_sym_end] = ACTIONS(783), + [anon_sym_SEMI] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_RPAREN] = ACTIONS(783), + [anon_sym_SEMI_SEMI] = ACTIONS(783), + [anon_sym_PIPE_AMP] = ACTIONS(783), + [anon_sym_AMP_AMP] = ACTIONS(783), + [anon_sym_PIPE_PIPE] = ACTIONS(783), + [anon_sym_LT] = ACTIONS(785), + [anon_sym_GT] = ACTIONS(785), + [anon_sym_GT_GT] = ACTIONS(783), + [anon_sym_AMP_GT] = ACTIONS(785), + [anon_sym_AMP_GT_GT] = ACTIONS(783), + [anon_sym_LT_AMP] = ACTIONS(783), + [anon_sym_GT_AMP] = ACTIONS(783), + [anon_sym_LT_LT] = ACTIONS(785), + [anon_sym_LT_LT_DASH] = ACTIONS(783), + [anon_sym_LT_LT_LT] = ACTIONS(783), + [sym__special_characters] = ACTIONS(783), + [anon_sym_DQUOTE] = ACTIONS(783), + [anon_sym_DOLLAR] = ACTIONS(785), + [sym_raw_string] = ACTIONS(783), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(783), + [anon_sym_BQUOTE] = ACTIONS(783), + [anon_sym_LT_LPAREN] = ACTIONS(783), + [anon_sym_GT_LPAREN] = ACTIONS(783), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(785), + [sym_word] = ACTIONS(785), + [anon_sym_LF] = ACTIONS(783), + [anon_sym_AMP] = ACTIONS(785), }, [375] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(806), - [sym_c_style_for_statement] = STATE(806), - [sym_while_statement] = STATE(806), - [sym_if_statement] = STATE(806), - [sym_case_statement] = STATE(806), - [sym_function_definition] = STATE(806), - [sym_subshell] = STATE(806), - [sym_pipeline] = STATE(806), - [sym_list] = STATE(806), - [sym_negated_command] = STATE(806), - [sym_test_command] = STATE(806), - [sym_declaration_command] = STATE(806), - [sym_unset_command] = STATE(806), - [sym_command] = STATE(806), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(807), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [376] = { - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(1530), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(1524), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1528), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(455), + [anon_sym_DQUOTE] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(1515), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [377] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(1530), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(1524), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1528), + [sym__simple_heredoc_body] = ACTIONS(817), + [sym__heredoc_body_beginning] = ACTIONS(817), + [sym_file_descriptor] = ACTIONS(817), + [sym__concat] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [ts_builtin_sym_end] = ACTIONS(817), + [anon_sym_SEMI] = ACTIONS(819), + [anon_sym_PIPE] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(817), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_PIPE_AMP] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [anon_sym_LT_LT] = ACTIONS(819), + [anon_sym_LT_LT_DASH] = ACTIONS(817), + [anon_sym_LT_LT_LT] = ACTIONS(817), + [sym__special_characters] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(819), + [sym_word] = ACTIONS(819), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(819), }, [378] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(809), - [sym_c_style_for_statement] = STATE(809), - [sym_while_statement] = STATE(809), - [sym_if_statement] = STATE(809), - [sym_case_statement] = STATE(809), - [sym_function_definition] = STATE(809), - [sym_subshell] = STATE(809), - [sym_pipeline] = STATE(809), - [sym_list] = STATE(809), - [sym_negated_command] = STATE(809), - [sym_test_command] = STATE(809), - [sym_declaration_command] = STATE(809), - [sym_unset_command] = STATE(809), - [sym_command] = STATE(809), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(810), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym__simple_heredoc_body] = ACTIONS(821), + [sym__heredoc_body_beginning] = ACTIONS(821), + [sym_file_descriptor] = ACTIONS(821), + [sym__concat] = ACTIONS(821), + [sym_variable_name] = ACTIONS(821), + [ts_builtin_sym_end] = ACTIONS(821), + [anon_sym_SEMI] = ACTIONS(823), + [anon_sym_PIPE] = ACTIONS(823), + [anon_sym_RPAREN] = ACTIONS(821), + [anon_sym_SEMI_SEMI] = ACTIONS(821), + [anon_sym_PIPE_AMP] = ACTIONS(821), + [anon_sym_AMP_AMP] = ACTIONS(821), + [anon_sym_PIPE_PIPE] = ACTIONS(821), + [anon_sym_LT] = ACTIONS(823), + [anon_sym_GT] = ACTIONS(823), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_AMP_GT] = ACTIONS(823), + [anon_sym_AMP_GT_GT] = ACTIONS(821), + [anon_sym_LT_AMP] = ACTIONS(821), + [anon_sym_GT_AMP] = ACTIONS(821), + [anon_sym_LT_LT] = ACTIONS(823), + [anon_sym_LT_LT_DASH] = ACTIONS(821), + [anon_sym_LT_LT_LT] = ACTIONS(821), + [sym__special_characters] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(823), + [sym_raw_string] = ACTIONS(821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(821), + [anon_sym_BQUOTE] = ACTIONS(821), + [anon_sym_LT_LPAREN] = ACTIONS(821), + [anon_sym_GT_LPAREN] = ACTIONS(821), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [sym_word] = ACTIONS(823), + [anon_sym_LF] = ACTIONS(821), + [anon_sym_AMP] = ACTIONS(823), }, [379] = { - [anon_sym_SEMI] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1534), - [anon_sym_SEMI_SEMI] = ACTIONS(1536), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1536), - [anon_sym_AMP] = ACTIONS(1532), + [sym__simple_heredoc_body] = ACTIONS(825), + [sym__heredoc_body_beginning] = ACTIONS(825), + [sym_file_descriptor] = ACTIONS(825), + [sym__concat] = ACTIONS(825), + [sym_variable_name] = ACTIONS(825), + [ts_builtin_sym_end] = ACTIONS(825), + [anon_sym_SEMI] = ACTIONS(827), + [anon_sym_PIPE] = ACTIONS(827), + [anon_sym_RPAREN] = ACTIONS(825), + [anon_sym_SEMI_SEMI] = ACTIONS(825), + [anon_sym_PIPE_AMP] = ACTIONS(825), + [anon_sym_AMP_AMP] = ACTIONS(825), + [anon_sym_PIPE_PIPE] = ACTIONS(825), + [anon_sym_LT] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_GT_GT] = ACTIONS(825), + [anon_sym_AMP_GT] = ACTIONS(827), + [anon_sym_AMP_GT_GT] = ACTIONS(825), + [anon_sym_LT_AMP] = ACTIONS(825), + [anon_sym_GT_AMP] = ACTIONS(825), + [anon_sym_LT_LT] = ACTIONS(827), + [anon_sym_LT_LT_DASH] = ACTIONS(825), + [anon_sym_LT_LT_LT] = ACTIONS(825), + [sym__special_characters] = ACTIONS(825), + [anon_sym_DQUOTE] = ACTIONS(825), + [anon_sym_DOLLAR] = ACTIONS(827), + [sym_raw_string] = ACTIONS(825), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(825), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_LT_LPAREN] = ACTIONS(825), + [anon_sym_GT_LPAREN] = ACTIONS(825), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(827), + [sym_word] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(825), + [anon_sym_AMP] = ACTIONS(827), }, [380] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1534), - [anon_sym_SEMI_SEMI] = ACTIONS(1536), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1536), - [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(1517), + [sym_comment] = ACTIONS(57), }, [381] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(813), - [sym_c_style_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_negated_command] = STATE(813), - [sym_test_command] = STATE(813), - [sym_declaration_command] = STATE(813), - [sym_unset_command] = STATE(813), - [sym_command] = STATE(813), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(814), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_subscript] = STATE(798), + [sym_variable_name] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_DOLLAR] = ACTIONS(1521), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_AT] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1525), + [anon_sym_0] = ACTIONS(1523), + [anon_sym__] = ACTIONS(1523), }, [382] = { - [sym__expression] = STATE(815), - [sym_binary_expression] = STATE(815), - [sym_unary_expression] = STATE(815), - [sym_postfix_expression] = STATE(815), - [sym_parenthesized_expression] = STATE(815), - [sym_concatenation] = STATE(815), - [sym_string] = STATE(105), - [sym_simple_expansion] = STATE(105), - [sym_string_expansion] = STATE(105), - [sym_expansion] = STATE(105), - [sym_command_substitution] = STATE(105), - [sym_process_substitution] = STATE(105), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [sym__special_characters] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_DOLLAR] = ACTIONS(171), - [sym_raw_string] = ACTIONS(173), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), - [anon_sym_BQUOTE] = ACTIONS(179), - [anon_sym_LT_LPAREN] = ACTIONS(181), - [anon_sym_GT_LPAREN] = ACTIONS(181), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(183), - [sym_test_operator] = ACTIONS(185), + [sym_concatenation] = STATE(801), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(801), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_EQ] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1531), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_COLON] = ACTIONS(1529), + [anon_sym_COLON_QMARK] = ACTIONS(1529), + [anon_sym_COLON_DASH] = ACTIONS(1529), + [anon_sym_PERCENT] = ACTIONS(1529), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [383] = { - [sym__expression] = STATE(815), - [sym_binary_expression] = STATE(815), - [sym_unary_expression] = STATE(815), - [sym_postfix_expression] = STATE(815), - [sym_parenthesized_expression] = STATE(815), - [sym_concatenation] = STATE(815), - [sym_string] = STATE(105), - [sym_simple_expansion] = STATE(105), - [sym_string_expansion] = STATE(105), - [sym_expansion] = STATE(105), - [sym_command_substitution] = STATE(105), - [sym_process_substitution] = STATE(105), - [sym_regex] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [sym__special_characters] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_DOLLAR] = ACTIONS(171), - [sym_raw_string] = ACTIONS(173), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), - [anon_sym_BQUOTE] = ACTIONS(179), - [anon_sym_LT_LPAREN] = ACTIONS(181), - [anon_sym_GT_LPAREN] = ACTIONS(181), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(183), - [sym_test_operator] = ACTIONS(185), + [sym_concatenation] = STATE(804), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(804), + [anon_sym_RBRACE] = ACTIONS(1535), + [anon_sym_EQ] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1539), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(1541), + [anon_sym_COLON] = ACTIONS(1537), + [anon_sym_COLON_QMARK] = ACTIONS(1537), + [anon_sym_COLON_DASH] = ACTIONS(1537), + [anon_sym_PERCENT] = ACTIONS(1537), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [384] = { - [anon_sym_AMP_AMP] = ACTIONS(1316), - [anon_sym_PIPE_PIPE] = ACTIONS(1316), - [anon_sym_RBRACK] = ACTIONS(1316), - [anon_sym_EQ_TILDE] = ACTIONS(1316), - [anon_sym_EQ_EQ] = ACTIONS(1316), - [anon_sym_EQ] = ACTIONS(1318), - [anon_sym_PLUS_EQ] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_DASH_EQ] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_EQ] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1316), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(807), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1545), + [anon_sym_SEMI_SEMI] = ACTIONS(1547), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1543), }, [385] = { - [anon_sym_AMP_AMP] = ACTIONS(689), - [anon_sym_PIPE_PIPE] = ACTIONS(689), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1248), - [anon_sym_EQ_TILDE] = ACTIONS(691), - [anon_sym_EQ_EQ] = ACTIONS(691), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_PLUS_EQ] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(693), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG_EQ] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_DASH_EQ] = ACTIONS(689), - [anon_sym_LT_EQ] = ACTIONS(689), - [anon_sym_GT_EQ] = ACTIONS(689), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(689), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(807), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1545), + [anon_sym_SEMI_SEMI] = ACTIONS(1547), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1543), }, [386] = { - [aux_sym_concatenation_repeat1] = STATE(817), - [sym__concat] = ACTIONS(459), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_RBRACK_RBRACK] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(809), - [anon_sym_DASH_EQ] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(807), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(808), + [sym_for_statement] = STATE(808), + [sym_c_style_for_statement] = STATE(808), + [sym_while_statement] = STATE(808), + [sym_if_statement] = STATE(808), + [sym_case_statement] = STATE(808), + [sym_function_definition] = STATE(808), + [sym_compound_statement] = STATE(808), + [sym_subshell] = STATE(808), + [sym_pipeline] = STATE(808), + [sym_list] = STATE(808), + [sym_negated_command] = STATE(808), + [sym_test_command] = STATE(808), + [sym_declaration_command] = STATE(808), + [sym_unset_command] = STATE(808), + [sym_command] = STATE(808), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(809), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [387] = { - [sym__expression] = STATE(682), - [sym_binary_expression] = STATE(682), - [sym_unary_expression] = STATE(682), - [sym_postfix_expression] = STATE(682), - [sym_parenthesized_expression] = STATE(682), - [sym_concatenation] = STATE(682), - [sym_string] = STATE(113), - [sym_simple_expansion] = STATE(113), - [sym_string_expansion] = STATE(113), - [sym_expansion] = STATE(113), - [sym_command_substitution] = STATE(113), - [sym_process_substitution] = STATE(113), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(187), - [sym__special_characters] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(79), - [sym_raw_string] = ACTIONS(191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), - [anon_sym_BQUOTE] = ACTIONS(87), - [anon_sym_LT_LPAREN] = ACTIONS(89), - [anon_sym_GT_LPAREN] = ACTIONS(89), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(193), - [sym_test_operator] = ACTIONS(195), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(811), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(1551), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(1545), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1549), }, [388] = { - [sym__expression] = STATE(682), - [sym_binary_expression] = STATE(682), - [sym_unary_expression] = STATE(682), - [sym_postfix_expression] = STATE(682), - [sym_parenthesized_expression] = STATE(682), - [sym_concatenation] = STATE(682), - [sym_string] = STATE(113), - [sym_simple_expansion] = STATE(113), - [sym_string_expansion] = STATE(113), - [sym_expansion] = STATE(113), - [sym_command_substitution] = STATE(113), - [sym_process_substitution] = STATE(113), - [sym_regex] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(187), - [sym__special_characters] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(79), - [sym_raw_string] = ACTIONS(191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), - [anon_sym_BQUOTE] = ACTIONS(87), - [anon_sym_LT_LPAREN] = ACTIONS(89), - [anon_sym_GT_LPAREN] = ACTIONS(89), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(193), - [sym_test_operator] = ACTIONS(195), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(811), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(1551), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(1545), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1549), }, [389] = { - [sym_concatenation] = STATE(818), - [sym_string] = STATE(821), - [sym_array] = STATE(818), - [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__empty_value] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1542), - [sym__special_characters] = ACTIONS(1544), - [anon_sym_DQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR] = ACTIONS(207), - [sym_raw_string] = ACTIONS(1546), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_BQUOTE] = ACTIONS(215), - [anon_sym_LT_LPAREN] = ACTIONS(217), - [anon_sym_GT_LPAREN] = ACTIONS(217), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1546), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(812), + [sym_for_statement] = STATE(812), + [sym_c_style_for_statement] = STATE(812), + [sym_while_statement] = STATE(812), + [sym_if_statement] = STATE(812), + [sym_case_statement] = STATE(812), + [sym_function_definition] = STATE(812), + [sym_compound_statement] = STATE(812), + [sym_subshell] = STATE(812), + [sym_pipeline] = STATE(812), + [sym_list] = STATE(812), + [sym_negated_command] = STATE(812), + [sym_test_command] = STATE(812), + [sym_declaration_command] = STATE(812), + [sym_unset_command] = STATE(812), + [sym_command] = STATE(812), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(813), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [390] = { - [sym_string] = STATE(822), - [sym_simple_expansion] = STATE(822), - [sym_string_expansion] = STATE(822), - [sym_expansion] = STATE(822), - [sym_command_substitution] = STATE(822), - [sym_process_substitution] = STATE(822), - [sym__special_characters] = ACTIONS(1548), - [anon_sym_DQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR] = ACTIONS(207), - [sym_raw_string] = ACTIONS(1548), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_BQUOTE] = ACTIONS(215), - [anon_sym_LT_LPAREN] = ACTIONS(217), - [anon_sym_GT_LPAREN] = ACTIONS(217), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1548), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(816), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1555), + [anon_sym_SEMI_SEMI] = ACTIONS(1557), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1557), + [anon_sym_AMP] = ACTIONS(1553), }, [391] = { - [aux_sym_concatenation_repeat1] = STATE(823), - [sym__concat] = ACTIONS(697), - [sym_variable_name] = ACTIONS(807), - [ts_builtin_sym_end] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [sym__special_characters] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_LT_LPAREN] = ACTIONS(807), - [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(809), - [sym_word] = ACTIONS(809), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(816), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1555), + [anon_sym_SEMI_SEMI] = ACTIONS(1557), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1557), + [anon_sym_AMP] = ACTIONS(1553), }, [392] = { - [sym__concat] = ACTIONS(811), - [sym_variable_name] = ACTIONS(811), - [ts_builtin_sym_end] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(813), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [sym__special_characters] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(813), - [sym_raw_string] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(813), - [sym_word] = ACTIONS(813), - [anon_sym_LF] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(813), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(817), + [sym_for_statement] = STATE(817), + [sym_c_style_for_statement] = STATE(817), + [sym_while_statement] = STATE(817), + [sym_if_statement] = STATE(817), + [sym_case_statement] = STATE(817), + [sym_function_definition] = STATE(817), + [sym_compound_statement] = STATE(817), + [sym_subshell] = STATE(817), + [sym_pipeline] = STATE(817), + [sym_list] = STATE(817), + [sym_negated_command] = STATE(817), + [sym_test_command] = STATE(817), + [sym_declaration_command] = STATE(817), + [sym_unset_command] = STATE(817), + [sym_command] = STATE(817), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(818), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [393] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [sym_variable_assignment] = STATE(393), + [sym_subscript] = STATE(119), + [sym_concatenation] = STATE(393), + [sym_string] = STATE(114), + [sym_simple_expansion] = STATE(114), + [sym_string_expansion] = STATE(114), + [sym_expansion] = STATE(114), + [sym_command_substitution] = STATE(114), + [sym_process_substitution] = STATE(114), + [aux_sym_declaration_command_repeat1] = STATE(393), + [sym__simple_heredoc_body] = ACTIONS(1559), + [sym__heredoc_body_beginning] = ACTIONS(1559), + [sym_file_descriptor] = ACTIONS(1559), + [sym_variable_name] = ACTIONS(1561), + [ts_builtin_sym_end] = ACTIONS(1559), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [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_LT] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(1564), + [anon_sym_GT_GT] = ACTIONS(1559), + [anon_sym_AMP_GT] = ACTIONS(1564), + [anon_sym_AMP_GT_GT] = ACTIONS(1559), + [anon_sym_LT_AMP] = ACTIONS(1559), + [anon_sym_GT_AMP] = ACTIONS(1559), + [anon_sym_LT_LT] = ACTIONS(1564), + [anon_sym_LT_LT_DASH] = ACTIONS(1559), + [anon_sym_LT_LT_LT] = ACTIONS(1559), + [sym__special_characters] = ACTIONS(1566), + [anon_sym_DQUOTE] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1572), + [sym_raw_string] = ACTIONS(1575), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1578), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1581), + [anon_sym_BQUOTE] = ACTIONS(1584), + [anon_sym_LT_LPAREN] = ACTIONS(1587), + [anon_sym_GT_LPAREN] = ACTIONS(1587), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1590), + [sym_word] = ACTIONS(1593), + [anon_sym_LF] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1564), }, [394] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(473), - [anon_sym_DQUOTE] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1552), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym_string] = STATE(819), + [sym_simple_expansion] = STATE(819), + [sym_string_expansion] = STATE(819), + [sym_expansion] = STATE(819), + [sym_command_substitution] = STATE(819), + [sym_process_substitution] = STATE(819), + [sym__special_characters] = ACTIONS(1596), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(215), + [sym_raw_string] = ACTIONS(1596), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), + [anon_sym_BQUOTE] = ACTIONS(223), + [anon_sym_LT_LPAREN] = ACTIONS(225), + [anon_sym_GT_LPAREN] = ACTIONS(225), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1596), }, [395] = { - [sym__concat] = ACTIONS(845), - [sym_variable_name] = ACTIONS(845), - [ts_builtin_sym_end] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_SEMI_SEMI] = ACTIONS(845), - [anon_sym_PIPE_AMP] = ACTIONS(845), - [anon_sym_AMP_AMP] = ACTIONS(845), - [anon_sym_PIPE_PIPE] = ACTIONS(845), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(845), - [anon_sym_DOLLAR] = ACTIONS(847), - [sym_raw_string] = ACTIONS(845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(845), - [anon_sym_LT_LPAREN] = ACTIONS(845), - [anon_sym_GT_LPAREN] = ACTIONS(845), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(847), - [sym_word] = ACTIONS(847), - [anon_sym_LF] = ACTIONS(845), - [anon_sym_AMP] = ACTIONS(847), + [aux_sym_concatenation_repeat1] = STATE(820), + [sym__simple_heredoc_body] = ACTIONS(779), + [sym__heredoc_body_beginning] = ACTIONS(779), + [sym_file_descriptor] = ACTIONS(779), + [sym__concat] = ACTIONS(709), + [ts_builtin_sym_end] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [anon_sym_PIPE_AMP] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_AMP_GT] = ACTIONS(781), + [anon_sym_AMP_GT_GT] = ACTIONS(779), + [anon_sym_LT_AMP] = ACTIONS(779), + [anon_sym_GT_AMP] = ACTIONS(779), + [anon_sym_LT_LT] = ACTIONS(781), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_LT] = ACTIONS(779), + [sym__special_characters] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(781), + [sym_raw_string] = ACTIONS(779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(779), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), + [sym_word] = ACTIONS(781), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(781), }, [396] = { - [sym__concat] = ACTIONS(849), - [sym_variable_name] = ACTIONS(849), - [ts_builtin_sym_end] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_SEMI_SEMI] = ACTIONS(849), - [anon_sym_PIPE_AMP] = ACTIONS(849), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [sym__special_characters] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(851), - [sym_raw_string] = ACTIONS(849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(849), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(851), - [sym_word] = ACTIONS(851), - [anon_sym_LF] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(851), + [sym__simple_heredoc_body] = ACTIONS(783), + [sym__heredoc_body_beginning] = ACTIONS(783), + [sym_file_descriptor] = ACTIONS(783), + [sym__concat] = ACTIONS(783), + [ts_builtin_sym_end] = ACTIONS(783), + [anon_sym_SEMI] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_RPAREN] = ACTIONS(783), + [anon_sym_SEMI_SEMI] = ACTIONS(783), + [anon_sym_PIPE_AMP] = ACTIONS(783), + [anon_sym_AMP_AMP] = ACTIONS(783), + [anon_sym_PIPE_PIPE] = ACTIONS(783), + [anon_sym_LT] = ACTIONS(785), + [anon_sym_GT] = ACTIONS(785), + [anon_sym_GT_GT] = ACTIONS(783), + [anon_sym_AMP_GT] = ACTIONS(785), + [anon_sym_AMP_GT_GT] = ACTIONS(783), + [anon_sym_LT_AMP] = ACTIONS(783), + [anon_sym_GT_AMP] = ACTIONS(783), + [anon_sym_LT_LT] = ACTIONS(785), + [anon_sym_LT_LT_DASH] = ACTIONS(783), + [anon_sym_LT_LT_LT] = ACTIONS(783), + [sym__special_characters] = ACTIONS(783), + [anon_sym_DQUOTE] = ACTIONS(783), + [anon_sym_DOLLAR] = ACTIONS(785), + [sym_raw_string] = ACTIONS(783), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(783), + [anon_sym_BQUOTE] = ACTIONS(783), + [anon_sym_LT_LPAREN] = ACTIONS(783), + [anon_sym_GT_LPAREN] = ACTIONS(783), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(785), + [sym_word] = ACTIONS(785), + [anon_sym_LF] = ACTIONS(783), + [anon_sym_AMP] = ACTIONS(785), }, [397] = { - [sym__concat] = ACTIONS(853), - [sym_variable_name] = ACTIONS(853), - [ts_builtin_sym_end] = ACTIONS(853), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_PIPE] = ACTIONS(855), - [anon_sym_RPAREN] = ACTIONS(853), - [anon_sym_SEMI_SEMI] = ACTIONS(853), - [anon_sym_PIPE_AMP] = ACTIONS(853), - [anon_sym_AMP_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(853), - [sym__special_characters] = ACTIONS(853), - [anon_sym_DQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(855), - [sym_raw_string] = ACTIONS(853), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), - [anon_sym_BQUOTE] = ACTIONS(853), - [anon_sym_LT_LPAREN] = ACTIONS(853), - [anon_sym_GT_LPAREN] = ACTIONS(853), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(855), - [sym_word] = ACTIONS(855), - [anon_sym_LF] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [398] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(1554), - [sym_comment] = ACTIONS(55), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(455), + [anon_sym_DQUOTE] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1600), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [399] = { - [sym_subscript] = STATE(829), - [sym_variable_name] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1558), - [anon_sym_DOLLAR] = ACTIONS(1558), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_AT] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1562), - [anon_sym_0] = ACTIONS(1560), - [anon_sym__] = ACTIONS(1560), + [sym__simple_heredoc_body] = ACTIONS(817), + [sym__heredoc_body_beginning] = ACTIONS(817), + [sym_file_descriptor] = ACTIONS(817), + [sym__concat] = ACTIONS(817), + [ts_builtin_sym_end] = ACTIONS(817), + [anon_sym_SEMI] = ACTIONS(819), + [anon_sym_PIPE] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(817), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_PIPE_AMP] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [anon_sym_LT_LT] = ACTIONS(819), + [anon_sym_LT_LT_DASH] = ACTIONS(817), + [anon_sym_LT_LT_LT] = ACTIONS(817), + [sym__special_characters] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(819), + [sym_word] = ACTIONS(819), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(819), }, [400] = { - [sym_concatenation] = STATE(832), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(832), - [anon_sym_RBRACE] = ACTIONS(1564), - [anon_sym_EQ] = ACTIONS(1566), - [anon_sym_DASH] = ACTIONS(1566), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1568), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(1570), - [anon_sym_COLON] = ACTIONS(1566), - [anon_sym_COLON_QMARK] = ACTIONS(1566), - [anon_sym_COLON_DASH] = ACTIONS(1566), - [anon_sym_PERCENT] = ACTIONS(1566), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(821), + [sym__heredoc_body_beginning] = ACTIONS(821), + [sym_file_descriptor] = ACTIONS(821), + [sym__concat] = ACTIONS(821), + [ts_builtin_sym_end] = ACTIONS(821), + [anon_sym_SEMI] = ACTIONS(823), + [anon_sym_PIPE] = ACTIONS(823), + [anon_sym_RPAREN] = ACTIONS(821), + [anon_sym_SEMI_SEMI] = ACTIONS(821), + [anon_sym_PIPE_AMP] = ACTIONS(821), + [anon_sym_AMP_AMP] = ACTIONS(821), + [anon_sym_PIPE_PIPE] = ACTIONS(821), + [anon_sym_LT] = ACTIONS(823), + [anon_sym_GT] = ACTIONS(823), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_AMP_GT] = ACTIONS(823), + [anon_sym_AMP_GT_GT] = ACTIONS(821), + [anon_sym_LT_AMP] = ACTIONS(821), + [anon_sym_GT_AMP] = ACTIONS(821), + [anon_sym_LT_LT] = ACTIONS(823), + [anon_sym_LT_LT_DASH] = ACTIONS(821), + [anon_sym_LT_LT_LT] = ACTIONS(821), + [sym__special_characters] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(823), + [sym_raw_string] = ACTIONS(821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(821), + [anon_sym_BQUOTE] = ACTIONS(821), + [anon_sym_LT_LPAREN] = ACTIONS(821), + [anon_sym_GT_LPAREN] = ACTIONS(821), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [sym_word] = ACTIONS(823), + [anon_sym_LF] = ACTIONS(821), + [anon_sym_AMP] = ACTIONS(823), }, [401] = { - [sym_concatenation] = STATE(835), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(835), - [anon_sym_RBRACE] = ACTIONS(1572), - [anon_sym_EQ] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(1578), - [anon_sym_COLON] = ACTIONS(1574), - [anon_sym_COLON_QMARK] = ACTIONS(1574), - [anon_sym_COLON_DASH] = ACTIONS(1574), - [anon_sym_PERCENT] = ACTIONS(1574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(825), + [sym__heredoc_body_beginning] = ACTIONS(825), + [sym_file_descriptor] = ACTIONS(825), + [sym__concat] = ACTIONS(825), + [ts_builtin_sym_end] = ACTIONS(825), + [anon_sym_SEMI] = ACTIONS(827), + [anon_sym_PIPE] = ACTIONS(827), + [anon_sym_RPAREN] = ACTIONS(825), + [anon_sym_SEMI_SEMI] = ACTIONS(825), + [anon_sym_PIPE_AMP] = ACTIONS(825), + [anon_sym_AMP_AMP] = ACTIONS(825), + [anon_sym_PIPE_PIPE] = ACTIONS(825), + [anon_sym_LT] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_GT_GT] = ACTIONS(825), + [anon_sym_AMP_GT] = ACTIONS(827), + [anon_sym_AMP_GT_GT] = ACTIONS(825), + [anon_sym_LT_AMP] = ACTIONS(825), + [anon_sym_GT_AMP] = ACTIONS(825), + [anon_sym_LT_LT] = ACTIONS(827), + [anon_sym_LT_LT_DASH] = ACTIONS(825), + [anon_sym_LT_LT_LT] = ACTIONS(825), + [sym__special_characters] = ACTIONS(825), + [anon_sym_DQUOTE] = ACTIONS(825), + [anon_sym_DOLLAR] = ACTIONS(827), + [sym_raw_string] = ACTIONS(825), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(825), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_LT_LPAREN] = ACTIONS(825), + [anon_sym_GT_LPAREN] = ACTIONS(825), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(827), + [sym_word] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(825), + [anon_sym_AMP] = ACTIONS(827), }, [402] = { - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1582), - [anon_sym_SEMI_SEMI] = ACTIONS(1584), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1584), - [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(1602), + [sym_comment] = ACTIONS(57), }, [403] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1582), - [anon_sym_SEMI_SEMI] = ACTIONS(1584), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1584), - [anon_sym_AMP] = ACTIONS(1580), + [sym_subscript] = STATE(826), + [sym_variable_name] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1606), + [anon_sym_DOLLAR] = ACTIONS(1606), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1608), + [anon_sym_STAR] = ACTIONS(1610), + [anon_sym_AT] = ACTIONS(1610), + [anon_sym_QMARK] = ACTIONS(1610), + [anon_sym_0] = ACTIONS(1608), + [anon_sym__] = ACTIONS(1608), }, [404] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(838), - [sym_c_style_for_statement] = STATE(838), - [sym_while_statement] = STATE(838), - [sym_if_statement] = STATE(838), - [sym_case_statement] = STATE(838), - [sym_function_definition] = STATE(838), - [sym_subshell] = STATE(838), - [sym_pipeline] = STATE(838), - [sym_list] = STATE(838), - [sym_negated_command] = STATE(838), - [sym_test_command] = STATE(838), - [sym_declaration_command] = STATE(838), - [sym_unset_command] = STATE(838), - [sym_command] = STATE(838), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(839), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_concatenation] = STATE(829), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(829), + [anon_sym_RBRACE] = ACTIONS(1612), + [anon_sym_EQ] = ACTIONS(1614), + [anon_sym_DASH] = ACTIONS(1614), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1616), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_COLON] = ACTIONS(1614), + [anon_sym_COLON_QMARK] = ACTIONS(1614), + [anon_sym_COLON_DASH] = ACTIONS(1614), + [anon_sym_PERCENT] = ACTIONS(1614), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [405] = { - [anon_sym_SEMI] = ACTIONS(1586), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(1588), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(1582), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1586), + [sym_concatenation] = STATE(832), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(832), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_EQ] = ACTIONS(1622), + [anon_sym_DASH] = ACTIONS(1622), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1624), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(1626), + [anon_sym_COLON] = ACTIONS(1622), + [anon_sym_COLON_QMARK] = ACTIONS(1622), + [anon_sym_COLON_DASH] = ACTIONS(1622), + [anon_sym_PERCENT] = ACTIONS(1622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [406] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1586), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(1588), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(1582), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1588), - [anon_sym_AMP] = ACTIONS(1586), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(835), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1630), + [anon_sym_SEMI_SEMI] = ACTIONS(1632), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1632), + [anon_sym_AMP] = ACTIONS(1628), }, [407] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(841), - [sym_c_style_for_statement] = STATE(841), - [sym_while_statement] = STATE(841), - [sym_if_statement] = STATE(841), - [sym_case_statement] = STATE(841), - [sym_function_definition] = STATE(841), - [sym_subshell] = STATE(841), - [sym_pipeline] = STATE(841), - [sym_list] = STATE(841), - [sym_negated_command] = STATE(841), - [sym_test_command] = STATE(841), - [sym_declaration_command] = STATE(841), - [sym_unset_command] = STATE(841), - [sym_command] = STATE(841), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(842), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(835), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1630), + [anon_sym_SEMI_SEMI] = ACTIONS(1632), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1632), + [anon_sym_AMP] = ACTIONS(1628), }, [408] = { - [anon_sym_SEMI] = ACTIONS(1590), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1592), - [anon_sym_SEMI_SEMI] = ACTIONS(1594), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1594), - [anon_sym_AMP] = ACTIONS(1590), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(836), + [sym_for_statement] = STATE(836), + [sym_c_style_for_statement] = STATE(836), + [sym_while_statement] = STATE(836), + [sym_if_statement] = STATE(836), + [sym_case_statement] = STATE(836), + [sym_function_definition] = STATE(836), + [sym_compound_statement] = STATE(836), + [sym_subshell] = STATE(836), + [sym_pipeline] = STATE(836), + [sym_list] = STATE(836), + [sym_negated_command] = STATE(836), + [sym_test_command] = STATE(836), + [sym_declaration_command] = STATE(836), + [sym_unset_command] = STATE(836), + [sym_command] = STATE(836), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(837), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [409] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1590), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1592), - [anon_sym_SEMI_SEMI] = ACTIONS(1594), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1594), - [anon_sym_AMP] = ACTIONS(1590), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(839), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1634), }, [410] = { - [sym__terminated_statement] = STATE(198), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(839), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(1636), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(1630), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1634), + }, + [411] = { + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(840), + [sym_for_statement] = STATE(840), + [sym_c_style_for_statement] = STATE(840), + [sym_while_statement] = STATE(840), + [sym_if_statement] = STATE(840), + [sym_case_statement] = STATE(840), + [sym_function_definition] = STATE(840), + [sym_compound_statement] = STATE(840), + [sym_subshell] = STATE(840), + [sym_pipeline] = STATE(840), + [sym_list] = STATE(840), + [sym_negated_command] = STATE(840), + [sym_test_command] = STATE(840), + [sym_declaration_command] = STATE(840), + [sym_unset_command] = STATE(840), + [sym_command] = STATE(840), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(841), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), + }, + [412] = { + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(844), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(1638), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1640), + [anon_sym_SEMI_SEMI] = ACTIONS(1642), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1638), + }, + [413] = { + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(844), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1638), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1640), + [anon_sym_SEMI_SEMI] = ACTIONS(1642), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1638), + }, + [414] = { + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(845), [sym_for_statement] = STATE(845), [sym_c_style_for_statement] = STATE(845), [sym_while_statement] = STATE(845), [sym_if_statement] = STATE(845), [sym_case_statement] = STATE(845), [sym_function_definition] = STATE(845), + [sym_compound_statement] = STATE(845), [sym_subshell] = STATE(845), [sym_pipeline] = STATE(845), [sym_list] = STATE(845), @@ -20347,17950 +21656,19471 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(845), [sym_unset_command] = STATE(845), [sym_command] = STATE(845), - [sym_command_name] = STATE(92), + [sym_command_name] = STATE(83), [sym_variable_assignment] = STATE(846), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), + [sym_variable_name] = ACTIONS(129), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, - [411] = { - [sym_variable_assignment] = STATE(411), - [sym_subscript] = STATE(124), - [sym_concatenation] = STATE(411), - [sym_string] = STATE(119), - [sym_simple_expansion] = STATE(119), - [sym_string_expansion] = STATE(119), - [sym_expansion] = STATE(119), - [sym_command_substitution] = STATE(119), - [sym_process_substitution] = STATE(119), - [aux_sym_declaration_command_repeat1] = STATE(411), - [sym_variable_name] = ACTIONS(1596), - [ts_builtin_sym_end] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym_PIPE] = ACTIONS(1601), - [anon_sym_SEMI_SEMI] = ACTIONS(1599), - [anon_sym_PIPE_AMP] = ACTIONS(1599), - [anon_sym_AMP_AMP] = ACTIONS(1599), - [anon_sym_PIPE_PIPE] = ACTIONS(1599), - [sym__special_characters] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1606), - [anon_sym_DOLLAR] = ACTIONS(1609), - [sym_raw_string] = ACTIONS(1612), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1615), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1618), - [anon_sym_BQUOTE] = ACTIONS(1621), - [anon_sym_LT_LPAREN] = ACTIONS(1624), - [anon_sym_GT_LPAREN] = ACTIONS(1624), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1627), - [sym_word] = ACTIONS(1630), - [anon_sym_LF] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1601), + [415] = { + [sym_concatenation] = STATE(415), + [sym_string] = STATE(124), + [sym_simple_expansion] = STATE(124), + [sym_string_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [sym_process_substitution] = STATE(124), + [aux_sym_unset_command_repeat1] = STATE(415), + [sym__simple_heredoc_body] = ACTIONS(1644), + [sym__heredoc_body_beginning] = ACTIONS(1644), + [sym_file_descriptor] = ACTIONS(1644), + [ts_builtin_sym_end] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1646), + [anon_sym_PIPE] = ACTIONS(1646), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1646), + [anon_sym_GT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1644), + [anon_sym_AMP_GT] = ACTIONS(1646), + [anon_sym_AMP_GT_GT] = ACTIONS(1644), + [anon_sym_LT_AMP] = ACTIONS(1644), + [anon_sym_GT_AMP] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_LT_LT_DASH] = ACTIONS(1644), + [anon_sym_LT_LT_LT] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(1648), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1654), + [sym_raw_string] = ACTIONS(1657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1660), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1663), + [anon_sym_BQUOTE] = ACTIONS(1666), + [anon_sym_LT_LPAREN] = ACTIONS(1669), + [anon_sym_GT_LPAREN] = ACTIONS(1669), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1672), + [sym_word] = ACTIONS(1675), + [anon_sym_LF] = ACTIONS(1644), + [anon_sym_AMP] = ACTIONS(1646), }, - [412] = { + [416] = { [sym_string] = STATE(847), [sym_simple_expansion] = STATE(847), [sym_string_expansion] = STATE(847), [sym_expansion] = STATE(847), [sym_command_substitution] = STATE(847), [sym_process_substitution] = STATE(847), - [sym__special_characters] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [sym_raw_string] = ACTIONS(1633), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [anon_sym_LT_LPAREN] = ACTIONS(241), - [anon_sym_GT_LPAREN] = ACTIONS(241), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1633), - }, - [413] = { - [aux_sym_concatenation_repeat1] = STATE(848), - [sym__concat] = ACTIONS(735), - [ts_builtin_sym_end] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [sym__special_characters] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_LT_LPAREN] = ACTIONS(807), - [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(809), - [sym_word] = ACTIONS(809), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), - }, - [414] = { - [sym__concat] = ACTIONS(811), - [ts_builtin_sym_end] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(813), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [sym__special_characters] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(813), - [sym_raw_string] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(813), - [sym_word] = ACTIONS(813), - [anon_sym_LF] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(813), - }, - [415] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), - }, - [416] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(473), - [anon_sym_DQUOTE] = ACTIONS(1635), - [anon_sym_DOLLAR] = ACTIONS(1637), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym__special_characters] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(233), + [anon_sym_DOLLAR] = ACTIONS(235), + [sym_raw_string] = ACTIONS(1678), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(239), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(243), + [anon_sym_LT_LPAREN] = ACTIONS(245), + [anon_sym_GT_LPAREN] = ACTIONS(245), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1678), }, [417] = { - [sym__concat] = ACTIONS(845), - [ts_builtin_sym_end] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_SEMI_SEMI] = ACTIONS(845), - [anon_sym_PIPE_AMP] = ACTIONS(845), - [anon_sym_AMP_AMP] = ACTIONS(845), - [anon_sym_PIPE_PIPE] = ACTIONS(845), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(845), - [anon_sym_DOLLAR] = ACTIONS(847), - [sym_raw_string] = ACTIONS(845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(845), - [anon_sym_LT_LPAREN] = ACTIONS(845), - [anon_sym_GT_LPAREN] = ACTIONS(845), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(847), - [sym_word] = ACTIONS(847), - [anon_sym_LF] = ACTIONS(845), - [anon_sym_AMP] = ACTIONS(847), + [aux_sym_concatenation_repeat1] = STATE(848), + [sym_file_descriptor] = ACTIONS(779), + [sym__concat] = ACTIONS(747), + [sym_variable_name] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_AMP_GT] = ACTIONS(781), + [anon_sym_AMP_GT_GT] = ACTIONS(779), + [anon_sym_LT_AMP] = ACTIONS(779), + [anon_sym_GT_AMP] = ACTIONS(779), + [sym__special_characters] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(781), + [sym_raw_string] = ACTIONS(779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(779), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(779), }, [418] = { - [sym__concat] = ACTIONS(849), - [ts_builtin_sym_end] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_SEMI_SEMI] = ACTIONS(849), - [anon_sym_PIPE_AMP] = ACTIONS(849), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [sym__special_characters] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(851), - [sym_raw_string] = ACTIONS(849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(849), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(851), - [sym_word] = ACTIONS(851), - [anon_sym_LF] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(783), + [sym__concat] = ACTIONS(783), + [sym_variable_name] = ACTIONS(783), + [anon_sym_LT] = ACTIONS(785), + [anon_sym_GT] = ACTIONS(785), + [anon_sym_GT_GT] = ACTIONS(783), + [anon_sym_AMP_GT] = ACTIONS(785), + [anon_sym_AMP_GT_GT] = ACTIONS(783), + [anon_sym_LT_AMP] = ACTIONS(783), + [anon_sym_GT_AMP] = ACTIONS(783), + [sym__special_characters] = ACTIONS(783), + [anon_sym_DQUOTE] = ACTIONS(783), + [anon_sym_DOLLAR] = ACTIONS(785), + [sym_raw_string] = ACTIONS(783), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(783), + [anon_sym_BQUOTE] = ACTIONS(783), + [anon_sym_LT_LPAREN] = ACTIONS(783), + [anon_sym_GT_LPAREN] = ACTIONS(783), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(783), }, [419] = { - [sym__concat] = ACTIONS(853), - [ts_builtin_sym_end] = ACTIONS(853), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_PIPE] = ACTIONS(855), - [anon_sym_RPAREN] = ACTIONS(853), - [anon_sym_SEMI_SEMI] = ACTIONS(853), - [anon_sym_PIPE_AMP] = ACTIONS(853), - [anon_sym_AMP_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(853), - [sym__special_characters] = ACTIONS(853), - [anon_sym_DQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(855), - [sym_raw_string] = ACTIONS(853), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), - [anon_sym_BQUOTE] = ACTIONS(853), - [anon_sym_LT_LPAREN] = ACTIONS(853), - [anon_sym_GT_LPAREN] = ACTIONS(853), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(855), - [sym_word] = ACTIONS(855), - [anon_sym_LF] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(1680), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [420] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(1639), - [sym_comment] = ACTIONS(55), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(455), + [anon_sym_DQUOTE] = ACTIONS(1680), + [anon_sym_DOLLAR] = ACTIONS(1682), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [421] = { - [sym_subscript] = STATE(854), - [sym_variable_name] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(1643), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1645), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_AT] = ACTIONS(1647), - [anon_sym_QMARK] = ACTIONS(1647), - [anon_sym_0] = ACTIONS(1645), - [anon_sym__] = ACTIONS(1645), + [sym_file_descriptor] = ACTIONS(817), + [sym__concat] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [sym__special_characters] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(817), }, [422] = { - [sym_concatenation] = STATE(857), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(857), - [anon_sym_RBRACE] = ACTIONS(1649), - [anon_sym_EQ] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1651), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1653), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(1655), - [anon_sym_COLON] = ACTIONS(1651), - [anon_sym_COLON_QMARK] = ACTIONS(1651), - [anon_sym_COLON_DASH] = ACTIONS(1651), - [anon_sym_PERCENT] = ACTIONS(1651), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(821), + [sym__concat] = ACTIONS(821), + [sym_variable_name] = ACTIONS(821), + [anon_sym_LT] = ACTIONS(823), + [anon_sym_GT] = ACTIONS(823), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_AMP_GT] = ACTIONS(823), + [anon_sym_AMP_GT_GT] = ACTIONS(821), + [anon_sym_LT_AMP] = ACTIONS(821), + [anon_sym_GT_AMP] = ACTIONS(821), + [sym__special_characters] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(823), + [sym_raw_string] = ACTIONS(821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(821), + [anon_sym_BQUOTE] = ACTIONS(821), + [anon_sym_LT_LPAREN] = ACTIONS(821), + [anon_sym_GT_LPAREN] = ACTIONS(821), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(821), }, [423] = { - [sym_concatenation] = STATE(860), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(860), - [anon_sym_RBRACE] = ACTIONS(1657), - [anon_sym_EQ] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(1663), - [anon_sym_COLON] = ACTIONS(1659), - [anon_sym_COLON_QMARK] = ACTIONS(1659), - [anon_sym_COLON_DASH] = ACTIONS(1659), - [anon_sym_PERCENT] = ACTIONS(1659), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(825), + [sym__concat] = ACTIONS(825), + [sym_variable_name] = ACTIONS(825), + [anon_sym_LT] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_GT_GT] = ACTIONS(825), + [anon_sym_AMP_GT] = ACTIONS(827), + [anon_sym_AMP_GT_GT] = ACTIONS(825), + [anon_sym_LT_AMP] = ACTIONS(825), + [anon_sym_GT_AMP] = ACTIONS(825), + [sym__special_characters] = ACTIONS(825), + [anon_sym_DQUOTE] = ACTIONS(825), + [anon_sym_DOLLAR] = ACTIONS(827), + [sym_raw_string] = ACTIONS(825), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(825), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_LT_LPAREN] = ACTIONS(825), + [anon_sym_GT_LPAREN] = ACTIONS(825), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(825), }, [424] = { - [anon_sym_SEMI] = ACTIONS(1665), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1667), - [anon_sym_SEMI_SEMI] = ACTIONS(1669), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(1684), + [sym_comment] = ACTIONS(57), }, [425] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1665), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1667), - [anon_sym_SEMI_SEMI] = ACTIONS(1669), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1665), + [sym_subscript] = STATE(854), + [sym_variable_name] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_DOLLAR] = ACTIONS(1688), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1690), + [anon_sym_STAR] = ACTIONS(1692), + [anon_sym_AT] = ACTIONS(1692), + [anon_sym_QMARK] = ACTIONS(1692), + [anon_sym_0] = ACTIONS(1690), + [anon_sym__] = ACTIONS(1690), }, [426] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(863), - [sym_c_style_for_statement] = STATE(863), - [sym_while_statement] = STATE(863), - [sym_if_statement] = STATE(863), - [sym_case_statement] = STATE(863), - [sym_function_definition] = STATE(863), - [sym_subshell] = STATE(863), - [sym_pipeline] = STATE(863), - [sym_list] = STATE(863), - [sym_negated_command] = STATE(863), - [sym_test_command] = STATE(863), - [sym_declaration_command] = STATE(863), - [sym_unset_command] = STATE(863), - [sym_command] = STATE(863), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(864), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_concatenation] = STATE(857), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(857), + [anon_sym_RBRACE] = ACTIONS(1694), + [anon_sym_EQ] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1696), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1698), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(1700), + [anon_sym_COLON] = ACTIONS(1696), + [anon_sym_COLON_QMARK] = ACTIONS(1696), + [anon_sym_COLON_DASH] = ACTIONS(1696), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [427] = { - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(1673), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(1667), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1671), + [sym_concatenation] = STATE(860), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(860), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_EQ] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1706), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_COLON] = ACTIONS(1704), + [anon_sym_COLON_QMARK] = ACTIONS(1704), + [anon_sym_COLON_DASH] = ACTIONS(1704), + [anon_sym_PERCENT] = ACTIONS(1704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [428] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(1673), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(1667), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1671), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(863), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1712), + [anon_sym_SEMI_SEMI] = ACTIONS(1714), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(1710), }, [429] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(866), - [sym_c_style_for_statement] = STATE(866), - [sym_while_statement] = STATE(866), - [sym_if_statement] = STATE(866), - [sym_case_statement] = STATE(866), - [sym_function_definition] = STATE(866), - [sym_subshell] = STATE(866), - [sym_pipeline] = STATE(866), - [sym_list] = STATE(866), - [sym_negated_command] = STATE(866), - [sym_test_command] = STATE(866), - [sym_declaration_command] = STATE(866), - [sym_unset_command] = STATE(866), - [sym_command] = STATE(866), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(867), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(863), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1712), + [anon_sym_SEMI_SEMI] = ACTIONS(1714), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(1710), }, [430] = { - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1677), - [anon_sym_SEMI_SEMI] = ACTIONS(1679), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1675), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_c_style_for_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_case_statement] = STATE(864), + [sym_function_definition] = STATE(864), + [sym_compound_statement] = STATE(864), + [sym_subshell] = STATE(864), + [sym_pipeline] = STATE(864), + [sym_list] = STATE(864), + [sym_negated_command] = STATE(864), + [sym_test_command] = STATE(864), + [sym_declaration_command] = STATE(864), + [sym_unset_command] = STATE(864), + [sym_command] = STATE(864), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(865), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [431] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1677), - [anon_sym_SEMI_SEMI] = ACTIONS(1679), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1675), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(867), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(1718), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(1712), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1716), }, [432] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(870), - [sym_c_style_for_statement] = STATE(870), - [sym_while_statement] = STATE(870), - [sym_if_statement] = STATE(870), - [sym_case_statement] = STATE(870), - [sym_function_definition] = STATE(870), - [sym_subshell] = STATE(870), - [sym_pipeline] = STATE(870), - [sym_list] = STATE(870), - [sym_negated_command] = STATE(870), - [sym_test_command] = STATE(870), - [sym_declaration_command] = STATE(870), - [sym_unset_command] = STATE(870), - [sym_command] = STATE(870), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(871), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(867), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(1718), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(1712), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1716), }, [433] = { - [sym_concatenation] = STATE(433), - [sym_string] = STATE(129), - [sym_simple_expansion] = STATE(129), - [sym_string_expansion] = STATE(129), - [sym_expansion] = STATE(129), - [sym_command_substitution] = STATE(129), - [sym_process_substitution] = STATE(129), - [aux_sym_unset_command_repeat1] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [sym__special_characters] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1688), - [anon_sym_DOLLAR] = ACTIONS(1691), - [sym_raw_string] = ACTIONS(1694), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1697), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1700), - [anon_sym_BQUOTE] = ACTIONS(1703), - [anon_sym_LT_LPAREN] = ACTIONS(1706), - [anon_sym_GT_LPAREN] = ACTIONS(1706), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1709), - [sym_word] = ACTIONS(1712), - [anon_sym_LF] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(868), + [sym_for_statement] = STATE(868), + [sym_c_style_for_statement] = STATE(868), + [sym_while_statement] = STATE(868), + [sym_if_statement] = STATE(868), + [sym_case_statement] = STATE(868), + [sym_function_definition] = STATE(868), + [sym_compound_statement] = STATE(868), + [sym_subshell] = STATE(868), + [sym_pipeline] = STATE(868), + [sym_list] = STATE(868), + [sym_negated_command] = STATE(868), + [sym_test_command] = STATE(868), + [sym_declaration_command] = STATE(868), + [sym_unset_command] = STATE(868), + [sym_command] = STATE(868), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(869), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [434] = { - [sym_string] = STATE(872), - [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__special_characters] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR] = ACTIONS(251), - [sym_raw_string] = ACTIONS(1715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(255), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(257), - [anon_sym_BQUOTE] = ACTIONS(259), - [anon_sym_LT_LPAREN] = ACTIONS(261), - [anon_sym_GT_LPAREN] = ACTIONS(261), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1715), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(872), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(1720), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1722), + [anon_sym_SEMI_SEMI] = ACTIONS(1724), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1720), }, [435] = { - [aux_sym_concatenation_repeat1] = STATE(873), - [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(775), - [sym_variable_name] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(809), - [anon_sym_AMP_GT_GT] = ACTIONS(807), - [anon_sym_LT_AMP] = ACTIONS(807), - [anon_sym_GT_AMP] = ACTIONS(807), - [sym__special_characters] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_LT_LPAREN] = ACTIONS(807), - [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(807), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(872), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1720), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1722), + [anon_sym_SEMI_SEMI] = ACTIONS(1724), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1720), }, [436] = { - [sym_file_descriptor] = ACTIONS(811), - [sym__concat] = ACTIONS(811), - [sym_variable_name] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_AMP_GT] = ACTIONS(813), - [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_LT_AMP] = ACTIONS(811), - [anon_sym_GT_AMP] = ACTIONS(811), - [sym__special_characters] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(813), - [sym_raw_string] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(811), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(873), + [sym_for_statement] = STATE(873), + [sym_c_style_for_statement] = STATE(873), + [sym_while_statement] = STATE(873), + [sym_if_statement] = STATE(873), + [sym_case_statement] = STATE(873), + [sym_function_definition] = STATE(873), + [sym_compound_statement] = STATE(873), + [sym_subshell] = STATE(873), + [sym_pipeline] = STATE(873), + [sym_list] = STATE(873), + [sym_negated_command] = STATE(873), + [sym_test_command] = STATE(873), + [sym_declaration_command] = STATE(873), + [sym_unset_command] = STATE(873), + [sym_command] = STATE(873), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(874), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [437] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(1726), + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_EQ_TILDE] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), }, [438] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(473), - [anon_sym_DQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1719), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [aux_sym_concatenation_repeat1] = STATE(438), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(1730), + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_EQ_TILDE] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), }, [439] = { - [sym_file_descriptor] = ACTIONS(845), - [sym__concat] = ACTIONS(845), - [sym_variable_name] = ACTIONS(845), - [anon_sym_LT] = ACTIONS(847), - [anon_sym_GT] = ACTIONS(847), - [anon_sym_GT_GT] = ACTIONS(845), - [anon_sym_AMP_GT] = ACTIONS(847), - [anon_sym_AMP_GT_GT] = ACTIONS(845), - [anon_sym_LT_AMP] = ACTIONS(845), - [anon_sym_GT_AMP] = ACTIONS(845), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(845), - [anon_sym_DOLLAR] = ACTIONS(847), - [sym_raw_string] = ACTIONS(845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(845), - [anon_sym_LT_LPAREN] = ACTIONS(845), - [anon_sym_GT_LPAREN] = ACTIONS(845), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(845), + [sym__concat] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym__string_content] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(819), + [anon_sym_BQUOTE] = ACTIONS(819), + [sym_comment] = ACTIONS(265), }, [440] = { - [sym_file_descriptor] = ACTIONS(849), - [sym__concat] = ACTIONS(849), - [sym_variable_name] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(851), - [anon_sym_GT_GT] = ACTIONS(849), - [anon_sym_AMP_GT] = ACTIONS(851), - [anon_sym_AMP_GT_GT] = ACTIONS(849), - [anon_sym_LT_AMP] = ACTIONS(849), - [anon_sym_GT_AMP] = ACTIONS(849), - [sym__special_characters] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(851), - [sym_raw_string] = ACTIONS(849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(849), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(849), + [sym__simple_heredoc_body] = ACTIONS(1733), + [sym__heredoc_body_beginning] = ACTIONS(1733), + [sym_file_descriptor] = ACTIONS(1733), + [sym__concat] = ACTIONS(1733), + [ts_builtin_sym_end] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_RPAREN] = ACTIONS(1733), + [anon_sym_SEMI_SEMI] = ACTIONS(1733), + [anon_sym_PIPE_AMP] = ACTIONS(1733), + [anon_sym_AMP_AMP] = ACTIONS(1733), + [anon_sym_PIPE_PIPE] = ACTIONS(1733), + [anon_sym_EQ_TILDE] = ACTIONS(1735), + [anon_sym_EQ_EQ] = ACTIONS(1735), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1733), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_AMP_GT_GT] = ACTIONS(1733), + [anon_sym_LT_AMP] = ACTIONS(1733), + [anon_sym_GT_AMP] = ACTIONS(1733), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_LT_LT_DASH] = ACTIONS(1733), + [anon_sym_LT_LT_LT] = ACTIONS(1733), + [sym__special_characters] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1733), + [anon_sym_BQUOTE] = ACTIONS(1733), + [anon_sym_LT_LPAREN] = ACTIONS(1733), + [anon_sym_GT_LPAREN] = ACTIONS(1733), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1733), + [anon_sym_AMP] = ACTIONS(1735), }, [441] = { - [sym_file_descriptor] = ACTIONS(853), - [sym__concat] = ACTIONS(853), - [sym_variable_name] = ACTIONS(853), - [anon_sym_LT] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(855), - [anon_sym_GT_GT] = ACTIONS(853), - [anon_sym_AMP_GT] = ACTIONS(855), - [anon_sym_AMP_GT_GT] = ACTIONS(853), - [anon_sym_LT_AMP] = ACTIONS(853), - [anon_sym_GT_AMP] = ACTIONS(853), - [sym__special_characters] = ACTIONS(853), - [anon_sym_DQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(855), - [sym_raw_string] = ACTIONS(853), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), - [anon_sym_BQUOTE] = ACTIONS(853), - [anon_sym_LT_LPAREN] = ACTIONS(853), - [anon_sym_GT_LPAREN] = ACTIONS(853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(853), + [sym__concat] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [sym__string_content] = ACTIONS(1741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1739), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1739), + [anon_sym_BQUOTE] = ACTIONS(1739), + [sym_comment] = ACTIONS(265), }, [442] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(1721), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(825), + [anon_sym_DQUOTE] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [sym__string_content] = ACTIONS(825), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(827), + [anon_sym_BQUOTE] = ACTIONS(827), + [sym_comment] = ACTIONS(265), }, [443] = { - [sym_subscript] = STATE(879), - [sym_variable_name] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1727), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_AT] = ACTIONS(1729), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_0] = ACTIONS(1727), - [anon_sym__] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [sym__string_content] = ACTIONS(1741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1739), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1739), + [anon_sym_BQUOTE] = ACTIONS(1739), + [sym_comment] = ACTIONS(265), }, [444] = { - [sym_concatenation] = STATE(882), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(882), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_EQ] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(1737), - [anon_sym_COLON] = ACTIONS(1733), - [anon_sym_COLON_QMARK] = ACTIONS(1733), - [anon_sym_COLON_DASH] = ACTIONS(1733), - [anon_sym_PERCENT] = ACTIONS(1733), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(1743), + [sym_comment] = ACTIONS(57), }, [445] = { - [sym_concatenation] = STATE(885), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_EQ] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1741), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1743), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(1745), - [anon_sym_COLON] = ACTIONS(1741), - [anon_sym_COLON_QMARK] = ACTIONS(1741), - [anon_sym_COLON_DASH] = ACTIONS(1741), - [anon_sym_PERCENT] = ACTIONS(1741), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_subscript] = STATE(879), + [sym_variable_name] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_DOLLAR] = ACTIONS(1747), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1749), + [anon_sym_STAR] = ACTIONS(1751), + [anon_sym_AT] = ACTIONS(1751), + [anon_sym_QMARK] = ACTIONS(1751), + [anon_sym_0] = ACTIONS(1749), + [anon_sym__] = ACTIONS(1749), }, [446] = { - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1749), - [anon_sym_SEMI_SEMI] = ACTIONS(1751), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1747), + [sym_concatenation] = STATE(882), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(882), + [anon_sym_RBRACE] = ACTIONS(1753), + [anon_sym_EQ] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1757), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(1759), + [anon_sym_COLON] = ACTIONS(1755), + [anon_sym_COLON_QMARK] = ACTIONS(1755), + [anon_sym_COLON_DASH] = ACTIONS(1755), + [anon_sym_PERCENT] = ACTIONS(1755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [447] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1749), - [anon_sym_SEMI_SEMI] = ACTIONS(1751), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1747), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(1761), + [anon_sym_EQ] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1765), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_COLON] = ACTIONS(1763), + [anon_sym_COLON_QMARK] = ACTIONS(1763), + [anon_sym_COLON_DASH] = ACTIONS(1763), + [anon_sym_PERCENT] = ACTIONS(1763), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [448] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(888), - [sym_c_style_for_statement] = STATE(888), - [sym_while_statement] = STATE(888), - [sym_if_statement] = STATE(888), - [sym_case_statement] = STATE(888), - [sym_function_definition] = STATE(888), - [sym_subshell] = STATE(888), - [sym_pipeline] = STATE(888), - [sym_list] = STATE(888), - [sym_negated_command] = STATE(888), - [sym_test_command] = STATE(888), - [sym_declaration_command] = STATE(888), - [sym_unset_command] = STATE(888), - [sym_command] = STATE(888), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(889), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(888), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(1769), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1771), + [anon_sym_SEMI_SEMI] = ACTIONS(1773), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1773), + [anon_sym_AMP] = ACTIONS(1769), }, [449] = { - [anon_sym_SEMI] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(1755), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(1749), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1755), - [anon_sym_AMP] = ACTIONS(1753), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(888), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1769), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1771), + [anon_sym_SEMI_SEMI] = ACTIONS(1773), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1773), + [anon_sym_AMP] = ACTIONS(1769), }, [450] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1753), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(1755), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(1749), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1755), - [anon_sym_AMP] = ACTIONS(1753), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(889), + [sym_for_statement] = STATE(889), + [sym_c_style_for_statement] = STATE(889), + [sym_while_statement] = STATE(889), + [sym_if_statement] = STATE(889), + [sym_case_statement] = STATE(889), + [sym_function_definition] = STATE(889), + [sym_compound_statement] = STATE(889), + [sym_subshell] = STATE(889), + [sym_pipeline] = STATE(889), + [sym_list] = STATE(889), + [sym_negated_command] = STATE(889), + [sym_test_command] = STATE(889), + [sym_declaration_command] = STATE(889), + [sym_unset_command] = STATE(889), + [sym_command] = STATE(889), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(890), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [451] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(891), - [sym_c_style_for_statement] = STATE(891), - [sym_while_statement] = STATE(891), - [sym_if_statement] = STATE(891), - [sym_case_statement] = STATE(891), - [sym_function_definition] = STATE(891), - [sym_subshell] = STATE(891), - [sym_pipeline] = STATE(891), - [sym_list] = STATE(891), - [sym_negated_command] = STATE(891), - [sym_test_command] = STATE(891), - [sym_declaration_command] = STATE(891), - [sym_unset_command] = STATE(891), - [sym_command] = STATE(891), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(892), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(892), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(1775), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(1777), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(1771), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1777), + [anon_sym_AMP] = ACTIONS(1775), }, [452] = { - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1759), - [anon_sym_SEMI_SEMI] = ACTIONS(1761), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1757), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(892), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1775), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(1777), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(1771), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1777), + [anon_sym_AMP] = ACTIONS(1775), }, [453] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1759), - [anon_sym_SEMI_SEMI] = ACTIONS(1761), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1757), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(893), + [sym_for_statement] = STATE(893), + [sym_c_style_for_statement] = STATE(893), + [sym_while_statement] = STATE(893), + [sym_if_statement] = STATE(893), + [sym_case_statement] = STATE(893), + [sym_function_definition] = STATE(893), + [sym_compound_statement] = STATE(893), + [sym_subshell] = STATE(893), + [sym_pipeline] = STATE(893), + [sym_list] = STATE(893), + [sym_negated_command] = STATE(893), + [sym_test_command] = STATE(893), + [sym_declaration_command] = STATE(893), + [sym_unset_command] = STATE(893), + [sym_command] = STATE(893), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(894), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [454] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(895), - [sym_c_style_for_statement] = STATE(895), - [sym_while_statement] = STATE(895), - [sym_if_statement] = STATE(895), - [sym_case_statement] = STATE(895), - [sym_function_definition] = STATE(895), - [sym_subshell] = STATE(895), - [sym_pipeline] = STATE(895), - [sym_list] = STATE(895), - [sym_negated_command] = STATE(895), - [sym_test_command] = STATE(895), - [sym_declaration_command] = STATE(895), - [sym_unset_command] = STATE(895), - [sym_command] = STATE(895), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(896), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(1779), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [455] = { - [sym__simple_heredoc_body] = ACTIONS(1763), - [sym__heredoc_body_beginning] = ACTIONS(1763), - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(1763), - [ts_builtin_sym_end] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_LT_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT_LT] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(455), + [anon_sym_DQUOTE] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1781), + [sym__string_content] = ACTIONS(1784), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1787), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), + [anon_sym_BQUOTE] = ACTIONS(1793), + [sym_comment] = ACTIONS(265), }, [456] = { - [aux_sym_concatenation_repeat1] = STATE(456), - [sym__simple_heredoc_body] = ACTIONS(1763), - [sym__heredoc_body_beginning] = ACTIONS(1763), - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(1767), - [ts_builtin_sym_end] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_LT_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT_LT] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym_concatenation] = STATE(899), + [sym_string] = STATE(898), + [sym_simple_expansion] = STATE(898), + [sym_string_expansion] = STATE(898), + [sym_expansion] = STATE(898), + [sym_command_substitution] = STATE(898), + [sym_process_substitution] = STATE(898), + [sym__special_characters] = ACTIONS(1796), + [anon_sym_DQUOTE] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(155), + [sym_raw_string] = ACTIONS(1798), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(163), + [anon_sym_LT_LPAREN] = ACTIONS(165), + [anon_sym_GT_LPAREN] = ACTIONS(165), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1798), }, [457] = { - [sym__concat] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(847), - [anon_sym_DOLLAR] = ACTIONS(847), - [sym__string_content] = ACTIONS(845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(847), - [anon_sym_BQUOTE] = ACTIONS(847), - [sym_comment] = ACTIONS(281), + [sym_concatenation] = STATE(909), + [sym_string] = STATE(904), + [sym_simple_expansion] = STATE(904), + [sym_string_expansion] = STATE(904), + [sym_expansion] = STATE(904), + [sym_command_substitution] = STATE(904), + [sym_process_substitution] = STATE(904), + [anon_sym_RBRACE] = ACTIONS(1800), + [sym__special_characters] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(1808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1808), }, [458] = { - [sym__simple_heredoc_body] = ACTIONS(1770), - [sym__heredoc_body_beginning] = ACTIONS(1770), - [sym_file_descriptor] = ACTIONS(1770), - [sym__concat] = ACTIONS(1770), - [ts_builtin_sym_end] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1770), - [anon_sym_SEMI_SEMI] = ACTIONS(1770), - [anon_sym_PIPE_AMP] = ACTIONS(1770), - [anon_sym_AMP_AMP] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1770), - [anon_sym_EQ_TILDE] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1772), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_AMP_GT] = ACTIONS(1772), - [anon_sym_AMP_GT_GT] = ACTIONS(1770), - [anon_sym_LT_AMP] = ACTIONS(1770), - [anon_sym_GT_AMP] = ACTIONS(1770), - [anon_sym_LT_LT] = ACTIONS(1772), - [anon_sym_LT_LT_DASH] = ACTIONS(1770), - [anon_sym_LT_LT_LT] = ACTIONS(1770), - [sym__special_characters] = ACTIONS(1770), - [anon_sym_DQUOTE] = ACTIONS(1770), - [anon_sym_DOLLAR] = ACTIONS(1772), - [sym_raw_string] = ACTIONS(1770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), - [anon_sym_BQUOTE] = ACTIONS(1770), - [anon_sym_LT_LPAREN] = ACTIONS(1770), - [anon_sym_GT_LPAREN] = ACTIONS(1770), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1772), - [anon_sym_LF] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(1818), + [sym_comment] = ACTIONS(57), }, [459] = { - [sym__concat] = ACTIONS(1774), - [anon_sym_DQUOTE] = ACTIONS(1776), - [anon_sym_DOLLAR] = ACTIONS(1776), - [sym__string_content] = ACTIONS(1778), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1776), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1776), - [anon_sym_BQUOTE] = ACTIONS(1776), - [sym_comment] = ACTIONS(281), + [sym_concatenation] = STATE(913), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(913), + [anon_sym_RBRACE] = ACTIONS(1820), + [anon_sym_EQ] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1824), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(1826), + [anon_sym_COLON] = ACTIONS(1822), + [anon_sym_COLON_QMARK] = ACTIONS(1822), + [anon_sym_COLON_DASH] = ACTIONS(1822), + [anon_sym_PERCENT] = ACTIONS(1822), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [460] = { - [sym__concat] = ACTIONS(853), - [anon_sym_DQUOTE] = ACTIONS(855), - [anon_sym_DOLLAR] = ACTIONS(855), - [sym__string_content] = ACTIONS(853), + [sym_concatenation] = STATE(915), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(915), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_EQ] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1830), [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(855), - [anon_sym_BQUOTE] = ACTIONS(855), - [sym_comment] = ACTIONS(281), + [anon_sym_SLASH] = ACTIONS(1832), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [461] = { - [anon_sym_DQUOTE] = ACTIONS(1776), - [anon_sym_DOLLAR] = ACTIONS(1776), - [sym__string_content] = ACTIONS(1778), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1776), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1776), - [anon_sym_BQUOTE] = ACTIONS(1776), - [sym_comment] = ACTIONS(281), + [sym__simple_heredoc_body] = ACTIONS(1834), + [sym__heredoc_body_beginning] = ACTIONS(1834), + [sym_file_descriptor] = ACTIONS(1834), + [sym__concat] = ACTIONS(1834), + [ts_builtin_sym_end] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_PIPE] = ACTIONS(1836), + [anon_sym_RPAREN] = ACTIONS(1834), + [anon_sym_SEMI_SEMI] = ACTIONS(1834), + [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP_AMP] = ACTIONS(1834), + [anon_sym_PIPE_PIPE] = ACTIONS(1834), + [anon_sym_EQ_TILDE] = ACTIONS(1836), + [anon_sym_EQ_EQ] = ACTIONS(1836), + [anon_sym_LT] = ACTIONS(1836), + [anon_sym_GT] = ACTIONS(1836), + [anon_sym_GT_GT] = ACTIONS(1834), + [anon_sym_AMP_GT] = ACTIONS(1836), + [anon_sym_AMP_GT_GT] = ACTIONS(1834), + [anon_sym_LT_AMP] = ACTIONS(1834), + [anon_sym_GT_AMP] = ACTIONS(1834), + [anon_sym_LT_LT] = ACTIONS(1836), + [anon_sym_LT_LT_DASH] = ACTIONS(1834), + [anon_sym_LT_LT_LT] = ACTIONS(1834), + [sym__special_characters] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1836), + [sym_raw_string] = ACTIONS(1834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), + [anon_sym_BQUOTE] = ACTIONS(1834), + [anon_sym_LT_LPAREN] = ACTIONS(1834), + [anon_sym_GT_LPAREN] = ACTIONS(1834), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1836), + [anon_sym_LF] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1836), }, [462] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(1780), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(917), + [sym__concat] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1840), + [anon_sym_EQ] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [sym__special_characters] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1840), + [anon_sym_DOLLAR] = ACTIONS(1842), + [sym_raw_string] = ACTIONS(1840), + [anon_sym_POUND] = ACTIONS(1840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1840), + [anon_sym_COLON] = ACTIONS(1842), + [anon_sym_COLON_QMARK] = ACTIONS(1842), + [anon_sym_COLON_DASH] = ACTIONS(1842), + [anon_sym_PERCENT] = ACTIONS(1842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1840), + [anon_sym_BQUOTE] = ACTIONS(1840), + [anon_sym_LT_LPAREN] = ACTIONS(1840), + [anon_sym_GT_LPAREN] = ACTIONS(1840), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(1842), }, [463] = { - [sym_subscript] = STATE(901), - [sym_variable_name] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1784), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1788), - [anon_sym_QMARK] = ACTIONS(1788), - [anon_sym_0] = ACTIONS(1786), - [anon_sym__] = ACTIONS(1786), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(920), + [anon_sym_DQUOTE] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1846), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [464] = { - [sym_concatenation] = STATE(904), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(904), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1792), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_COLON] = ACTIONS(1792), - [anon_sym_COLON_QMARK] = ACTIONS(1792), - [anon_sym_COLON_DASH] = ACTIONS(1792), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_string] = STATE(922), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(1848), + [sym_raw_string] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(1848), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1852), + [anon_sym_STAR] = ACTIONS(1854), + [anon_sym_AT] = ACTIONS(1854), + [anon_sym_QMARK] = ACTIONS(1854), + [anon_sym_0] = ACTIONS(1852), + [anon_sym__] = ACTIONS(1852), }, [465] = { - [sym_concatenation] = STATE(907), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(907), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_EQ] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(1804), - [anon_sym_COLON] = ACTIONS(1800), - [anon_sym_COLON_QMARK] = ACTIONS(1800), - [anon_sym_COLON_DASH] = ACTIONS(1800), - [anon_sym_PERCENT] = ACTIONS(1800), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(917), + [sym__concat] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_EQ] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(1858), + [anon_sym_DQUOTE] = ACTIONS(1856), + [anon_sym_DOLLAR] = ACTIONS(1858), + [sym_raw_string] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(1856), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), + [anon_sym_COLON] = ACTIONS(1858), + [anon_sym_COLON_QMARK] = ACTIONS(1858), + [anon_sym_COLON_DASH] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1856), + [anon_sym_BQUOTE] = ACTIONS(1856), + [anon_sym_LT_LPAREN] = ACTIONS(1856), + [anon_sym_GT_LPAREN] = ACTIONS(1856), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(1858), }, [466] = { - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1808), - [anon_sym_SEMI_SEMI] = ACTIONS(1810), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1806), + [sym_subscript] = STATE(927), + [sym_variable_name] = ACTIONS(1860), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1864), + [anon_sym_DOLLAR] = ACTIONS(1864), + [anon_sym_POUND] = ACTIONS(1862), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1868), + [anon_sym_AT] = ACTIONS(1868), + [anon_sym_QMARK] = ACTIONS(1868), + [anon_sym_0] = ACTIONS(1866), + [anon_sym__] = ACTIONS(1866), }, [467] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1808), - [anon_sym_SEMI_SEMI] = ACTIONS(1810), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1806), + [sym_concatenation] = STATE(930), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(930), + [sym_regex] = ACTIONS(1870), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1874), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1874), + [anon_sym_COLON_QMARK] = ACTIONS(1874), + [anon_sym_COLON_DASH] = ACTIONS(1874), + [anon_sym_PERCENT] = ACTIONS(1874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [468] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(910), - [sym_c_style_for_statement] = STATE(910), - [sym_while_statement] = STATE(910), - [sym_if_statement] = STATE(910), - [sym_case_statement] = STATE(910), - [sym_function_definition] = STATE(910), - [sym_subshell] = STATE(910), - [sym_pipeline] = STATE(910), - [sym_list] = STATE(910), - [sym_negated_command] = STATE(910), - [sym_test_command] = STATE(910), - [sym_declaration_command] = STATE(910), - [sym_unset_command] = STATE(910), - [sym_command] = STATE(910), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(911), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), + [sym__terminated_statement] = STATE(933), + [sym_redirected_statement] = STATE(931), + [sym_for_statement] = STATE(931), + [sym_c_style_for_statement] = STATE(931), + [sym_while_statement] = STATE(931), + [sym_if_statement] = STATE(931), + [sym_case_statement] = STATE(931), + [sym_function_definition] = STATE(931), + [sym_compound_statement] = STATE(931), + [sym_subshell] = STATE(931), + [sym_pipeline] = STATE(931), + [sym_list] = STATE(931), + [sym_negated_command] = STATE(931), + [sym_test_command] = STATE(931), + [sym_declaration_command] = STATE(931), + [sym_unset_command] = STATE(931), + [sym_command] = STATE(931), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(932), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(933), + [aux_sym_command_repeat1] = STATE(87), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), + [sym_variable_name] = ACTIONS(129), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [469] = { - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(1814), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(1808), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1812), + [sym__terminated_statement] = STATE(936), + [sym_redirected_statement] = STATE(934), + [sym_for_statement] = STATE(934), + [sym_c_style_for_statement] = STATE(934), + [sym_while_statement] = STATE(934), + [sym_if_statement] = STATE(934), + [sym_case_statement] = STATE(934), + [sym_function_definition] = STATE(934), + [sym_compound_statement] = STATE(934), + [sym_subshell] = STATE(934), + [sym_pipeline] = STATE(934), + [sym_list] = STATE(934), + [sym_negated_command] = STATE(934), + [sym_test_command] = STATE(934), + [sym_declaration_command] = STATE(934), + [sym_unset_command] = STATE(934), + [sym_command] = STATE(934), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(935), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(936), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [470] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(1814), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(1808), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1812), + [sym__terminated_statement] = STATE(939), + [sym_redirected_statement] = STATE(937), + [sym_for_statement] = STATE(937), + [sym_c_style_for_statement] = STATE(937), + [sym_while_statement] = STATE(937), + [sym_if_statement] = STATE(937), + [sym_case_statement] = STATE(937), + [sym_function_definition] = STATE(937), + [sym_compound_statement] = STATE(937), + [sym_subshell] = STATE(937), + [sym_pipeline] = STATE(937), + [sym_list] = STATE(937), + [sym_negated_command] = STATE(937), + [sym_test_command] = STATE(937), + [sym_declaration_command] = STATE(937), + [sym_unset_command] = STATE(937), + [sym_command] = STATE(937), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(938), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(939), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [471] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(913), - [sym_c_style_for_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_case_statement] = STATE(913), - [sym_function_definition] = STATE(913), - [sym_subshell] = STATE(913), - [sym_pipeline] = STATE(913), - [sym_list] = STATE(913), - [sym_negated_command] = STATE(913), - [sym_test_command] = STATE(913), - [sym_declaration_command] = STATE(913), - [sym_unset_command] = STATE(913), - [sym_command] = STATE(913), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(914), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [472] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [sym__simple_heredoc_body] = ACTIONS(1882), + [sym__heredoc_body_beginning] = ACTIONS(1882), + [sym_file_descriptor] = ACTIONS(1882), + [sym__concat] = ACTIONS(1882), + [ts_builtin_sym_end] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_SEMI_SEMI] = ACTIONS(1882), + [anon_sym_PIPE_AMP] = ACTIONS(1882), + [anon_sym_AMP_AMP] = ACTIONS(1882), + [anon_sym_PIPE_PIPE] = ACTIONS(1882), + [anon_sym_EQ_TILDE] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1882), + [anon_sym_AMP_GT] = ACTIONS(1884), + [anon_sym_AMP_GT_GT] = ACTIONS(1882), + [anon_sym_LT_AMP] = ACTIONS(1882), + [anon_sym_GT_AMP] = ACTIONS(1882), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1882), + [anon_sym_LT_LT_LT] = ACTIONS(1882), + [sym__special_characters] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1882), + [anon_sym_BQUOTE] = ACTIONS(1882), + [anon_sym_LT_LPAREN] = ACTIONS(1882), + [anon_sym_GT_LPAREN] = ACTIONS(1882), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1884), }, [473] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(473), - [anon_sym_DQUOTE] = ACTIONS(1776), - [anon_sym_DOLLAR] = ACTIONS(1818), - [sym__string_content] = ACTIONS(1821), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1824), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1827), - [anon_sym_BQUOTE] = ACTIONS(1830), - [sym_comment] = ACTIONS(281), + [sym_concatenation] = STATE(915), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(915), + [sym_regex] = ACTIONS(1886), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_EQ] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1828), + [anon_sym_COLON_QMARK] = ACTIONS(1828), + [anon_sym_COLON_DASH] = ACTIONS(1828), + [anon_sym_PERCENT] = ACTIONS(1828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [474] = { - [sym_concatenation] = STATE(919), - [sym_string] = STATE(918), - [sym_simple_expansion] = STATE(918), - [sym_string_expansion] = STATE(918), - [sym_expansion] = STATE(918), - [sym_command_substitution] = STATE(918), - [sym_process_substitution] = STATE(918), - [sym__special_characters] = ACTIONS(1833), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_DOLLAR] = ACTIONS(171), - [sym_raw_string] = ACTIONS(1835), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), - [anon_sym_BQUOTE] = ACTIONS(179), - [anon_sym_LT_LPAREN] = ACTIONS(181), - [anon_sym_GT_LPAREN] = ACTIONS(181), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1835), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(1800), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [475] = { - [sym_concatenation] = STATE(929), - [sym_string] = STATE(924), - [sym_simple_expansion] = STATE(924), - [sym_string_expansion] = STATE(924), - [sym_expansion] = STATE(924), - [sym_command_substitution] = STATE(924), - [sym_process_substitution] = STATE(924), - [anon_sym_RBRACE] = ACTIONS(1837), - [sym__special_characters] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(1845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1845), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [476] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(1855), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(1890), + [sym__heredoc_body_beginning] = ACTIONS(1890), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [ts_builtin_sym_end] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = 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(1892), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1892), + [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(57), + [sym_word] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1892), }, [477] = { - [sym_concatenation] = STATE(933), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(933), - [anon_sym_RBRACE] = ACTIONS(1857), - [anon_sym_EQ] = ACTIONS(1859), - [anon_sym_DASH] = ACTIONS(1859), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(1863), - [anon_sym_COLON] = ACTIONS(1859), - [anon_sym_COLON_QMARK] = ACTIONS(1859), - [anon_sym_COLON_DASH] = ACTIONS(1859), - [anon_sym_PERCENT] = ACTIONS(1859), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1896), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1896), + [anon_sym_AMP] = ACTIONS(1896), }, [478] = { - [sym_concatenation] = STATE(935), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(935), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1867), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(1869), - [anon_sym_COLON] = ACTIONS(1865), - [anon_sym_COLON_QMARK] = ACTIONS(1865), - [anon_sym_COLON_DASH] = ACTIONS(1865), - [anon_sym_PERCENT] = ACTIONS(1865), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(945), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1900), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1898), }, [479] = { - [sym__simple_heredoc_body] = ACTIONS(1871), - [sym__heredoc_body_beginning] = ACTIONS(1871), - [sym_file_descriptor] = ACTIONS(1871), - [sym__concat] = ACTIONS(1871), - [ts_builtin_sym_end] = ACTIONS(1871), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_RPAREN] = ACTIONS(1871), - [anon_sym_SEMI_SEMI] = ACTIONS(1871), - [anon_sym_PIPE_AMP] = ACTIONS(1871), - [anon_sym_AMP_AMP] = ACTIONS(1871), - [anon_sym_PIPE_PIPE] = ACTIONS(1871), - [anon_sym_EQ_TILDE] = ACTIONS(1873), - [anon_sym_EQ_EQ] = ACTIONS(1873), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_GT] = ACTIONS(1873), - [anon_sym_GT_GT] = ACTIONS(1871), - [anon_sym_AMP_GT] = ACTIONS(1873), - [anon_sym_AMP_GT_GT] = ACTIONS(1871), - [anon_sym_LT_AMP] = ACTIONS(1871), - [anon_sym_GT_AMP] = ACTIONS(1871), - [anon_sym_LT_LT] = ACTIONS(1873), - [anon_sym_LT_LT_DASH] = ACTIONS(1871), - [anon_sym_LT_LT_LT] = ACTIONS(1871), - [sym__special_characters] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1871), - [anon_sym_DOLLAR] = ACTIONS(1873), - [sym_raw_string] = ACTIONS(1871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), - [anon_sym_BQUOTE] = ACTIONS(1871), - [anon_sym_LT_LPAREN] = ACTIONS(1871), - [anon_sym_GT_LPAREN] = ACTIONS(1871), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1873), - [anon_sym_LF] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1873), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(945), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_SEMI_SEMI] = ACTIONS(1900), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1898), }, [480] = { - [aux_sym_concatenation_repeat1] = STATE(937), - [sym__concat] = ACTIONS(1875), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_EQ] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [sym__special_characters] = ACTIONS(1879), - [anon_sym_DQUOTE] = ACTIONS(1877), - [anon_sym_DOLLAR] = ACTIONS(1879), - [sym_raw_string] = ACTIONS(1877), - [anon_sym_POUND] = ACTIONS(1877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1877), - [anon_sym_COLON] = ACTIONS(1879), - [anon_sym_COLON_QMARK] = ACTIONS(1879), - [anon_sym_COLON_DASH] = ACTIONS(1879), - [anon_sym_PERCENT] = ACTIONS(1879), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1877), - [anon_sym_BQUOTE] = ACTIONS(1877), - [anon_sym_LT_LPAREN] = ACTIONS(1877), - [anon_sym_GT_LPAREN] = ACTIONS(1877), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(1879), + [sym_variable_assignment] = STATE(664), + [sym_subscript] = STATE(261), + [sym_concatenation] = STATE(664), + [sym_string] = STATE(260), + [sym_simple_expansion] = STATE(260), + [sym_string_expansion] = STATE(260), + [sym_expansion] = STATE(260), + [sym_command_substitution] = STATE(260), + [sym_process_substitution] = STATE(260), + [aux_sym_declaration_command_repeat1] = STATE(664), + [sym__simple_heredoc_body] = ACTIONS(701), + [sym__heredoc_body_beginning] = ACTIONS(701), + [sym_file_descriptor] = ACTIONS(701), + [sym_variable_name] = ACTIONS(475), + [anon_sym_SEMI] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(703), + [anon_sym_SEMI_SEMI] = ACTIONS(701), + [anon_sym_PIPE_AMP] = ACTIONS(701), + [anon_sym_AMP_AMP] = ACTIONS(701), + [anon_sym_PIPE_PIPE] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(703), + [anon_sym_GT_GT] = ACTIONS(701), + [anon_sym_AMP_GT] = ACTIONS(703), + [anon_sym_AMP_GT_GT] = ACTIONS(701), + [anon_sym_LT_AMP] = ACTIONS(701), + [anon_sym_GT_AMP] = ACTIONS(701), + [anon_sym_LT_LT] = ACTIONS(703), + [anon_sym_LT_LT_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(701), + [sym__special_characters] = ACTIONS(477), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(479), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(701), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1291), + [sym_word] = ACTIONS(483), + [anon_sym_LF] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), }, [481] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(940), - [anon_sym_DQUOTE] = ACTIONS(1881), - [anon_sym_DOLLAR] = ACTIONS(1883), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym_concatenation] = STATE(666), + [sym_string] = STATE(264), + [sym_simple_expansion] = STATE(264), + [sym_string_expansion] = STATE(264), + [sym_expansion] = STATE(264), + [sym_command_substitution] = STATE(264), + [sym_process_substitution] = STATE(264), + [aux_sym_unset_command_repeat1] = STATE(666), + [sym__simple_heredoc_body] = ACTIONS(739), + [sym__heredoc_body_beginning] = ACTIONS(739), + [sym_file_descriptor] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_SEMI_SEMI] = ACTIONS(739), + [anon_sym_PIPE_AMP] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(739), + [anon_sym_PIPE_PIPE] = ACTIONS(739), + [anon_sym_LT] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(741), + [anon_sym_GT_GT] = ACTIONS(739), + [anon_sym_AMP_GT] = ACTIONS(741), + [anon_sym_AMP_GT_GT] = ACTIONS(739), + [anon_sym_LT_AMP] = ACTIONS(739), + [anon_sym_GT_AMP] = ACTIONS(739), + [anon_sym_LT_LT] = ACTIONS(741), + [anon_sym_LT_LT_DASH] = ACTIONS(739), + [anon_sym_LT_LT_LT] = ACTIONS(739), + [sym__special_characters] = ACTIONS(485), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_DOLLAR] = ACTIONS(215), + [sym_raw_string] = ACTIONS(487), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(219), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(221), + [anon_sym_BQUOTE] = ACTIONS(739), + [anon_sym_LT_LPAREN] = ACTIONS(225), + [anon_sym_GT_LPAREN] = ACTIONS(225), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1293), + [sym_word] = ACTIONS(491), + [anon_sym_LF] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(741), }, [482] = { - [sym_string] = STATE(942), - [anon_sym_DASH] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(1885), - [sym_raw_string] = ACTIONS(1887), - [anon_sym_POUND] = ACTIONS(1885), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1891), - [anon_sym_AT] = ACTIONS(1891), - [anon_sym_QMARK] = ACTIONS(1891), - [anon_sym_0] = ACTIONS(1889), - [anon_sym__] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_GT] = ACTIONS(1902), + [anon_sym_GT_GT] = ACTIONS(1904), + [anon_sym_AMP_GT] = ACTIONS(1902), + [anon_sym_AMP_GT_GT] = ACTIONS(1904), + [anon_sym_LT_AMP] = ACTIONS(1904), + [anon_sym_GT_AMP] = ACTIONS(1904), + [sym_comment] = ACTIONS(57), }, [483] = { - [aux_sym_concatenation_repeat1] = STATE(937), - [sym__concat] = ACTIONS(1875), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_EQ] = ACTIONS(1895), - [anon_sym_DASH] = ACTIONS(1895), - [sym__special_characters] = ACTIONS(1895), - [anon_sym_DQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR] = ACTIONS(1895), - [sym_raw_string] = ACTIONS(1893), - [anon_sym_POUND] = ACTIONS(1893), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1893), - [anon_sym_COLON] = ACTIONS(1895), - [anon_sym_COLON_QMARK] = ACTIONS(1895), - [anon_sym_COLON_DASH] = ACTIONS(1895), - [anon_sym_PERCENT] = ACTIONS(1895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1893), - [anon_sym_BQUOTE] = ACTIONS(1893), - [anon_sym_LT_LPAREN] = ACTIONS(1893), - [anon_sym_GT_LPAREN] = ACTIONS(1893), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(1895), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [484] = { - [sym_subscript] = STATE(947), - [sym_variable_name] = ACTIONS(1897), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_DOLLAR] = ACTIONS(1901), - [anon_sym_POUND] = ACTIONS(1899), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1903), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_AT] = ACTIONS(1905), - [anon_sym_QMARK] = ACTIONS(1905), - [anon_sym_0] = ACTIONS(1903), - [anon_sym__] = ACTIONS(1903), + [sym_redirected_statement] = STATE(947), + [sym_for_statement] = STATE(947), + [sym_c_style_for_statement] = STATE(947), + [sym_while_statement] = STATE(947), + [sym_if_statement] = STATE(947), + [sym_case_statement] = STATE(947), + [sym_function_definition] = STATE(947), + [sym_compound_statement] = STATE(947), + [sym_subshell] = STATE(947), + [sym_pipeline] = STATE(947), + [sym_list] = STATE(947), + [sym_negated_command] = STATE(947), + [sym_test_command] = STATE(947), + [sym_declaration_command] = STATE(947), + [sym_unset_command] = STATE(947), + [sym_command] = STATE(947), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(948), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [485] = { - [sym_concatenation] = STATE(950), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(950), - [sym_regex] = ACTIONS(1907), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_EQ] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1913), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1911), - [anon_sym_COLON_QMARK] = ACTIONS(1911), - [anon_sym_COLON_DASH] = ACTIONS(1911), - [anon_sym_PERCENT] = ACTIONS(1911), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_redirected_statement] = STATE(949), + [sym_for_statement] = STATE(949), + [sym_c_style_for_statement] = STATE(949), + [sym_while_statement] = STATE(949), + [sym_if_statement] = STATE(949), + [sym_case_statement] = STATE(949), + [sym_function_definition] = STATE(949), + [sym_compound_statement] = STATE(949), + [sym_subshell] = STATE(949), + [sym_pipeline] = STATE(949), + [sym_list] = STATE(949), + [sym_negated_command] = STATE(949), + [sym_test_command] = STATE(949), + [sym_declaration_command] = STATE(949), + [sym_unset_command] = STATE(949), + [sym_command] = STATE(949), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(950), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [486] = { - [sym__terminated_statement] = STATE(953), - [sym_for_statement] = STATE(951), - [sym_c_style_for_statement] = STATE(951), - [sym_while_statement] = STATE(951), - [sym_if_statement] = STATE(951), - [sym_case_statement] = STATE(951), - [sym_function_definition] = STATE(951), - [sym_subshell] = STATE(951), - [sym_pipeline] = STATE(951), - [sym_list] = STATE(951), - [sym_negated_command] = STATE(951), - [sym_test_command] = STATE(951), - [sym_declaration_command] = STATE(951), - [sym_unset_command] = STATE(951), - [sym_command] = STATE(951), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(952), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(953), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_concatenation] = STATE(511), + [sym_string] = STATE(952), + [sym_simple_expansion] = STATE(952), + [sym_string_expansion] = STATE(952), + [sym_expansion] = STATE(952), + [sym_command_substitution] = STATE(952), + [sym_process_substitution] = STATE(952), + [sym__special_characters] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(1908), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1908), }, [487] = { - [sym__terminated_statement] = STATE(956), - [sym_for_statement] = STATE(954), - [sym_c_style_for_statement] = STATE(954), - [sym_while_statement] = STATE(954), - [sym_if_statement] = STATE(954), - [sym_case_statement] = STATE(954), - [sym_function_definition] = STATE(954), - [sym_subshell] = STATE(954), - [sym_pipeline] = STATE(954), - [sym_list] = STATE(954), - [sym_negated_command] = STATE(954), - [sym_test_command] = STATE(954), - [sym_declaration_command] = STATE(954), - [sym_unset_command] = STATE(954), - [sym_command] = STATE(954), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(955), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(956), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym_concatenation] = STATE(515), + [sym_string] = STATE(954), + [sym_simple_expansion] = STATE(954), + [sym_string_expansion] = STATE(954), + [sym_expansion] = STATE(954), + [sym_command_substitution] = STATE(954), + [sym_process_substitution] = STATE(954), + [sym__special_characters] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(1912), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1912), }, [488] = { - [sym__terminated_statement] = STATE(959), - [sym_for_statement] = STATE(957), - [sym_c_style_for_statement] = STATE(957), - [sym_while_statement] = STATE(957), - [sym_if_statement] = STATE(957), - [sym_case_statement] = STATE(957), - [sym_function_definition] = STATE(957), - [sym_subshell] = STATE(957), - [sym_pipeline] = STATE(957), - [sym_list] = STATE(957), - [sym_negated_command] = STATE(957), - [sym_test_command] = STATE(957), - [sym_declaration_command] = STATE(957), - [sym_unset_command] = STATE(957), - [sym_command] = STATE(957), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(958), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(959), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_SEMI_SEMI] = ACTIONS(1916), + [anon_sym_BQUOTE] = ACTIONS(1888), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1916), }, [489] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(956), + [sym_heredoc_redirect] = STATE(956), + [sym_herestring_redirect] = STATE(956), + [aux_sym_redirected_statement_repeat1] = STATE(956), + [sym__simple_heredoc_body] = ACTIONS(947), + [sym__heredoc_body_beginning] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_SEMI_SEMI] = ACTIONS(947), + [anon_sym_PIPE_AMP] = ACTIONS(947), + [anon_sym_AMP_AMP] = ACTIONS(947), + [anon_sym_PIPE_PIPE] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(947), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(947), + [anon_sym_AMP] = ACTIONS(949), }, [490] = { - [sym__simple_heredoc_body] = ACTIONS(1919), - [sym__heredoc_body_beginning] = ACTIONS(1919), - [sym_file_descriptor] = ACTIONS(1919), - [sym__concat] = ACTIONS(1919), - [ts_builtin_sym_end] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1919), - [anon_sym_SEMI_SEMI] = ACTIONS(1919), - [anon_sym_PIPE_AMP] = ACTIONS(1919), - [anon_sym_AMP_AMP] = ACTIONS(1919), - [anon_sym_PIPE_PIPE] = ACTIONS(1919), - [anon_sym_EQ_TILDE] = ACTIONS(1921), - [anon_sym_EQ_EQ] = ACTIONS(1921), - [anon_sym_LT] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1921), - [anon_sym_GT_GT] = ACTIONS(1919), - [anon_sym_AMP_GT] = ACTIONS(1921), - [anon_sym_AMP_GT_GT] = ACTIONS(1919), - [anon_sym_LT_AMP] = ACTIONS(1919), - [anon_sym_GT_AMP] = ACTIONS(1919), - [anon_sym_LT_LT] = ACTIONS(1921), - [anon_sym_LT_LT_DASH] = ACTIONS(1919), - [anon_sym_LT_LT_LT] = ACTIONS(1919), - [sym__special_characters] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1921), - [sym_raw_string] = ACTIONS(1919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), - [anon_sym_BQUOTE] = ACTIONS(1919), - [anon_sym_LT_LPAREN] = ACTIONS(1919), - [anon_sym_GT_LPAREN] = ACTIONS(1919), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1921), - [anon_sym_LF] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1921), + [sym_concatenation] = STATE(683), + [sym_string] = STATE(279), + [sym_simple_expansion] = STATE(279), + [sym_string_expansion] = STATE(279), + [sym_expansion] = STATE(279), + [sym_command_substitution] = STATE(279), + [sym_process_substitution] = STATE(279), + [aux_sym_command_repeat2] = STATE(683), + [sym__simple_heredoc_body] = ACTIONS(965), + [sym__heredoc_body_beginning] = ACTIONS(965), + [sym_file_descriptor] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(965), + [anon_sym_PIPE_AMP] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(965), + [anon_sym_EQ_TILDE] = ACTIONS(513), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(965), + [anon_sym_AMP_GT] = ACTIONS(967), + [anon_sym_AMP_GT_GT] = ACTIONS(965), + [anon_sym_LT_AMP] = ACTIONS(965), + [anon_sym_GT_AMP] = ACTIONS(965), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(965), + [anon_sym_LT_LT_LT] = ACTIONS(965), + [sym__special_characters] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(965), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(519), + [anon_sym_LF] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), }, [491] = { - [sym_concatenation] = STATE(935), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(935), - [sym_regex] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1865), - [anon_sym_DASH] = ACTIONS(1865), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1867), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1865), - [anon_sym_COLON_QMARK] = ACTIONS(1865), - [anon_sym_COLON_DASH] = ACTIONS(1865), - [anon_sym_PERCENT] = ACTIONS(1865), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(958), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(1920), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(1888), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1918), }, [492] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(958), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(1920), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(1888), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1918), }, [493] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(1925), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_concatenation] = STATE(959), + [sym_string] = STATE(279), + [sym_simple_expansion] = STATE(279), + [sym_string_expansion] = STATE(279), + [sym_expansion] = STATE(279), + [sym_command_substitution] = STATE(279), + [sym_process_substitution] = STATE(279), + [aux_sym_command_repeat2] = STATE(959), + [sym__simple_heredoc_body] = ACTIONS(965), + [sym__heredoc_body_beginning] = ACTIONS(965), + [sym_file_descriptor] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(965), + [anon_sym_PIPE_AMP] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(965), + [anon_sym_EQ_TILDE] = ACTIONS(513), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(965), + [anon_sym_AMP_GT] = ACTIONS(967), + [anon_sym_AMP_GT_GT] = ACTIONS(965), + [anon_sym_LT_AMP] = ACTIONS(965), + [anon_sym_GT_AMP] = ACTIONS(965), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(965), + [anon_sym_LT_LT_LT] = ACTIONS(965), + [sym__special_characters] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(965), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(519), + [anon_sym_LF] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), }, [494] = { - [sym__simple_heredoc_body] = ACTIONS(1927), - [sym__heredoc_body_beginning] = ACTIONS(1927), - [sym_file_descriptor] = ACTIONS(1927), - [sym__concat] = ACTIONS(1927), - [ts_builtin_sym_end] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_SEMI_SEMI] = 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(1929), - [anon_sym_EQ_EQ] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1929), - [anon_sym_GT_GT] = ACTIONS(1927), - [anon_sym_AMP_GT] = ACTIONS(1929), - [anon_sym_AMP_GT_GT] = ACTIONS(1927), - [anon_sym_LT_AMP] = ACTIONS(1927), - [anon_sym_GT_AMP] = ACTIONS(1927), - [anon_sym_LT_LT] = ACTIONS(1929), - [anon_sym_LT_LT_DASH] = ACTIONS(1927), - [anon_sym_LT_LT_LT] = ACTIONS(1927), - [sym__special_characters] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1929), - [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(55), - [sym_word] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1927), - [anon_sym_AMP] = ACTIONS(1929), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(1922), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [495] = { - [anon_sym_SEMI] = ACTIONS(1931), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1925), - [anon_sym_SEMI_SEMI] = ACTIONS(1933), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1933), - [anon_sym_AMP] = ACTIONS(1931), + [sym__simple_heredoc_body] = ACTIONS(1924), + [sym__heredoc_body_beginning] = ACTIONS(1924), + [sym_file_descriptor] = ACTIONS(1924), + [sym__concat] = ACTIONS(1924), + [ts_builtin_sym_end] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_RPAREN] = ACTIONS(1924), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [anon_sym_PIPE_AMP] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [anon_sym_EQ_TILDE] = ACTIONS(1926), + [anon_sym_EQ_EQ] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_GT_GT] = ACTIONS(1924), + [anon_sym_AMP_GT] = ACTIONS(1926), + [anon_sym_AMP_GT_GT] = ACTIONS(1924), + [anon_sym_LT_AMP] = ACTIONS(1924), + [anon_sym_GT_AMP] = ACTIONS(1924), + [anon_sym_LT_LT] = ACTIONS(1926), + [anon_sym_LT_LT_DASH] = ACTIONS(1924), + [anon_sym_LT_LT_LT] = ACTIONS(1924), + [sym__special_characters] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(1924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), + [anon_sym_BQUOTE] = ACTIONS(1924), + [anon_sym_LT_LPAREN] = ACTIONS(1924), + [anon_sym_GT_LPAREN] = ACTIONS(1924), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1926), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1926), }, [496] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1931), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1925), - [anon_sym_SEMI_SEMI] = ACTIONS(1933), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1933), - [anon_sym_AMP] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym_RPAREN] = ACTIONS(1922), + [anon_sym_SEMI_SEMI] = ACTIONS(1930), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1930), + [anon_sym_AMP] = ACTIONS(1930), }, [497] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(1935), - [anon_sym_AMP_AMP] = ACTIONS(493), - [anon_sym_PIPE_PIPE] = ACTIONS(493), - [anon_sym_EQ_TILDE] = ACTIONS(495), - [anon_sym_EQ_EQ] = ACTIONS(495), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(493), - [anon_sym_LT] = ACTIONS(497), - [anon_sym_GT] = ACTIONS(497), - [anon_sym_BANG_EQ] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(497), - [anon_sym_DASH] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(493), - [anon_sym_LT_EQ] = ACTIONS(493), - [anon_sym_GT_EQ] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(493), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(963), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1922), + [anon_sym_SEMI_SEMI] = ACTIONS(1934), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1932), }, [498] = { - [sym_do_group] = STATE(965), - [anon_sym_do] = ACTIONS(525), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(963), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1922), + [anon_sym_SEMI_SEMI] = ACTIONS(1934), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1932), }, [499] = { - [sym_compound_statement] = STATE(967), - [anon_sym_LPAREN] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(595), - [sym_comment] = ACTIONS(55), + [sym_compound_statement] = STATE(964), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(57), }, [500] = { - [anon_sym_AMP_AMP] = ACTIONS(681), - [anon_sym_PIPE_PIPE] = ACTIONS(681), - [anon_sym_RBRACK] = ACTIONS(1935), - [anon_sym_EQ_TILDE] = ACTIONS(683), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(685), - [anon_sym_PLUS_EQ] = ACTIONS(681), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(681), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(681), - [anon_sym_LT_EQ] = ACTIONS(681), - [anon_sym_GT_EQ] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(681), + [ts_builtin_sym_end] = ACTIONS(1936), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_RPAREN] = ACTIONS(1936), + [anon_sym_SEMI_SEMI] = ACTIONS(1936), + [anon_sym_BQUOTE] = ACTIONS(1936), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1936), }, [501] = { - [anon_sym_AMP_AMP] = ACTIONS(689), - [anon_sym_PIPE_PIPE] = ACTIONS(689), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1935), - [anon_sym_EQ_TILDE] = ACTIONS(691), - [anon_sym_EQ_EQ] = ACTIONS(691), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_PLUS_EQ] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(693), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG_EQ] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_DASH_EQ] = ACTIONS(689), - [anon_sym_LT_EQ] = ACTIONS(689), - [anon_sym_GT_EQ] = ACTIONS(689), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(1940), + [anon_sym_POUND] = ACTIONS(1940), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1942), + [anon_sym_STAR] = ACTIONS(1944), + [anon_sym_AT] = ACTIONS(1944), + [anon_sym_QMARK] = ACTIONS(1944), + [anon_sym_0] = ACTIONS(1942), + [anon_sym__] = ACTIONS(1942), }, [502] = { - [sym_variable_assignment] = STATE(692), - [sym_subscript] = STATE(277), - [sym_concatenation] = STATE(692), - [sym_string] = STATE(276), - [sym_simple_expansion] = STATE(276), - [sym_string_expansion] = STATE(276), - [sym_expansion] = STATE(276), - [sym_command_substitution] = STATE(276), - [sym_process_substitution] = STATE(276), - [aux_sym_declaration_command_repeat1] = STATE(692), - [sym_variable_name] = ACTIONS(505), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_SEMI_SEMI] = ACTIONS(729), - [anon_sym_PIPE_AMP] = ACTIONS(729), - [anon_sym_AMP_AMP] = ACTIONS(729), - [anon_sym_PIPE_PIPE] = ACTIONS(729), - [sym__special_characters] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR] = ACTIONS(207), - [sym_raw_string] = ACTIONS(509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_BQUOTE] = ACTIONS(729), - [anon_sym_LT_LPAREN] = ACTIONS(217), - [anon_sym_GT_LPAREN] = ACTIONS(217), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1330), - [sym_word] = ACTIONS(513), - [anon_sym_LF] = ACTIONS(729), - [anon_sym_AMP] = ACTIONS(731), + [sym_subscript] = STATE(970), + [sym_variable_name] = ACTIONS(1946), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1950), + [anon_sym_DOLLAR] = ACTIONS(1950), + [anon_sym_POUND] = ACTIONS(1948), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1952), + [anon_sym_STAR] = ACTIONS(1954), + [anon_sym_AT] = ACTIONS(1954), + [anon_sym_QMARK] = ACTIONS(1954), + [anon_sym_0] = ACTIONS(1952), + [anon_sym__] = ACTIONS(1952), }, [503] = { - [sym_concatenation] = STATE(694), - [sym_string] = STATE(280), - [sym_simple_expansion] = STATE(280), - [sym_string_expansion] = STATE(280), - [sym_expansion] = STATE(280), - [sym_command_substitution] = STATE(280), - [sym_process_substitution] = STATE(280), - [aux_sym_unset_command_repeat1] = STATE(694), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_SEMI_SEMI] = ACTIONS(767), - [anon_sym_PIPE_AMP] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(767), - [anon_sym_PIPE_PIPE] = ACTIONS(767), - [sym__special_characters] = ACTIONS(515), - [anon_sym_DQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [sym_raw_string] = ACTIONS(517), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(767), - [anon_sym_LT_LPAREN] = ACTIONS(241), - [anon_sym_GT_LPAREN] = ACTIONS(241), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1332), - [sym_word] = ACTIONS(521), - [anon_sym_LF] = ACTIONS(767), - [anon_sym_AMP] = ACTIONS(769), + [sym_simple_expansion] = STATE(972), + [sym_expansion] = STATE(972), + [aux_sym_heredoc_body_repeat1] = STATE(972), + [sym__heredoc_body_middle] = ACTIONS(1956), + [sym__heredoc_body_end] = ACTIONS(1958), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(921), + [sym_comment] = ACTIONS(57), }, [504] = { - [anon_sym_RPAREN] = ACTIONS(1939), - [sym_comment] = ACTIONS(55), - }, - [505] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(1925), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), - }, - [506] = { - [sym_for_statement] = STATE(521), - [sym_c_style_for_statement] = STATE(521), - [sym_while_statement] = STATE(521), - [sym_if_statement] = STATE(521), - [sym_case_statement] = STATE(521), - [sym_function_definition] = STATE(521), - [sym_subshell] = STATE(521), - [sym_pipeline] = STATE(521), - [sym_list] = STATE(521), - [sym_negated_command] = STATE(521), - [sym_test_command] = STATE(521), - [sym_declaration_command] = STATE(521), - [sym_unset_command] = STATE(521), - [sym_command] = STATE(521), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(969), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), - }, - [507] = { - [sym_for_statement] = STATE(970), - [sym_c_style_for_statement] = STATE(970), - [sym_while_statement] = STATE(970), - [sym_if_statement] = STATE(970), - [sym_case_statement] = STATE(970), - [sym_function_definition] = STATE(970), - [sym_subshell] = STATE(970), - [sym_pipeline] = STATE(970), - [sym_list] = STATE(970), - [sym_negated_command] = STATE(970), - [sym_test_command] = STATE(970), - [sym_declaration_command] = STATE(970), - [sym_unset_command] = STATE(970), - [sym_command] = STATE(970), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(971), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), - }, - [508] = { - [anon_sym_LT] = ACTIONS(1941), - [anon_sym_GT] = ACTIONS(1941), - [anon_sym_GT_GT] = ACTIONS(1943), - [anon_sym_AMP_GT] = ACTIONS(1941), - [anon_sym_AMP_GT_GT] = ACTIONS(1943), - [anon_sym_LT_AMP] = ACTIONS(1943), - [anon_sym_GT_AMP] = ACTIONS(1943), - [sym_comment] = ACTIONS(55), - }, - [509] = { - [sym_concatenation] = STATE(535), + [sym_concatenation] = STATE(975), [sym_string] = STATE(974), [sym_simple_expansion] = STATE(974), [sym_string_expansion] = STATE(974), [sym_expansion] = STATE(974), [sym_command_substitution] = STATE(974), [sym_process_substitution] = STATE(974), - [sym__special_characters] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(1947), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1947), + [sym__special_characters] = ACTIONS(1960), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(1962), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1962), + }, + [505] = { + [sym_file_redirect] = STATE(180), + [sym_heredoc_redirect] = STATE(180), + [sym_herestring_redirect] = STATE(180), + [aux_sym_redirected_statement_repeat1] = STATE(180), + [sym__simple_heredoc_body] = ACTIONS(1964), + [sym__heredoc_body_beginning] = ACTIONS(1964), + [sym_file_descriptor] = ACTIONS(1964), + [ts_builtin_sym_end] = ACTIONS(1964), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_SEMI_SEMI] = ACTIONS(1964), + [anon_sym_PIPE_AMP] = ACTIONS(1964), + [anon_sym_AMP_AMP] = ACTIONS(1964), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_LT] = ACTIONS(1966), + [anon_sym_GT] = ACTIONS(1966), + [anon_sym_GT_GT] = ACTIONS(1964), + [anon_sym_AMP_GT] = ACTIONS(1966), + [anon_sym_AMP_GT_GT] = ACTIONS(1964), + [anon_sym_LT_AMP] = ACTIONS(1964), + [anon_sym_GT_AMP] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(1966), + [anon_sym_LT_LT_DASH] = ACTIONS(1964), + [anon_sym_LT_LT_LT] = ACTIONS(1964), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1964), + [anon_sym_AMP] = ACTIONS(1966), + }, + [506] = { + [sym_file_redirect] = STATE(180), + [sym_heredoc_redirect] = STATE(180), + [sym_herestring_redirect] = STATE(180), + [aux_sym_redirected_statement_repeat1] = STATE(180), + [sym__simple_heredoc_body] = ACTIONS(1964), + [sym__heredoc_body_beginning] = ACTIONS(1964), + [sym_file_descriptor] = ACTIONS(1964), + [sym_variable_name] = ACTIONS(339), + [ts_builtin_sym_end] = ACTIONS(1964), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_SEMI_SEMI] = ACTIONS(1964), + [anon_sym_PIPE_AMP] = ACTIONS(1964), + [anon_sym_AMP_AMP] = ACTIONS(1964), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_LT] = ACTIONS(1966), + [anon_sym_GT] = ACTIONS(1966), + [anon_sym_GT_GT] = ACTIONS(1964), + [anon_sym_AMP_GT] = ACTIONS(1966), + [anon_sym_AMP_GT_GT] = ACTIONS(1964), + [anon_sym_LT_AMP] = ACTIONS(1964), + [anon_sym_GT_AMP] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(1966), + [anon_sym_LT_LT_DASH] = ACTIONS(1964), + [anon_sym_LT_LT_LT] = ACTIONS(1964), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1964), + [anon_sym_AMP] = ACTIONS(1966), + }, + [507] = { + [sym_file_redirect] = STATE(180), + [sym_heredoc_redirect] = STATE(180), + [sym_herestring_redirect] = STATE(180), + [aux_sym_redirected_statement_repeat1] = STATE(180), + [sym__simple_heredoc_body] = ACTIONS(1968), + [sym__heredoc_body_beginning] = ACTIONS(1968), + [sym_file_descriptor] = ACTIONS(1968), + [ts_builtin_sym_end] = ACTIONS(1968), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(309), + [anon_sym_SEMI_SEMI] = ACTIONS(1968), + [anon_sym_PIPE_AMP] = ACTIONS(313), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(1970), + [anon_sym_GT_GT] = ACTIONS(1968), + [anon_sym_AMP_GT] = ACTIONS(1970), + [anon_sym_AMP_GT_GT] = ACTIONS(1968), + [anon_sym_LT_AMP] = ACTIONS(1968), + [anon_sym_GT_AMP] = ACTIONS(1968), + [anon_sym_LT_LT] = ACTIONS(1970), + [anon_sym_LT_LT_DASH] = ACTIONS(1968), + [anon_sym_LT_LT_LT] = ACTIONS(1968), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1970), + }, + [508] = { + [sym_file_redirect] = STATE(180), + [sym_heredoc_redirect] = STATE(180), + [sym_herestring_redirect] = STATE(180), + [aux_sym_redirected_statement_repeat1] = STATE(180), + [sym__simple_heredoc_body] = ACTIONS(1968), + [sym__heredoc_body_beginning] = ACTIONS(1968), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [ts_builtin_sym_end] = ACTIONS(1968), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(309), + [anon_sym_SEMI_SEMI] = ACTIONS(1968), + [anon_sym_PIPE_AMP] = ACTIONS(313), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(1970), + [anon_sym_LT_LT_DASH] = ACTIONS(1968), + [anon_sym_LT_LT_LT] = ACTIONS(1968), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1970), + }, + [509] = { + [aux_sym_concatenation_repeat1] = STATE(976), + [sym__simple_heredoc_body] = ACTIONS(745), + [sym__heredoc_body_beginning] = ACTIONS(745), + [sym_file_descriptor] = ACTIONS(745), + [sym__concat] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(745), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(749), + [anon_sym_SEMI_SEMI] = ACTIONS(745), + [anon_sym_PIPE_AMP] = ACTIONS(745), + [anon_sym_AMP_AMP] = ACTIONS(745), + [anon_sym_PIPE_PIPE] = ACTIONS(745), + [anon_sym_LT] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(749), + [anon_sym_GT_GT] = ACTIONS(745), + [anon_sym_AMP_GT] = ACTIONS(749), + [anon_sym_AMP_GT_GT] = ACTIONS(745), + [anon_sym_LT_AMP] = ACTIONS(745), + [anon_sym_GT_AMP] = ACTIONS(745), + [anon_sym_LT_LT] = ACTIONS(749), + [anon_sym_LT_LT_DASH] = ACTIONS(745), + [anon_sym_LT_LT_LT] = ACTIONS(745), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(745), + [anon_sym_AMP] = ACTIONS(749), }, [510] = { - [sym_concatenation] = STATE(539), - [sym_string] = STATE(976), - [sym_simple_expansion] = STATE(976), - [sym_string_expansion] = STATE(976), - [sym_expansion] = STATE(976), - [sym_command_substitution] = STATE(976), - [sym_process_substitution] = STATE(976), - [sym__special_characters] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(1951), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1951), + [aux_sym_concatenation_repeat1] = STATE(976), + [sym__simple_heredoc_body] = ACTIONS(763), + [sym__heredoc_body_beginning] = ACTIONS(763), + [sym_file_descriptor] = ACTIONS(763), + [sym__concat] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_SEMI_SEMI] = ACTIONS(763), + [anon_sym_PIPE_AMP] = ACTIONS(763), + [anon_sym_AMP_AMP] = ACTIONS(763), + [anon_sym_PIPE_PIPE] = ACTIONS(763), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(763), + [anon_sym_AMP_GT] = ACTIONS(765), + [anon_sym_AMP_GT_GT] = ACTIONS(763), + [anon_sym_LT_AMP] = ACTIONS(763), + [anon_sym_GT_AMP] = ACTIONS(763), + [anon_sym_LT_LT] = ACTIONS(765), + [anon_sym_LT_LT_DASH] = ACTIONS(763), + [anon_sym_LT_LT_LT] = ACTIONS(763), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(763), + [anon_sym_AMP] = ACTIONS(765), }, [511] = { - [sym_file_redirect] = STATE(977), - [sym_heredoc_redirect] = STATE(977), - [sym_heredoc_body] = STATE(540), - [sym_herestring_redirect] = STATE(977), - [aux_sym_while_statement_repeat1] = STATE(977), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_SEMI_SEMI] = ACTIONS(989), - [anon_sym_PIPE_AMP] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(989), - [anon_sym_PIPE_PIPE] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(929), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(933), - [anon_sym_BQUOTE] = ACTIONS(989), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [sym__simple_heredoc_body] = ACTIONS(763), + [sym__heredoc_body_beginning] = ACTIONS(763), + [sym_file_descriptor] = ACTIONS(763), + [ts_builtin_sym_end] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_esac] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_RPAREN] = ACTIONS(763), + [anon_sym_SEMI_SEMI] = ACTIONS(763), + [anon_sym_PIPE_AMP] = ACTIONS(763), + [anon_sym_AMP_AMP] = ACTIONS(763), + [anon_sym_PIPE_PIPE] = ACTIONS(763), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(763), + [anon_sym_AMP_GT] = ACTIONS(765), + [anon_sym_AMP_GT_GT] = ACTIONS(763), + [anon_sym_LT_AMP] = ACTIONS(763), + [anon_sym_GT_AMP] = ACTIONS(763), + [anon_sym_LT_LT] = ACTIONS(765), + [anon_sym_LT_LT_DASH] = ACTIONS(763), + [anon_sym_LT_LT_LT] = ACTIONS(763), + [anon_sym_BQUOTE] = ACTIONS(763), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(763), + [anon_sym_AMP] = ACTIONS(765), }, [512] = { - [sym_file_redirect] = STATE(978), - [sym_heredoc_redirect] = STATE(978), - [sym_heredoc_body] = STATE(540), - [sym_herestring_redirect] = STATE(978), - [sym_concatenation] = STATE(712), - [sym_string] = STATE(294), - [sym_simple_expansion] = STATE(294), - [sym_string_expansion] = STATE(294), - [sym_expansion] = STATE(294), - [sym_command_substitution] = STATE(294), - [sym_process_substitution] = STATE(294), - [aux_sym_while_statement_repeat1] = STATE(978), - [aux_sym_command_repeat2] = STATE(712), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_SEMI_SEMI] = ACTIONS(989), - [anon_sym_PIPE_AMP] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(989), - [anon_sym_PIPE_PIPE] = ACTIONS(989), - [anon_sym_EQ_TILDE] = ACTIONS(539), - [anon_sym_EQ_EQ] = ACTIONS(539), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(929), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(933), - [sym__special_characters] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(549), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(989), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(551), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [sym__simple_heredoc_body] = ACTIONS(1972), + [sym__heredoc_body_beginning] = ACTIONS(1972), + [sym_file_descriptor] = ACTIONS(1972), + [ts_builtin_sym_end] = ACTIONS(1972), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_esac] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_RPAREN] = ACTIONS(1972), + [anon_sym_SEMI_SEMI] = ACTIONS(1972), + [anon_sym_PIPE_AMP] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1972), + [anon_sym_PIPE_PIPE] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(1974), + [anon_sym_GT] = ACTIONS(1974), + [anon_sym_GT_GT] = ACTIONS(1972), + [anon_sym_AMP_GT] = ACTIONS(1974), + [anon_sym_AMP_GT_GT] = ACTIONS(1972), + [anon_sym_LT_AMP] = ACTIONS(1972), + [anon_sym_GT_AMP] = ACTIONS(1972), + [anon_sym_LT_LT] = ACTIONS(1974), + [anon_sym_LT_LT_DASH] = ACTIONS(1972), + [anon_sym_LT_LT_LT] = ACTIONS(1972), + [anon_sym_BQUOTE] = ACTIONS(1972), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(1974), }, [513] = { - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(1955), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(1925), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1953), + [aux_sym_concatenation_repeat1] = STATE(976), + [sym__simple_heredoc_body] = ACTIONS(1976), + [sym__heredoc_body_beginning] = ACTIONS(1976), + [sym_file_descriptor] = ACTIONS(1976), + [sym__concat] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_PIPE] = ACTIONS(1978), + [anon_sym_SEMI_SEMI] = ACTIONS(1976), + [anon_sym_PIPE_AMP] = ACTIONS(1976), + [anon_sym_AMP_AMP] = ACTIONS(1976), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_LT] = ACTIONS(1978), + [anon_sym_GT] = ACTIONS(1978), + [anon_sym_GT_GT] = ACTIONS(1976), + [anon_sym_AMP_GT] = ACTIONS(1978), + [anon_sym_AMP_GT_GT] = ACTIONS(1976), + [anon_sym_LT_AMP] = ACTIONS(1976), + [anon_sym_GT_AMP] = ACTIONS(1976), + [anon_sym_LT_LT] = ACTIONS(1978), + [anon_sym_LT_LT_DASH] = ACTIONS(1976), + [anon_sym_LT_LT_LT] = ACTIONS(1976), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1978), }, [514] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(1955), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(1925), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1953), + [aux_sym_concatenation_repeat1] = STATE(976), + [sym__simple_heredoc_body] = ACTIONS(1980), + [sym__heredoc_body_beginning] = ACTIONS(1980), + [sym_file_descriptor] = ACTIONS(1980), + [sym__concat] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1980), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_SEMI_SEMI] = ACTIONS(1980), + [anon_sym_PIPE_AMP] = ACTIONS(1980), + [anon_sym_AMP_AMP] = ACTIONS(1980), + [anon_sym_PIPE_PIPE] = ACTIONS(1980), + [anon_sym_LT] = ACTIONS(1982), + [anon_sym_GT] = ACTIONS(1982), + [anon_sym_GT_GT] = ACTIONS(1980), + [anon_sym_AMP_GT] = ACTIONS(1982), + [anon_sym_AMP_GT_GT] = ACTIONS(1980), + [anon_sym_LT_AMP] = ACTIONS(1980), + [anon_sym_GT_AMP] = ACTIONS(1980), + [anon_sym_LT_LT] = ACTIONS(1982), + [anon_sym_LT_LT_DASH] = ACTIONS(1980), + [anon_sym_LT_LT_LT] = ACTIONS(1980), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1980), + [anon_sym_AMP] = ACTIONS(1982), }, [515] = { - [sym_file_redirect] = STATE(978), - [sym_heredoc_redirect] = STATE(978), - [sym_heredoc_body] = STATE(540), - [sym_herestring_redirect] = STATE(978), - [sym_concatenation] = STATE(980), - [sym_string] = STATE(294), - [sym_simple_expansion] = STATE(294), - [sym_string_expansion] = STATE(294), - [sym_expansion] = STATE(294), - [sym_command_substitution] = STATE(294), - [sym_process_substitution] = STATE(294), - [aux_sym_while_statement_repeat1] = STATE(978), - [aux_sym_command_repeat2] = STATE(980), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_SEMI_SEMI] = ACTIONS(989), - [anon_sym_PIPE_AMP] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(989), - [anon_sym_PIPE_PIPE] = ACTIONS(989), - [anon_sym_EQ_TILDE] = ACTIONS(539), - [anon_sym_EQ_EQ] = ACTIONS(539), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(929), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(933), - [sym__special_characters] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(549), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(989), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(551), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [sym__simple_heredoc_body] = ACTIONS(1980), + [sym__heredoc_body_beginning] = ACTIONS(1980), + [sym_file_descriptor] = ACTIONS(1980), + [ts_builtin_sym_end] = ACTIONS(1980), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_esac] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_RPAREN] = ACTIONS(1980), + [anon_sym_SEMI_SEMI] = ACTIONS(1980), + [anon_sym_PIPE_AMP] = ACTIONS(1980), + [anon_sym_AMP_AMP] = ACTIONS(1980), + [anon_sym_PIPE_PIPE] = ACTIONS(1980), + [anon_sym_LT] = ACTIONS(1982), + [anon_sym_GT] = ACTIONS(1982), + [anon_sym_GT_GT] = ACTIONS(1980), + [anon_sym_AMP_GT] = ACTIONS(1982), + [anon_sym_AMP_GT_GT] = ACTIONS(1980), + [anon_sym_LT_AMP] = ACTIONS(1980), + [anon_sym_GT_AMP] = ACTIONS(1980), + [anon_sym_LT_LT] = ACTIONS(1982), + [anon_sym_LT_LT_DASH] = ACTIONS(1980), + [anon_sym_LT_LT_LT] = ACTIONS(1980), + [anon_sym_BQUOTE] = ACTIONS(1980), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1980), + [anon_sym_AMP] = ACTIONS(1982), }, [516] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(1957), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [ts_builtin_sym_end] = ACTIONS(1986), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [517] = { - [sym__simple_heredoc_body] = ACTIONS(1959), - [sym__heredoc_body_beginning] = ACTIONS(1959), - [sym_file_descriptor] = ACTIONS(1959), - [sym__concat] = ACTIONS(1959), - [ts_builtin_sym_end] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_SEMI_SEMI] = ACTIONS(1959), - [anon_sym_PIPE_AMP] = ACTIONS(1959), - [anon_sym_AMP_AMP] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1959), - [anon_sym_EQ_TILDE] = ACTIONS(1961), - [anon_sym_EQ_EQ] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_AMP_GT] = ACTIONS(1961), - [anon_sym_AMP_GT_GT] = ACTIONS(1959), - [anon_sym_LT_AMP] = ACTIONS(1959), - [anon_sym_GT_AMP] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1961), - [anon_sym_LT_LT_DASH] = ACTIONS(1959), - [anon_sym_LT_LT_LT] = ACTIONS(1959), - [sym__special_characters] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), - [anon_sym_BQUOTE] = ACTIONS(1959), - [anon_sym_LT_LPAREN] = ACTIONS(1959), - [anon_sym_GT_LPAREN] = ACTIONS(1959), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1961), + [sym_file_redirect] = STATE(517), + [sym_heredoc_redirect] = STATE(517), + [sym_herestring_redirect] = STATE(517), + [aux_sym_redirected_statement_repeat1] = STATE(517), + [sym__simple_heredoc_body] = ACTIONS(1990), + [sym__heredoc_body_beginning] = ACTIONS(1990), + [sym_file_descriptor] = ACTIONS(1992), + [ts_builtin_sym_end] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_SEMI_SEMI] = ACTIONS(1990), + [anon_sym_PIPE_AMP] = ACTIONS(1990), + [anon_sym_AMP_AMP] = ACTIONS(1990), + [anon_sym_PIPE_PIPE] = ACTIONS(1990), + [anon_sym_LT] = ACTIONS(1997), + [anon_sym_GT] = ACTIONS(1997), + [anon_sym_GT_GT] = ACTIONS(2000), + [anon_sym_AMP_GT] = ACTIONS(1997), + [anon_sym_AMP_GT_GT] = ACTIONS(2000), + [anon_sym_LT_AMP] = ACTIONS(2000), + [anon_sym_GT_AMP] = ACTIONS(2000), + [anon_sym_LT_LT] = ACTIONS(2003), + [anon_sym_LT_LT_DASH] = ACTIONS(2006), + [anon_sym_LT_LT_LT] = ACTIONS(2009), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1995), }, [518] = { - [anon_sym_SEMI] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1957), - [anon_sym_SEMI_SEMI] = ACTIONS(1965), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1965), - [anon_sym_AMP] = ACTIONS(1963), + [sym__simple_heredoc_body] = ACTIONS(2012), + [sym__heredoc_body_beginning] = ACTIONS(2012), + [sym_file_descriptor] = ACTIONS(2012), + [ts_builtin_sym_end] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_PIPE] = ACTIONS(2014), + [anon_sym_RPAREN] = ACTIONS(2012), + [anon_sym_SEMI_SEMI] = ACTIONS(2012), + [anon_sym_PIPE_AMP] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2012), + [anon_sym_PIPE_PIPE] = ACTIONS(2012), + [anon_sym_EQ_TILDE] = ACTIONS(2014), + [anon_sym_EQ_EQ] = ACTIONS(2014), + [anon_sym_LT] = ACTIONS(2014), + [anon_sym_GT] = ACTIONS(2014), + [anon_sym_GT_GT] = ACTIONS(2012), + [anon_sym_AMP_GT] = ACTIONS(2014), + [anon_sym_AMP_GT_GT] = ACTIONS(2012), + [anon_sym_LT_AMP] = ACTIONS(2012), + [anon_sym_GT_AMP] = ACTIONS(2012), + [anon_sym_LT_LT] = ACTIONS(2014), + [anon_sym_LT_LT_DASH] = ACTIONS(2012), + [anon_sym_LT_LT_LT] = ACTIONS(2012), + [sym__special_characters] = ACTIONS(2012), + [anon_sym_DQUOTE] = ACTIONS(2012), + [anon_sym_DOLLAR] = ACTIONS(2014), + [sym_raw_string] = ACTIONS(2012), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2012), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2012), + [anon_sym_BQUOTE] = ACTIONS(2012), + [anon_sym_LT_LPAREN] = ACTIONS(2012), + [anon_sym_GT_LPAREN] = ACTIONS(2012), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2014), + [anon_sym_LF] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2014), }, [519] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1957), - [anon_sym_SEMI_SEMI] = ACTIONS(1965), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1965), - [anon_sym_AMP] = ACTIONS(1963), + [aux_sym_concatenation_repeat1] = STATE(140), + [sym__simple_heredoc_body] = ACTIONS(2016), + [sym__heredoc_body_beginning] = ACTIONS(2016), + [sym_file_descriptor] = ACTIONS(2016), + [sym__concat] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(2016), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_PIPE] = ACTIONS(2018), + [anon_sym_SEMI_SEMI] = ACTIONS(2016), + [anon_sym_PIPE_AMP] = ACTIONS(2016), + [anon_sym_AMP_AMP] = ACTIONS(2016), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [anon_sym_EQ_TILDE] = ACTIONS(2018), + [anon_sym_EQ_EQ] = ACTIONS(2018), + [anon_sym_LT] = ACTIONS(2018), + [anon_sym_GT] = ACTIONS(2018), + [anon_sym_GT_GT] = ACTIONS(2016), + [anon_sym_AMP_GT] = ACTIONS(2018), + [anon_sym_AMP_GT_GT] = ACTIONS(2016), + [anon_sym_LT_AMP] = ACTIONS(2016), + [anon_sym_GT_AMP] = ACTIONS(2016), + [anon_sym_LT_LT] = ACTIONS(2018), + [anon_sym_LT_LT_DASH] = ACTIONS(2016), + [anon_sym_LT_LT_LT] = ACTIONS(2016), + [sym__special_characters] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2018), + [sym_raw_string] = ACTIONS(2016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2016), + [anon_sym_BQUOTE] = ACTIONS(2016), + [anon_sym_LT_LPAREN] = ACTIONS(2016), + [anon_sym_GT_LPAREN] = ACTIONS(2016), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2018), + [anon_sym_LF] = ACTIONS(2016), + [anon_sym_AMP] = ACTIONS(2018), }, [520] = { - [sym_compound_statement] = STATE(983), - [anon_sym_LBRACE] = ACTIONS(595), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(140), + [sym__simple_heredoc_body] = ACTIONS(2012), + [sym__heredoc_body_beginning] = ACTIONS(2012), + [sym_file_descriptor] = ACTIONS(2012), + [sym__concat] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_PIPE] = ACTIONS(2014), + [anon_sym_SEMI_SEMI] = ACTIONS(2012), + [anon_sym_PIPE_AMP] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2012), + [anon_sym_PIPE_PIPE] = ACTIONS(2012), + [anon_sym_EQ_TILDE] = ACTIONS(2014), + [anon_sym_EQ_EQ] = ACTIONS(2014), + [anon_sym_LT] = ACTIONS(2014), + [anon_sym_GT] = ACTIONS(2014), + [anon_sym_GT_GT] = ACTIONS(2012), + [anon_sym_AMP_GT] = ACTIONS(2014), + [anon_sym_AMP_GT_GT] = ACTIONS(2012), + [anon_sym_LT_AMP] = ACTIONS(2012), + [anon_sym_GT_AMP] = ACTIONS(2012), + [anon_sym_LT_LT] = ACTIONS(2014), + [anon_sym_LT_LT_DASH] = ACTIONS(2012), + [anon_sym_LT_LT_LT] = ACTIONS(2012), + [sym__special_characters] = ACTIONS(2012), + [anon_sym_DQUOTE] = ACTIONS(2012), + [anon_sym_DOLLAR] = ACTIONS(2014), + [sym_raw_string] = ACTIONS(2012), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2012), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2012), + [anon_sym_BQUOTE] = ACTIONS(2012), + [anon_sym_LT_LPAREN] = ACTIONS(2012), + [anon_sym_GT_LPAREN] = ACTIONS(2012), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2014), + [anon_sym_LF] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2014), }, [521] = { - [ts_builtin_sym_end] = ACTIONS(1967), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym_esac] = ACTIONS(1967), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_RPAREN] = ACTIONS(1967), - [anon_sym_SEMI_SEMI] = ACTIONS(1967), - [anon_sym_PIPE_AMP] = ACTIONS(1967), - [anon_sym_AMP_AMP] = ACTIONS(1967), - [anon_sym_PIPE_PIPE] = ACTIONS(1967), - [anon_sym_BQUOTE] = ACTIONS(1967), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1969), + [sym_concatenation] = STATE(521), + [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_repeat2] = STATE(521), + [sym__simple_heredoc_body] = ACTIONS(2012), + [sym__heredoc_body_beginning] = ACTIONS(2012), + [sym_file_descriptor] = ACTIONS(2012), + [ts_builtin_sym_end] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_PIPE] = ACTIONS(2014), + [anon_sym_SEMI_SEMI] = ACTIONS(2012), + [anon_sym_PIPE_AMP] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2012), + [anon_sym_PIPE_PIPE] = ACTIONS(2012), + [anon_sym_EQ_TILDE] = ACTIONS(2020), + [anon_sym_EQ_EQ] = ACTIONS(2020), + [anon_sym_LT] = ACTIONS(2014), + [anon_sym_GT] = ACTIONS(2014), + [anon_sym_GT_GT] = ACTIONS(2012), + [anon_sym_AMP_GT] = ACTIONS(2014), + [anon_sym_AMP_GT_GT] = ACTIONS(2012), + [anon_sym_LT_AMP] = ACTIONS(2012), + [anon_sym_GT_AMP] = ACTIONS(2012), + [anon_sym_LT_LT] = ACTIONS(2014), + [anon_sym_LT_LT_DASH] = ACTIONS(2012), + [anon_sym_LT_LT_LT] = ACTIONS(2012), + [sym__special_characters] = ACTIONS(2023), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2029), + [sym_raw_string] = ACTIONS(2032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2038), + [anon_sym_BQUOTE] = ACTIONS(2041), + [anon_sym_LT_LPAREN] = ACTIONS(2044), + [anon_sym_GT_LPAREN] = ACTIONS(2044), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2047), + [anon_sym_LF] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2014), }, [522] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [ts_builtin_sym_end] = ACTIONS(1967), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_RPAREN] = ACTIONS(1967), - [anon_sym_SEMI_SEMI] = ACTIONS(1967), - [anon_sym_PIPE_AMP] = ACTIONS(1967), - [anon_sym_AMP_AMP] = ACTIONS(1967), - [anon_sym_PIPE_PIPE] = ACTIONS(1967), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1969), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [ts_builtin_sym_end] = ACTIONS(1986), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [523] = { - [ts_builtin_sym_end] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(1971), - [anon_sym_PIPE_AMP] = ACTIONS(335), - [anon_sym_AMP_AMP] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1971), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1973), + [ts_builtin_sym_end] = ACTIONS(1986), + [anon_sym_SEMI] = ACTIONS(2050), + [anon_sym_SEMI_SEMI] = ACTIONS(2052), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2052), + [anon_sym_AMP] = ACTIONS(2052), }, [524] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [ts_builtin_sym_end] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(331), - [anon_sym_SEMI_SEMI] = ACTIONS(1971), - [anon_sym_PIPE_AMP] = ACTIONS(335), - [anon_sym_AMP_AMP] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1973), + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_heredoc_body] = STATE(979), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(2056), + [anon_sym_PIPE_AMP] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_AMP_GT] = ACTIONS(507), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(511), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2054), }, [525] = { - [ts_builtin_sym_end] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1977), - [anon_sym_esac] = ACTIONS(1975), - [anon_sym_PIPE] = ACTIONS(1977), - [anon_sym_RPAREN] = ACTIONS(1975), - [anon_sym_SEMI_SEMI] = ACTIONS(1975), - [anon_sym_PIPE_AMP] = ACTIONS(1975), - [anon_sym_AMP_AMP] = ACTIONS(1975), - [anon_sym_PIPE_PIPE] = ACTIONS(1975), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1975), - [anon_sym_AMP] = ACTIONS(1977), + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_heredoc_body] = STATE(979), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(2056), + [anon_sym_PIPE_AMP] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(511), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2054), }, [526] = { - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_POUND] = ACTIONS(1979), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1981), - [anon_sym_STAR] = ACTIONS(1983), - [anon_sym_AT] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1983), - [anon_sym_0] = ACTIONS(1981), - [anon_sym__] = ACTIONS(1981), + [sym_concatenation] = STATE(521), + [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_repeat2] = STATE(521), + [sym__simple_heredoc_body] = ACTIONS(2058), + [sym__heredoc_body_beginning] = ACTIONS(2058), + [sym_file_descriptor] = ACTIONS(2058), + [ts_builtin_sym_end] = ACTIONS(2058), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_SEMI_SEMI] = ACTIONS(2058), + [anon_sym_PIPE_AMP] = ACTIONS(2058), + [anon_sym_AMP_AMP] = ACTIONS(2058), + [anon_sym_PIPE_PIPE] = ACTIONS(2058), + [anon_sym_EQ_TILDE] = ACTIONS(331), + [anon_sym_EQ_EQ] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(2060), + [anon_sym_GT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2058), + [anon_sym_AMP_GT] = ACTIONS(2060), + [anon_sym_AMP_GT_GT] = ACTIONS(2058), + [anon_sym_LT_AMP] = ACTIONS(2058), + [anon_sym_GT_AMP] = ACTIONS(2058), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_LT_LT_DASH] = ACTIONS(2058), + [anon_sym_LT_LT_LT] = ACTIONS(2058), + [sym__special_characters] = ACTIONS(333), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(337), + [anon_sym_LF] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2060), }, [527] = { - [sym_subscript] = STATE(989), - [sym_variable_name] = ACTIONS(1985), - [anon_sym_BANG] = ACTIONS(1987), - [anon_sym_DASH] = ACTIONS(1989), - [anon_sym_DOLLAR] = ACTIONS(1989), - [anon_sym_POUND] = ACTIONS(1987), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1993), - [anon_sym_AT] = ACTIONS(1993), - [anon_sym_QMARK] = ACTIONS(1993), - [anon_sym_0] = ACTIONS(1991), - [anon_sym__] = ACTIONS(1991), + [sym_string] = STATE(756), + [sym_simple_expansion] = STATE(756), + [sym_string_expansion] = STATE(756), + [sym_expansion] = STATE(756), + [sym_command_substitution] = STATE(756), + [sym_process_substitution] = STATE(756), + [anon_sym_RBRACK] = ACTIONS(2062), + [sym__special_characters] = ACTIONS(2064), + [anon_sym_DQUOTE] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(155), + [sym_raw_string] = ACTIONS(1453), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(163), + [anon_sym_LT_LPAREN] = ACTIONS(165), + [anon_sym_GT_LPAREN] = ACTIONS(165), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1453), }, [528] = { - [sym_simple_expansion] = STATE(991), - [sym_expansion] = STATE(991), - [aux_sym_heredoc_body_repeat1] = STATE(991), - [sym__heredoc_body_middle] = ACTIONS(1995), - [sym__heredoc_body_end] = ACTIONS(1997), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(959), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(2066), + [anon_sym_EQ] = ACTIONS(2068), + [anon_sym_PLUS_EQ] = ACTIONS(2068), + [sym_comment] = ACTIONS(57), }, [529] = { - [sym_concatenation] = STATE(994), - [sym_string] = STATE(993), - [sym_simple_expansion] = STATE(993), - [sym_string_expansion] = STATE(993), - [sym_expansion] = STATE(993), - [sym_command_substitution] = STATE(993), - [sym_process_substitution] = STATE(993), - [sym__special_characters] = ACTIONS(1999), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(2001), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2001), + [aux_sym_concatenation_repeat1] = STATE(982), + [sym__concat] = ACTIONS(629), + [anon_sym_RBRACK] = ACTIONS(779), + [sym_comment] = ACTIONS(57), }, [530] = { - [sym__simple_heredoc_body] = ACTIONS(2003), - [sym__heredoc_body_beginning] = ACTIONS(2003), - [sym_file_descriptor] = ACTIONS(2003), - [ts_builtin_sym_end] = ACTIONS(2003), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_PIPE] = ACTIONS(2005), - [anon_sym_RPAREN] = ACTIONS(2003), - [anon_sym_SEMI_SEMI] = ACTIONS(2003), - [anon_sym_PIPE_AMP] = ACTIONS(2003), - [anon_sym_AMP_AMP] = ACTIONS(2003), - [anon_sym_PIPE_PIPE] = ACTIONS(2003), - [anon_sym_EQ_TILDE] = ACTIONS(2005), - [anon_sym_EQ_EQ] = ACTIONS(2005), - [anon_sym_LT] = ACTIONS(2005), - [anon_sym_GT] = ACTIONS(2005), - [anon_sym_GT_GT] = ACTIONS(2003), - [anon_sym_AMP_GT] = ACTIONS(2005), - [anon_sym_AMP_GT_GT] = ACTIONS(2003), - [anon_sym_LT_AMP] = ACTIONS(2003), - [anon_sym_GT_AMP] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2005), - [anon_sym_LT_LT_DASH] = ACTIONS(2003), - [anon_sym_LT_LT_LT] = ACTIONS(2003), - [sym__special_characters] = ACTIONS(2003), - [anon_sym_DQUOTE] = ACTIONS(2003), - [anon_sym_DOLLAR] = ACTIONS(2005), - [sym_raw_string] = ACTIONS(2003), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2003), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2003), - [anon_sym_BQUOTE] = ACTIONS(2003), - [anon_sym_LT_LPAREN] = ACTIONS(2003), - [anon_sym_GT_LPAREN] = ACTIONS(2003), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2005), - [anon_sym_LF] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(2005), + [sym_string] = STATE(756), + [sym_simple_expansion] = STATE(756), + [sym_string_expansion] = STATE(756), + [sym_expansion] = STATE(756), + [sym_command_substitution] = STATE(756), + [sym_process_substitution] = STATE(756), + [anon_sym_RBRACK] = ACTIONS(2070), + [sym__special_characters] = ACTIONS(2064), + [anon_sym_DQUOTE] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(155), + [sym_raw_string] = ACTIONS(1453), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(163), + [anon_sym_LT_LPAREN] = ACTIONS(165), + [anon_sym_GT_LPAREN] = ACTIONS(165), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1453), }, [531] = { - [aux_sym_concatenation_repeat1] = STATE(145), - [sym__simple_heredoc_body] = ACTIONS(2007), - [sym__heredoc_body_beginning] = ACTIONS(2007), - [sym_file_descriptor] = ACTIONS(2007), - [sym__concat] = ACTIONS(265), - [ts_builtin_sym_end] = ACTIONS(2007), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_PIPE] = ACTIONS(2009), - [anon_sym_SEMI_SEMI] = ACTIONS(2007), - [anon_sym_PIPE_AMP] = ACTIONS(2007), - [anon_sym_AMP_AMP] = ACTIONS(2007), - [anon_sym_PIPE_PIPE] = ACTIONS(2007), - [anon_sym_EQ_TILDE] = ACTIONS(2009), - [anon_sym_EQ_EQ] = ACTIONS(2009), - [anon_sym_LT] = ACTIONS(2009), - [anon_sym_GT] = ACTIONS(2009), - [anon_sym_GT_GT] = ACTIONS(2007), - [anon_sym_AMP_GT] = ACTIONS(2009), - [anon_sym_AMP_GT_GT] = ACTIONS(2007), - [anon_sym_LT_AMP] = ACTIONS(2007), - [anon_sym_GT_AMP] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2009), - [anon_sym_LT_LT_DASH] = ACTIONS(2007), - [anon_sym_LT_LT_LT] = ACTIONS(2007), - [sym__special_characters] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), - [sym_raw_string] = ACTIONS(2007), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2007), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2007), - [anon_sym_BQUOTE] = ACTIONS(2007), - [anon_sym_LT_LPAREN] = ACTIONS(2007), - [anon_sym_GT_LPAREN] = ACTIONS(2007), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2009), - [anon_sym_LF] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2009), + [sym__concat] = ACTIONS(2072), + [anon_sym_EQ] = ACTIONS(2074), + [anon_sym_PLUS_EQ] = ACTIONS(2074), + [sym_comment] = ACTIONS(57), }, [532] = { - [aux_sym_concatenation_repeat1] = STATE(145), - [sym__simple_heredoc_body] = ACTIONS(2003), - [sym__heredoc_body_beginning] = ACTIONS(2003), - [sym_file_descriptor] = ACTIONS(2003), - [sym__concat] = ACTIONS(265), - [ts_builtin_sym_end] = ACTIONS(2003), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_PIPE] = ACTIONS(2005), - [anon_sym_SEMI_SEMI] = ACTIONS(2003), - [anon_sym_PIPE_AMP] = ACTIONS(2003), - [anon_sym_AMP_AMP] = ACTIONS(2003), - [anon_sym_PIPE_PIPE] = ACTIONS(2003), - [anon_sym_EQ_TILDE] = ACTIONS(2005), - [anon_sym_EQ_EQ] = ACTIONS(2005), - [anon_sym_LT] = ACTIONS(2005), - [anon_sym_GT] = ACTIONS(2005), - [anon_sym_GT_GT] = ACTIONS(2003), - [anon_sym_AMP_GT] = ACTIONS(2005), - [anon_sym_AMP_GT_GT] = ACTIONS(2003), - [anon_sym_LT_AMP] = ACTIONS(2003), - [anon_sym_GT_AMP] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2005), - [anon_sym_LT_LT_DASH] = ACTIONS(2003), - [anon_sym_LT_LT_LT] = ACTIONS(2003), - [sym__special_characters] = ACTIONS(2003), - [anon_sym_DQUOTE] = ACTIONS(2003), - [anon_sym_DOLLAR] = ACTIONS(2005), - [sym_raw_string] = ACTIONS(2003), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2003), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2003), - [anon_sym_BQUOTE] = ACTIONS(2003), - [anon_sym_LT_LPAREN] = ACTIONS(2003), - [anon_sym_GT_LPAREN] = ACTIONS(2003), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2005), - [anon_sym_LF] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(2005), + [anon_sym_RBRACK] = ACTIONS(2070), + [sym_comment] = ACTIONS(57), }, [533] = { - [aux_sym_concatenation_repeat1] = STATE(995), - [sym__simple_heredoc_body] = ACTIONS(773), - [sym__heredoc_body_beginning] = ACTIONS(773), - [sym_file_descriptor] = ACTIONS(773), - [sym__concat] = ACTIONS(265), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(773), - [anon_sym_AMP_GT] = ACTIONS(777), - [anon_sym_AMP_GT_GT] = ACTIONS(773), - [anon_sym_LT_AMP] = ACTIONS(773), - [anon_sym_GT_AMP] = ACTIONS(773), - [anon_sym_LT_LT] = ACTIONS(777), - [anon_sym_LT_LT_DASH] = ACTIONS(773), - [anon_sym_LT_LT_LT] = ACTIONS(773), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(777), + [sym__simple_heredoc_body] = ACTIONS(2076), + [sym__heredoc_body_beginning] = ACTIONS(2076), + [sym_file_descriptor] = ACTIONS(2076), + [sym_variable_name] = ACTIONS(2076), + [ts_builtin_sym_end] = ACTIONS(2076), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_PIPE] = ACTIONS(2078), + [anon_sym_RPAREN] = ACTIONS(2076), + [anon_sym_SEMI_SEMI] = ACTIONS(2076), + [anon_sym_PIPE_AMP] = ACTIONS(2076), + [anon_sym_AMP_AMP] = ACTIONS(2076), + [anon_sym_PIPE_PIPE] = ACTIONS(2076), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_GT] = ACTIONS(2078), + [anon_sym_GT_GT] = ACTIONS(2076), + [anon_sym_AMP_GT] = ACTIONS(2078), + [anon_sym_AMP_GT_GT] = ACTIONS(2076), + [anon_sym_LT_AMP] = ACTIONS(2076), + [anon_sym_GT_AMP] = ACTIONS(2076), + [anon_sym_LT_LT] = ACTIONS(2078), + [anon_sym_LT_LT_DASH] = ACTIONS(2076), + [anon_sym_LT_LT_LT] = ACTIONS(2076), + [sym__special_characters] = ACTIONS(2076), + [anon_sym_DQUOTE] = ACTIONS(2076), + [anon_sym_DOLLAR] = ACTIONS(2078), + [sym_raw_string] = ACTIONS(2076), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2076), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2076), + [anon_sym_BQUOTE] = ACTIONS(2076), + [anon_sym_LT_LPAREN] = ACTIONS(2076), + [anon_sym_GT_LPAREN] = ACTIONS(2076), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2078), + [anon_sym_LF] = ACTIONS(2076), + [anon_sym_AMP] = ACTIONS(2078), }, [534] = { - [aux_sym_concatenation_repeat1] = STATE(995), - [sym__simple_heredoc_body] = ACTIONS(791), - [sym__heredoc_body_beginning] = ACTIONS(791), - [sym_file_descriptor] = ACTIONS(791), - [sym__concat] = ACTIONS(265), - [ts_builtin_sym_end] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_SEMI_SEMI] = ACTIONS(791), - [anon_sym_PIPE_AMP] = ACTIONS(791), - [anon_sym_AMP_AMP] = ACTIONS(791), - [anon_sym_PIPE_PIPE] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_GT_GT] = ACTIONS(791), - [anon_sym_AMP_GT] = ACTIONS(793), - [anon_sym_AMP_GT_GT] = ACTIONS(791), - [anon_sym_LT_AMP] = ACTIONS(791), - [anon_sym_GT_AMP] = ACTIONS(791), - [anon_sym_LT_LT] = ACTIONS(793), - [anon_sym_LT_LT_DASH] = ACTIONS(791), - [anon_sym_LT_LT_LT] = ACTIONS(791), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_AMP] = ACTIONS(793), + [aux_sym_concatenation_repeat1] = STATE(986), + [sym__concat] = ACTIONS(2080), + [anon_sym_RPAREN] = ACTIONS(2082), + [sym__special_characters] = ACTIONS(2082), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_DOLLAR] = ACTIONS(2084), + [sym_raw_string] = ACTIONS(2082), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2082), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2082), + [anon_sym_BQUOTE] = ACTIONS(2082), + [anon_sym_LT_LPAREN] = ACTIONS(2082), + [anon_sym_GT_LPAREN] = ACTIONS(2082), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2082), }, [535] = { - [sym__simple_heredoc_body] = ACTIONS(791), - [sym__heredoc_body_beginning] = ACTIONS(791), - [sym_file_descriptor] = ACTIONS(791), - [ts_builtin_sym_end] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_esac] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_SEMI_SEMI] = ACTIONS(791), - [anon_sym_PIPE_AMP] = ACTIONS(791), - [anon_sym_AMP_AMP] = ACTIONS(791), - [anon_sym_PIPE_PIPE] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_GT_GT] = ACTIONS(791), - [anon_sym_AMP_GT] = ACTIONS(793), - [anon_sym_AMP_GT_GT] = ACTIONS(791), - [anon_sym_LT_AMP] = ACTIONS(791), - [anon_sym_GT_AMP] = ACTIONS(791), - [anon_sym_LT_LT] = ACTIONS(793), - [anon_sym_LT_LT_DASH] = ACTIONS(791), - [anon_sym_LT_LT_LT] = ACTIONS(791), - [anon_sym_BQUOTE] = ACTIONS(791), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_AMP] = ACTIONS(793), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(989), + [anon_sym_DQUOTE] = ACTIONS(2086), + [anon_sym_DOLLAR] = ACTIONS(2088), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [536] = { - [sym__simple_heredoc_body] = ACTIONS(2011), - [sym__heredoc_body_beginning] = ACTIONS(2011), - [sym_file_descriptor] = ACTIONS(2011), - [ts_builtin_sym_end] = ACTIONS(2011), - [anon_sym_SEMI] = ACTIONS(2013), - [anon_sym_esac] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2013), - [anon_sym_RPAREN] = ACTIONS(2011), - [anon_sym_SEMI_SEMI] = ACTIONS(2011), - [anon_sym_PIPE_AMP] = ACTIONS(2011), - [anon_sym_AMP_AMP] = ACTIONS(2011), - [anon_sym_PIPE_PIPE] = ACTIONS(2011), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_GT] = ACTIONS(2013), - [anon_sym_GT_GT] = ACTIONS(2011), - [anon_sym_AMP_GT] = ACTIONS(2013), - [anon_sym_AMP_GT_GT] = ACTIONS(2011), - [anon_sym_LT_AMP] = ACTIONS(2011), - [anon_sym_GT_AMP] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(2013), - [anon_sym_LT_LT_DASH] = ACTIONS(2011), - [anon_sym_LT_LT_LT] = ACTIONS(2011), - [anon_sym_BQUOTE] = ACTIONS(2011), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2013), + [sym_string] = STATE(991), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(2090), + [sym_raw_string] = ACTIONS(2092), + [anon_sym_POUND] = ACTIONS(2090), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2094), + [anon_sym_STAR] = ACTIONS(2096), + [anon_sym_AT] = ACTIONS(2096), + [anon_sym_QMARK] = ACTIONS(2096), + [anon_sym_0] = ACTIONS(2094), + [anon_sym__] = ACTIONS(2094), }, [537] = { - [aux_sym_concatenation_repeat1] = STATE(995), - [sym__simple_heredoc_body] = ACTIONS(2015), - [sym__heredoc_body_beginning] = ACTIONS(2015), - [sym_file_descriptor] = ACTIONS(2015), - [sym__concat] = ACTIONS(265), - [ts_builtin_sym_end] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2017), - [anon_sym_PIPE] = ACTIONS(2017), - [anon_sym_SEMI_SEMI] = ACTIONS(2015), - [anon_sym_PIPE_AMP] = ACTIONS(2015), - [anon_sym_AMP_AMP] = ACTIONS(2015), - [anon_sym_PIPE_PIPE] = ACTIONS(2015), - [anon_sym_LT] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2017), - [anon_sym_GT_GT] = ACTIONS(2015), - [anon_sym_AMP_GT] = ACTIONS(2017), - [anon_sym_AMP_GT_GT] = ACTIONS(2015), - [anon_sym_LT_AMP] = ACTIONS(2015), - [anon_sym_GT_AMP] = ACTIONS(2015), - [anon_sym_LT_LT] = ACTIONS(2017), - [anon_sym_LT_LT_DASH] = ACTIONS(2015), - [anon_sym_LT_LT_LT] = ACTIONS(2015), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2017), + [aux_sym_concatenation_repeat1] = STATE(986), + [sym__concat] = ACTIONS(2080), + [anon_sym_RPAREN] = ACTIONS(2098), + [sym__special_characters] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [anon_sym_DOLLAR] = ACTIONS(2100), + [sym_raw_string] = ACTIONS(2098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2098), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2098), + [anon_sym_BQUOTE] = ACTIONS(2098), + [anon_sym_LT_LPAREN] = ACTIONS(2098), + [anon_sym_GT_LPAREN] = ACTIONS(2098), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2098), }, [538] = { - [aux_sym_concatenation_repeat1] = STATE(995), - [sym__simple_heredoc_body] = ACTIONS(2019), - [sym__heredoc_body_beginning] = ACTIONS(2019), - [sym_file_descriptor] = ACTIONS(2019), - [sym__concat] = ACTIONS(265), - [ts_builtin_sym_end] = ACTIONS(2019), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_SEMI_SEMI] = ACTIONS(2019), - [anon_sym_PIPE_AMP] = ACTIONS(2019), - [anon_sym_AMP_AMP] = ACTIONS(2019), - [anon_sym_PIPE_PIPE] = ACTIONS(2019), - [anon_sym_LT] = ACTIONS(2021), - [anon_sym_GT] = ACTIONS(2021), - [anon_sym_GT_GT] = ACTIONS(2019), - [anon_sym_AMP_GT] = ACTIONS(2021), - [anon_sym_AMP_GT_GT] = ACTIONS(2019), - [anon_sym_LT_AMP] = ACTIONS(2019), - [anon_sym_GT_AMP] = ACTIONS(2019), - [anon_sym_LT_LT] = ACTIONS(2021), - [anon_sym_LT_LT_DASH] = ACTIONS(2019), - [anon_sym_LT_LT_LT] = ACTIONS(2019), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2019), - [anon_sym_AMP] = ACTIONS(2021), + [sym_subscript] = STATE(996), + [sym_variable_name] = ACTIONS(2102), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2106), + [anon_sym_DOLLAR] = ACTIONS(2106), + [anon_sym_POUND] = ACTIONS(2104), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2110), + [anon_sym_QMARK] = ACTIONS(2110), + [anon_sym_0] = ACTIONS(2108), + [anon_sym__] = ACTIONS(2108), }, [539] = { - [sym__simple_heredoc_body] = ACTIONS(2019), - [sym__heredoc_body_beginning] = ACTIONS(2019), - [sym_file_descriptor] = ACTIONS(2019), - [ts_builtin_sym_end] = ACTIONS(2019), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_esac] = ACTIONS(2019), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2019), - [anon_sym_SEMI_SEMI] = ACTIONS(2019), - [anon_sym_PIPE_AMP] = ACTIONS(2019), - [anon_sym_AMP_AMP] = ACTIONS(2019), - [anon_sym_PIPE_PIPE] = ACTIONS(2019), - [anon_sym_LT] = ACTIONS(2021), - [anon_sym_GT] = ACTIONS(2021), - [anon_sym_GT_GT] = ACTIONS(2019), - [anon_sym_AMP_GT] = ACTIONS(2021), - [anon_sym_AMP_GT_GT] = ACTIONS(2019), - [anon_sym_LT_AMP] = ACTIONS(2019), - [anon_sym_GT_AMP] = ACTIONS(2019), - [anon_sym_LT_LT] = ACTIONS(2021), - [anon_sym_LT_LT_DASH] = ACTIONS(2019), - [anon_sym_LT_LT_LT] = ACTIONS(2019), - [anon_sym_BQUOTE] = ACTIONS(2019), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2019), - [anon_sym_AMP] = ACTIONS(2021), + [sym__terminated_statement] = STATE(999), + [sym_redirected_statement] = STATE(997), + [sym_for_statement] = STATE(997), + [sym_c_style_for_statement] = STATE(997), + [sym_while_statement] = STATE(997), + [sym_if_statement] = STATE(997), + [sym_case_statement] = STATE(997), + [sym_function_definition] = STATE(997), + [sym_compound_statement] = STATE(997), + [sym_subshell] = STATE(997), + [sym_pipeline] = STATE(997), + [sym_list] = STATE(997), + [sym_negated_command] = STATE(997), + [sym_test_command] = STATE(997), + [sym_declaration_command] = STATE(997), + [sym_unset_command] = STATE(997), + [sym_command] = STATE(997), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(998), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(999), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [540] = { - [ts_builtin_sym_end] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2025), - [anon_sym_esac] = ACTIONS(2023), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_RPAREN] = ACTIONS(2023), - [anon_sym_SEMI_SEMI] = ACTIONS(2023), - [anon_sym_PIPE_AMP] = ACTIONS(2023), - [anon_sym_AMP_AMP] = ACTIONS(2023), - [anon_sym_PIPE_PIPE] = ACTIONS(2023), - [anon_sym_BQUOTE] = ACTIONS(2023), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2025), + [sym__terminated_statement] = STATE(1002), + [sym_redirected_statement] = STATE(1000), + [sym_for_statement] = STATE(1000), + [sym_c_style_for_statement] = STATE(1000), + [sym_while_statement] = STATE(1000), + [sym_if_statement] = STATE(1000), + [sym_case_statement] = STATE(1000), + [sym_function_definition] = STATE(1000), + [sym_compound_statement] = STATE(1000), + [sym_subshell] = STATE(1000), + [sym_pipeline] = STATE(1000), + [sym_list] = STATE(1000), + [sym_negated_command] = STATE(1000), + [sym_test_command] = STATE(1000), + [sym_declaration_command] = STATE(1000), + [sym_unset_command] = STATE(1000), + [sym_command] = STATE(1000), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(1001), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(1002), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [541] = { - [sym_file_redirect] = STATE(541), - [sym_heredoc_redirect] = STATE(541), - [sym_herestring_redirect] = STATE(541), - [aux_sym_while_statement_repeat1] = STATE(541), - [sym__simple_heredoc_body] = ACTIONS(2027), - [sym__heredoc_body_beginning] = ACTIONS(2027), - [sym_file_descriptor] = ACTIONS(2029), - [ts_builtin_sym_end] = ACTIONS(2027), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2027), - [anon_sym_PIPE_AMP] = ACTIONS(2027), - [anon_sym_AMP_AMP] = ACTIONS(2027), - [anon_sym_PIPE_PIPE] = ACTIONS(2027), - [anon_sym_LT] = ACTIONS(2034), - [anon_sym_GT] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2037), - [anon_sym_AMP_GT] = ACTIONS(2034), - [anon_sym_AMP_GT_GT] = ACTIONS(2037), - [anon_sym_LT_AMP] = ACTIONS(2037), - [anon_sym_GT_AMP] = ACTIONS(2037), - [anon_sym_LT_LT] = ACTIONS(2040), - [anon_sym_LT_LT_DASH] = ACTIONS(2043), - [anon_sym_LT_LT_LT] = ACTIONS(2046), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(2032), + [sym__terminated_statement] = STATE(1005), + [sym_redirected_statement] = STATE(1003), + [sym_for_statement] = STATE(1003), + [sym_c_style_for_statement] = STATE(1003), + [sym_while_statement] = STATE(1003), + [sym_if_statement] = STATE(1003), + [sym_case_statement] = STATE(1003), + [sym_function_definition] = STATE(1003), + [sym_compound_statement] = STATE(1003), + [sym_subshell] = STATE(1003), + [sym_pipeline] = STATE(1003), + [sym_list] = STATE(1003), + [sym_negated_command] = STATE(1003), + [sym_test_command] = STATE(1003), + [sym_declaration_command] = STATE(1003), + [sym_unset_command] = STATE(1003), + [sym_command] = STATE(1003), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(1004), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(1005), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [542] = { - [sym_file_redirect] = STATE(541), - [sym_heredoc_redirect] = STATE(541), - [sym_heredoc_body] = STATE(996), - [sym_herestring_redirect] = STATE(541), - [aux_sym_while_statement_repeat1] = STATE(541), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(343), - [ts_builtin_sym_end] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_SEMI_SEMI] = ACTIONS(2023), - [anon_sym_PIPE_AMP] = ACTIONS(2023), - [anon_sym_AMP_AMP] = ACTIONS(2023), - [anon_sym_PIPE_PIPE] = ACTIONS(2023), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(353), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(353), - [anon_sym_LT_AMP] = ACTIONS(353), - [anon_sym_GT_AMP] = ACTIONS(353), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(359), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2025), + [sym_concatenation] = STATE(1007), + [sym_string] = STATE(537), + [sym_simple_expansion] = STATE(537), + [sym_string_expansion] = STATE(537), + [sym_expansion] = STATE(537), + [sym_command_substitution] = STATE(537), + [sym_process_substitution] = STATE(537), + [aux_sym_for_statement_repeat1] = STATE(1007), + [anon_sym_RPAREN] = ACTIONS(2112), + [sym__special_characters] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1095), + [sym_raw_string] = ACTIONS(1097), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1099), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1103), + [anon_sym_LT_LPAREN] = ACTIONS(1105), + [anon_sym_GT_LPAREN] = ACTIONS(1105), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1097), }, [543] = { - [sym_concatenation] = STATE(543), - [sym_string] = STATE(192), - [sym_simple_expansion] = STATE(192), - [sym_string_expansion] = STATE(192), - [sym_expansion] = STATE(192), - [sym_command_substitution] = STATE(192), - [sym_process_substitution] = STATE(192), - [aux_sym_command_repeat2] = STATE(543), - [sym__simple_heredoc_body] = ACTIONS(2003), - [sym__heredoc_body_beginning] = ACTIONS(2003), - [sym_file_descriptor] = ACTIONS(2003), - [ts_builtin_sym_end] = ACTIONS(2003), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_PIPE] = ACTIONS(2005), - [anon_sym_SEMI_SEMI] = ACTIONS(2003), - [anon_sym_PIPE_AMP] = ACTIONS(2003), - [anon_sym_AMP_AMP] = ACTIONS(2003), - [anon_sym_PIPE_PIPE] = ACTIONS(2003), - [anon_sym_EQ_TILDE] = ACTIONS(2049), - [anon_sym_EQ_EQ] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2005), - [anon_sym_GT] = ACTIONS(2005), - [anon_sym_GT_GT] = ACTIONS(2003), - [anon_sym_AMP_GT] = ACTIONS(2005), - [anon_sym_AMP_GT_GT] = ACTIONS(2003), - [anon_sym_LT_AMP] = ACTIONS(2003), - [anon_sym_GT_AMP] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2005), - [anon_sym_LT_LT_DASH] = ACTIONS(2003), - [anon_sym_LT_LT_LT] = ACTIONS(2003), - [sym__special_characters] = ACTIONS(2052), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_DOLLAR] = ACTIONS(2058), - [sym_raw_string] = ACTIONS(2061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2067), - [anon_sym_BQUOTE] = ACTIONS(2070), - [anon_sym_LT_LPAREN] = ACTIONS(2073), - [anon_sym_GT_LPAREN] = ACTIONS(2073), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(2005), + [sym_string] = STATE(1008), + [sym_simple_expansion] = STATE(1008), + [sym_string_expansion] = STATE(1008), + [sym_expansion] = STATE(1008), + [sym_command_substitution] = STATE(1008), + [sym_process_substitution] = STATE(1008), + [sym__special_characters] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(359), + [anon_sym_DOLLAR] = ACTIONS(361), + [sym_raw_string] = ACTIONS(2114), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(365), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), + [anon_sym_BQUOTE] = ACTIONS(369), + [anon_sym_LT_LPAREN] = ACTIONS(371), + [anon_sym_GT_LPAREN] = ACTIONS(371), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2114), }, [544] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [ts_builtin_sym_end] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [aux_sym_concatenation_repeat1] = STATE(1009), + [sym__simple_heredoc_body] = ACTIONS(779), + [sym__heredoc_body_beginning] = ACTIONS(779), + [sym_file_descriptor] = ACTIONS(779), + [sym__concat] = ACTIONS(1109), + [sym_variable_name] = ACTIONS(779), + [ts_builtin_sym_end] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [anon_sym_PIPE_AMP] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_AMP_GT] = ACTIONS(781), + [anon_sym_AMP_GT_GT] = ACTIONS(779), + [anon_sym_LT_AMP] = ACTIONS(779), + [anon_sym_GT_AMP] = ACTIONS(779), + [anon_sym_LT_LT] = ACTIONS(781), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_LT] = ACTIONS(779), + [sym__special_characters] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(781), + [sym_raw_string] = ACTIONS(779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(779), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(781), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(781), }, [545] = { - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_SEMI_SEMI] = ACTIONS(2083), - [anon_sym_PIPE_AMP] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(535), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2081), + [sym__simple_heredoc_body] = ACTIONS(783), + [sym__heredoc_body_beginning] = ACTIONS(783), + [sym_file_descriptor] = ACTIONS(783), + [sym__concat] = ACTIONS(783), + [sym_variable_name] = ACTIONS(783), + [ts_builtin_sym_end] = ACTIONS(783), + [anon_sym_SEMI] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_RPAREN] = ACTIONS(783), + [anon_sym_SEMI_SEMI] = ACTIONS(783), + [anon_sym_PIPE_AMP] = ACTIONS(783), + [anon_sym_AMP_AMP] = ACTIONS(783), + [anon_sym_PIPE_PIPE] = ACTIONS(783), + [anon_sym_LT] = ACTIONS(785), + [anon_sym_GT] = ACTIONS(785), + [anon_sym_GT_GT] = ACTIONS(783), + [anon_sym_AMP_GT] = ACTIONS(785), + [anon_sym_AMP_GT_GT] = ACTIONS(783), + [anon_sym_LT_AMP] = ACTIONS(783), + [anon_sym_GT_AMP] = ACTIONS(783), + [anon_sym_LT_LT] = ACTIONS(785), + [anon_sym_LT_LT_DASH] = ACTIONS(783), + [anon_sym_LT_LT_LT] = ACTIONS(783), + [sym__special_characters] = ACTIONS(783), + [anon_sym_DQUOTE] = ACTIONS(783), + [anon_sym_DOLLAR] = ACTIONS(785), + [sym_raw_string] = ACTIONS(783), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(783), + [anon_sym_BQUOTE] = ACTIONS(783), + [anon_sym_LT_LPAREN] = ACTIONS(783), + [anon_sym_GT_LPAREN] = ACTIONS(783), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(785), + [anon_sym_LF] = ACTIONS(783), + [anon_sym_AMP] = ACTIONS(785), }, [546] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_SEMI_SEMI] = ACTIONS(2083), - [anon_sym_PIPE_AMP] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(2116), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [547] = { - [sym_file_redirect] = STATE(998), - [sym_heredoc_redirect] = STATE(998), - [sym_heredoc_body] = STATE(996), - [sym_herestring_redirect] = STATE(998), - [sym_concatenation] = STATE(543), - [sym_string] = STATE(192), - [sym_simple_expansion] = STATE(192), - [sym_string_expansion] = STATE(192), - [sym_expansion] = STATE(192), - [sym_command_substitution] = STATE(192), - [sym_process_substitution] = STATE(192), - [aux_sym_while_statement_repeat1] = STATE(998), - [aux_sym_command_repeat2] = STATE(543), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(343), - [ts_builtin_sym_end] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_SEMI_SEMI] = ACTIONS(2023), - [anon_sym_PIPE_AMP] = ACTIONS(2023), - [anon_sym_AMP_AMP] = ACTIONS(2023), - [anon_sym_PIPE_PIPE] = ACTIONS(2023), - [anon_sym_EQ_TILDE] = ACTIONS(349), - [anon_sym_EQ_EQ] = ACTIONS(349), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(353), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(353), - [anon_sym_LT_AMP] = ACTIONS(353), - [anon_sym_GT_AMP] = ACTIONS(353), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(359), - [sym__special_characters] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(363), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(365), - [anon_sym_LF] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2025), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(455), + [anon_sym_DQUOTE] = ACTIONS(2116), + [anon_sym_DOLLAR] = ACTIONS(2118), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [548] = { - [sym_string] = STATE(790), - [sym_simple_expansion] = STATE(790), - [sym_string_expansion] = STATE(790), - [sym_expansion] = STATE(790), - [sym_command_substitution] = STATE(790), - [sym_process_substitution] = STATE(790), - [anon_sym_RBRACK] = ACTIONS(2085), - [sym__special_characters] = ACTIONS(2087), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_DOLLAR] = ACTIONS(171), - [sym_raw_string] = ACTIONS(1490), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), - [anon_sym_BQUOTE] = ACTIONS(179), - [anon_sym_LT_LPAREN] = ACTIONS(181), - [anon_sym_GT_LPAREN] = ACTIONS(181), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1490), + [sym__simple_heredoc_body] = ACTIONS(817), + [sym__heredoc_body_beginning] = ACTIONS(817), + [sym_file_descriptor] = ACTIONS(817), + [sym__concat] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [ts_builtin_sym_end] = ACTIONS(817), + [anon_sym_SEMI] = ACTIONS(819), + [anon_sym_PIPE] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(817), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_PIPE_AMP] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [anon_sym_LT_LT] = ACTIONS(819), + [anon_sym_LT_LT_DASH] = ACTIONS(817), + [anon_sym_LT_LT_LT] = ACTIONS(817), + [sym__special_characters] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(819), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(819), }, [549] = { - [sym__concat] = ACTIONS(2089), - [anon_sym_EQ] = ACTIONS(2091), - [anon_sym_PLUS_EQ] = ACTIONS(2091), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(821), + [sym__heredoc_body_beginning] = ACTIONS(821), + [sym_file_descriptor] = ACTIONS(821), + [sym__concat] = ACTIONS(821), + [sym_variable_name] = ACTIONS(821), + [ts_builtin_sym_end] = ACTIONS(821), + [anon_sym_SEMI] = ACTIONS(823), + [anon_sym_PIPE] = ACTIONS(823), + [anon_sym_RPAREN] = ACTIONS(821), + [anon_sym_SEMI_SEMI] = ACTIONS(821), + [anon_sym_PIPE_AMP] = ACTIONS(821), + [anon_sym_AMP_AMP] = ACTIONS(821), + [anon_sym_PIPE_PIPE] = ACTIONS(821), + [anon_sym_LT] = ACTIONS(823), + [anon_sym_GT] = ACTIONS(823), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_AMP_GT] = ACTIONS(823), + [anon_sym_AMP_GT_GT] = ACTIONS(821), + [anon_sym_LT_AMP] = ACTIONS(821), + [anon_sym_GT_AMP] = ACTIONS(821), + [anon_sym_LT_LT] = ACTIONS(823), + [anon_sym_LT_LT_DASH] = ACTIONS(821), + [anon_sym_LT_LT_LT] = ACTIONS(821), + [sym__special_characters] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(823), + [sym_raw_string] = ACTIONS(821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(821), + [anon_sym_BQUOTE] = ACTIONS(821), + [anon_sym_LT_LPAREN] = ACTIONS(821), + [anon_sym_GT_LPAREN] = ACTIONS(821), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(823), + [anon_sym_LF] = ACTIONS(821), + [anon_sym_AMP] = ACTIONS(823), }, [550] = { - [aux_sym_concatenation_repeat1] = STATE(1001), - [sym__concat] = ACTIONS(657), - [anon_sym_RBRACK] = ACTIONS(807), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(825), + [sym__heredoc_body_beginning] = ACTIONS(825), + [sym_file_descriptor] = ACTIONS(825), + [sym__concat] = ACTIONS(825), + [sym_variable_name] = ACTIONS(825), + [ts_builtin_sym_end] = ACTIONS(825), + [anon_sym_SEMI] = ACTIONS(827), + [anon_sym_PIPE] = ACTIONS(827), + [anon_sym_RPAREN] = ACTIONS(825), + [anon_sym_SEMI_SEMI] = ACTIONS(825), + [anon_sym_PIPE_AMP] = ACTIONS(825), + [anon_sym_AMP_AMP] = ACTIONS(825), + [anon_sym_PIPE_PIPE] = ACTIONS(825), + [anon_sym_LT] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_GT_GT] = ACTIONS(825), + [anon_sym_AMP_GT] = ACTIONS(827), + [anon_sym_AMP_GT_GT] = ACTIONS(825), + [anon_sym_LT_AMP] = ACTIONS(825), + [anon_sym_GT_AMP] = ACTIONS(825), + [anon_sym_LT_LT] = ACTIONS(827), + [anon_sym_LT_LT_DASH] = ACTIONS(825), + [anon_sym_LT_LT_LT] = ACTIONS(825), + [sym__special_characters] = ACTIONS(825), + [anon_sym_DQUOTE] = ACTIONS(825), + [anon_sym_DOLLAR] = ACTIONS(827), + [sym_raw_string] = ACTIONS(825), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(825), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_LT_LPAREN] = ACTIONS(825), + [anon_sym_GT_LPAREN] = ACTIONS(825), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(825), + [anon_sym_AMP] = ACTIONS(827), }, [551] = { - [sym_string] = STATE(790), - [sym_simple_expansion] = STATE(790), - [sym_string_expansion] = STATE(790), - [sym_expansion] = STATE(790), - [sym_command_substitution] = STATE(790), - [sym_process_substitution] = STATE(790), - [anon_sym_RBRACK] = ACTIONS(2093), - [sym__special_characters] = ACTIONS(2087), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_DOLLAR] = ACTIONS(171), - [sym_raw_string] = ACTIONS(1490), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), - [anon_sym_BQUOTE] = ACTIONS(179), - [anon_sym_LT_LPAREN] = ACTIONS(181), - [anon_sym_GT_LPAREN] = ACTIONS(181), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(2120), + [sym_comment] = ACTIONS(57), }, [552] = { - [sym__concat] = ACTIONS(2095), - [anon_sym_EQ] = ACTIONS(2097), - [anon_sym_PLUS_EQ] = ACTIONS(2097), - [sym_comment] = ACTIONS(55), + [sym_subscript] = STATE(1015), + [sym_variable_name] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_DOLLAR] = ACTIONS(2124), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2126), + [anon_sym_STAR] = ACTIONS(2128), + [anon_sym_AT] = ACTIONS(2128), + [anon_sym_QMARK] = ACTIONS(2128), + [anon_sym_0] = ACTIONS(2126), + [anon_sym__] = ACTIONS(2126), }, [553] = { - [anon_sym_RBRACK] = ACTIONS(2093), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(1018), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1018), + [anon_sym_RBRACE] = ACTIONS(2130), + [anon_sym_EQ] = ACTIONS(2132), + [anon_sym_DASH] = ACTIONS(2132), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(2136), + [anon_sym_COLON] = ACTIONS(2132), + [anon_sym_COLON_QMARK] = ACTIONS(2132), + [anon_sym_COLON_DASH] = ACTIONS(2132), + [anon_sym_PERCENT] = ACTIONS(2132), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [554] = { - [sym_file_descriptor] = ACTIONS(2099), - [sym_variable_name] = ACTIONS(2099), - [ts_builtin_sym_end] = ACTIONS(2099), - [anon_sym_SEMI] = ACTIONS(2101), - [anon_sym_PIPE] = ACTIONS(2101), - [anon_sym_RPAREN] = ACTIONS(2099), - [anon_sym_SEMI_SEMI] = ACTIONS(2099), - [anon_sym_PIPE_AMP] = ACTIONS(2099), - [anon_sym_AMP_AMP] = ACTIONS(2099), - [anon_sym_PIPE_PIPE] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2101), - [anon_sym_GT] = ACTIONS(2101), - [anon_sym_GT_GT] = ACTIONS(2099), - [anon_sym_AMP_GT] = ACTIONS(2101), - [anon_sym_AMP_GT_GT] = ACTIONS(2099), - [anon_sym_LT_AMP] = ACTIONS(2099), - [anon_sym_GT_AMP] = ACTIONS(2099), - [sym__special_characters] = ACTIONS(2099), - [anon_sym_DQUOTE] = ACTIONS(2099), - [anon_sym_DOLLAR] = ACTIONS(2101), - [sym_raw_string] = ACTIONS(2099), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2099), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2099), - [anon_sym_BQUOTE] = ACTIONS(2099), - [anon_sym_LT_LPAREN] = ACTIONS(2099), - [anon_sym_GT_LPAREN] = ACTIONS(2099), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2101), - [anon_sym_LF] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2101), + [sym_concatenation] = STATE(1021), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1021), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_EQ] = ACTIONS(2140), + [anon_sym_DASH] = ACTIONS(2140), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2142), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(2144), + [anon_sym_COLON] = ACTIONS(2140), + [anon_sym_COLON_QMARK] = ACTIONS(2140), + [anon_sym_COLON_DASH] = ACTIONS(2140), + [anon_sym_PERCENT] = ACTIONS(2140), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [555] = { - [aux_sym_concatenation_repeat1] = STATE(1005), - [sym__concat] = ACTIONS(2103), - [anon_sym_RPAREN] = ACTIONS(2105), - [sym__special_characters] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_DOLLAR] = ACTIONS(2107), - [sym_raw_string] = ACTIONS(2105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2105), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2105), - [anon_sym_BQUOTE] = ACTIONS(2105), - [anon_sym_LT_LPAREN] = ACTIONS(2105), - [anon_sym_GT_LPAREN] = ACTIONS(2105), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2105), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1024), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(2146), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2148), + [anon_sym_SEMI_SEMI] = ACTIONS(2150), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2150), + [anon_sym_AMP] = ACTIONS(2146), }, [556] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(1008), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_DOLLAR] = ACTIONS(2111), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1024), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2146), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2148), + [anon_sym_SEMI_SEMI] = ACTIONS(2150), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2150), + [anon_sym_AMP] = ACTIONS(2146), }, [557] = { - [sym_string] = STATE(1010), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_DQUOTE] = ACTIONS(1114), - [anon_sym_DOLLAR] = ACTIONS(2113), - [sym_raw_string] = ACTIONS(2115), - [anon_sym_POUND] = ACTIONS(2113), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_QMARK] = ACTIONS(2119), - [anon_sym_0] = ACTIONS(2117), - [anon_sym__] = ACTIONS(2117), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(1025), + [sym_for_statement] = STATE(1025), + [sym_c_style_for_statement] = STATE(1025), + [sym_while_statement] = STATE(1025), + [sym_if_statement] = STATE(1025), + [sym_case_statement] = STATE(1025), + [sym_function_definition] = STATE(1025), + [sym_compound_statement] = STATE(1025), + [sym_subshell] = STATE(1025), + [sym_pipeline] = STATE(1025), + [sym_list] = STATE(1025), + [sym_negated_command] = STATE(1025), + [sym_test_command] = STATE(1025), + [sym_declaration_command] = STATE(1025), + [sym_unset_command] = STATE(1025), + [sym_command] = STATE(1025), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(1026), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [558] = { - [aux_sym_concatenation_repeat1] = STATE(1005), - [sym__concat] = ACTIONS(2103), - [anon_sym_RPAREN] = ACTIONS(2121), - [sym__special_characters] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2121), - [anon_sym_DOLLAR] = ACTIONS(2123), - [sym_raw_string] = ACTIONS(2121), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2121), - [anon_sym_BQUOTE] = ACTIONS(2121), - [anon_sym_LT_LPAREN] = ACTIONS(2121), - [anon_sym_GT_LPAREN] = ACTIONS(2121), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2121), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1028), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(2154), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(2148), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2154), + [anon_sym_AMP] = ACTIONS(2152), }, [559] = { - [sym_subscript] = STATE(1015), - [sym_variable_name] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_DOLLAR] = ACTIONS(2129), - [anon_sym_POUND] = ACTIONS(2127), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2131), - [anon_sym_STAR] = ACTIONS(2133), - [anon_sym_AT] = ACTIONS(2133), - [anon_sym_QMARK] = ACTIONS(2133), - [anon_sym_0] = ACTIONS(2131), - [anon_sym__] = ACTIONS(2131), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1028), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(2154), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(2148), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2154), + [anon_sym_AMP] = ACTIONS(2152), }, [560] = { - [sym__terminated_statement] = STATE(1018), - [sym_for_statement] = STATE(1016), - [sym_c_style_for_statement] = STATE(1016), - [sym_while_statement] = STATE(1016), - [sym_if_statement] = STATE(1016), - [sym_case_statement] = STATE(1016), - [sym_function_definition] = STATE(1016), - [sym_subshell] = STATE(1016), - [sym_pipeline] = STATE(1016), - [sym_list] = STATE(1016), - [sym_negated_command] = STATE(1016), - [sym_test_command] = STATE(1016), - [sym_declaration_command] = STATE(1016), - [sym_unset_command] = STATE(1016), - [sym_command] = STATE(1016), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(1017), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(1018), - [aux_sym_command_repeat1] = STATE(96), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(1029), + [sym_for_statement] = STATE(1029), + [sym_c_style_for_statement] = STATE(1029), + [sym_while_statement] = STATE(1029), + [sym_if_statement] = STATE(1029), + [sym_case_statement] = STATE(1029), + [sym_function_definition] = STATE(1029), + [sym_compound_statement] = STATE(1029), + [sym_subshell] = STATE(1029), + [sym_pipeline] = STATE(1029), + [sym_list] = STATE(1029), + [sym_negated_command] = STATE(1029), + [sym_test_command] = STATE(1029), + [sym_declaration_command] = STATE(1029), + [sym_unset_command] = STATE(1029), + [sym_command] = STATE(1029), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(1030), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(165), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), + [sym_variable_name] = ACTIONS(97), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [561] = { - [sym__terminated_statement] = STATE(1021), - [sym_for_statement] = STATE(1019), - [sym_c_style_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_negated_command] = STATE(1019), - [sym_test_command] = STATE(1019), - [sym_declaration_command] = STATE(1019), - [sym_unset_command] = STATE(1019), - [sym_command] = STATE(1019), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(1020), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(1021), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1033), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2158), + [anon_sym_SEMI_SEMI] = ACTIONS(2160), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2160), + [anon_sym_AMP] = ACTIONS(2156), }, [562] = { - [sym__terminated_statement] = STATE(1024), - [sym_for_statement] = STATE(1022), - [sym_c_style_for_statement] = STATE(1022), - [sym_while_statement] = STATE(1022), - [sym_if_statement] = STATE(1022), - [sym_case_statement] = STATE(1022), - [sym_function_definition] = STATE(1022), - [sym_subshell] = STATE(1022), - [sym_pipeline] = STATE(1022), - [sym_list] = STATE(1022), - [sym_negated_command] = STATE(1022), - [sym_test_command] = STATE(1022), - [sym_declaration_command] = STATE(1022), - [sym_unset_command] = STATE(1022), - [sym_command] = STATE(1022), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(1023), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(1024), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1033), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2158), + [anon_sym_SEMI_SEMI] = ACTIONS(2160), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2160), + [anon_sym_AMP] = ACTIONS(2156), }, [563] = { - [sym_concatenation] = STATE(1026), - [sym_string] = STATE(558), - [sym_simple_expansion] = STATE(558), - [sym_string_expansion] = STATE(558), - [sym_expansion] = STATE(558), - [sym_command_substitution] = STATE(558), - [sym_process_substitution] = STATE(558), - [aux_sym_for_statement_repeat1] = STATE(1026), - [anon_sym_RPAREN] = ACTIONS(2135), - [sym__special_characters] = ACTIONS(1112), - [anon_sym_DQUOTE] = ACTIONS(1114), - [anon_sym_DOLLAR] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), - [anon_sym_BQUOTE] = ACTIONS(1124), - [anon_sym_LT_LPAREN] = ACTIONS(1126), - [anon_sym_GT_LPAREN] = ACTIONS(1126), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1118), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(1034), + [sym_for_statement] = STATE(1034), + [sym_c_style_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_compound_statement] = STATE(1034), + [sym_subshell] = STATE(1034), + [sym_pipeline] = STATE(1034), + [sym_list] = STATE(1034), + [sym_negated_command] = STATE(1034), + [sym_test_command] = STATE(1034), + [sym_declaration_command] = STATE(1034), + [sym_unset_command] = STATE(1034), + [sym_command] = STATE(1034), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(1035), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [564] = { - [sym_string] = STATE(1027), - [sym_simple_expansion] = STATE(1027), - [sym_string_expansion] = STATE(1027), - [sym_expansion] = STATE(1027), - [sym_command_substitution] = STATE(1027), - [sym_process_substitution] = STATE(1027), - [sym__special_characters] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(387), - [anon_sym_DOLLAR] = ACTIONS(389), - [sym_raw_string] = ACTIONS(2137), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(393), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(395), - [anon_sym_BQUOTE] = ACTIONS(397), - [anon_sym_LT_LPAREN] = ACTIONS(399), - [anon_sym_GT_LPAREN] = ACTIONS(399), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2137), + [sym__expression] = STATE(1037), + [sym_binary_expression] = STATE(1037), + [sym_unary_expression] = STATE(1037), + [sym_postfix_expression] = STATE(1037), + [sym_parenthesized_expression] = STATE(1037), + [sym_concatenation] = STATE(1037), + [sym_string] = STATE(45), + [sym_simple_expansion] = STATE(45), + [sym_string_expansion] = STATE(45), + [sym_expansion] = STATE(45), + [sym_command_substitution] = STATE(45), + [sym_process_substitution] = STATE(45), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [sym__special_characters] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(81), + [sym_raw_string] = ACTIONS(83), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(85), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(89), + [anon_sym_LT_LPAREN] = ACTIONS(91), + [anon_sym_GT_LPAREN] = ACTIONS(91), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(93), + [sym_test_operator] = ACTIONS(95), }, [565] = { - [aux_sym_concatenation_repeat1] = STATE(1028), - [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(1130), - [sym_variable_name] = ACTIONS(807), - [ts_builtin_sym_end] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(809), - [anon_sym_AMP_GT_GT] = ACTIONS(807), - [anon_sym_LT_AMP] = ACTIONS(807), - [anon_sym_GT_AMP] = ACTIONS(807), - [sym__special_characters] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_LT_LPAREN] = ACTIONS(807), - [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(809), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_SEMI_SEMI] = ACTIONS(2166), + [anon_sym_AMP_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(1167), + [anon_sym_EQ_TILDE] = ACTIONS(1169), + [anon_sym_EQ_EQ] = ACTIONS(1169), + [anon_sym_EQ] = ACTIONS(1171), + [anon_sym_PLUS_EQ] = ACTIONS(1167), + [anon_sym_LT] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_DASH_EQ] = ACTIONS(1167), + [anon_sym_LT_EQ] = ACTIONS(1167), + [anon_sym_GT_EQ] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1167), + [anon_sym_LF] = ACTIONS(2166), + [anon_sym_AMP] = ACTIONS(2164), }, [566] = { - [sym_file_descriptor] = ACTIONS(811), - [sym__concat] = ACTIONS(811), - [sym_variable_name] = ACTIONS(811), - [ts_builtin_sym_end] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(813), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_AMP_GT] = ACTIONS(813), - [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_LT_AMP] = ACTIONS(811), - [anon_sym_GT_AMP] = ACTIONS(811), - [sym__special_characters] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(813), - [sym_raw_string] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(813), - [anon_sym_LF] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(813), + [anon_sym_RPAREN] = ACTIONS(2168), + [anon_sym_AMP_AMP] = ACTIONS(1217), + [anon_sym_PIPE_PIPE] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_EQ] = ACTIONS(1221), + [anon_sym_PLUS_EQ] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_DASH_EQ] = ACTIONS(1217), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1223), + [anon_sym_DASH_DASH] = ACTIONS(1223), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1217), }, [567] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(2139), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_SEMI_SEMI] = ACTIONS(1225), + [anon_sym_AMP_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(1167), + [anon_sym_EQ_TILDE] = ACTIONS(1169), + [anon_sym_EQ_EQ] = ACTIONS(1169), + [anon_sym_EQ] = ACTIONS(1171), + [anon_sym_PLUS_EQ] = ACTIONS(1167), + [anon_sym_LT] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_DASH_EQ] = ACTIONS(1167), + [anon_sym_LT_EQ] = ACTIONS(1167), + [anon_sym_GT_EQ] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1167), + [anon_sym_LF] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(2170), }, [568] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(473), - [anon_sym_DQUOTE] = ACTIONS(2139), - [anon_sym_DOLLAR] = ACTIONS(2141), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym_string] = STATE(1040), + [sym_simple_expansion] = STATE(1040), + [sym_string_expansion] = STATE(1040), + [sym_expansion] = STATE(1040), + [sym_command_substitution] = STATE(1040), + [sym_process_substitution] = STATE(1040), + [sym__special_characters] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(385), + [sym_raw_string] = ACTIONS(2172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(389), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(391), + [anon_sym_BQUOTE] = ACTIONS(393), + [anon_sym_LT_LPAREN] = ACTIONS(395), + [anon_sym_GT_LPAREN] = ACTIONS(395), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2172), }, [569] = { - [sym_file_descriptor] = ACTIONS(845), - [sym__concat] = ACTIONS(845), - [sym_variable_name] = ACTIONS(845), - [ts_builtin_sym_end] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_SEMI_SEMI] = ACTIONS(845), - [anon_sym_PIPE_AMP] = ACTIONS(845), - [anon_sym_AMP_AMP] = ACTIONS(845), - [anon_sym_PIPE_PIPE] = ACTIONS(845), - [anon_sym_LT] = ACTIONS(847), - [anon_sym_GT] = ACTIONS(847), - [anon_sym_GT_GT] = ACTIONS(845), - [anon_sym_AMP_GT] = ACTIONS(847), - [anon_sym_AMP_GT_GT] = ACTIONS(845), - [anon_sym_LT_AMP] = ACTIONS(845), - [anon_sym_GT_AMP] = ACTIONS(845), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(845), - [anon_sym_DOLLAR] = ACTIONS(847), - [sym_raw_string] = ACTIONS(845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(845), - [anon_sym_LT_LPAREN] = ACTIONS(845), - [anon_sym_GT_LPAREN] = ACTIONS(845), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(847), - [anon_sym_LF] = ACTIONS(845), - [anon_sym_AMP] = ACTIONS(847), + [aux_sym_concatenation_repeat1] = STATE(1041), + [sym__concat] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_EQ_TILDE] = ACTIONS(779), + [anon_sym_EQ_EQ] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(781), + [anon_sym_PLUS_EQ] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_BANG_EQ] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_EQ] = ACTIONS(779), + [anon_sym_LT_EQ] = ACTIONS(779), + [anon_sym_GT_EQ] = ACTIONS(779), + [anon_sym_PLUS_PLUS] = ACTIONS(779), + [anon_sym_DASH_DASH] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(779), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(781), }, [570] = { - [sym_file_descriptor] = ACTIONS(849), - [sym__concat] = ACTIONS(849), - [sym_variable_name] = ACTIONS(849), - [ts_builtin_sym_end] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_SEMI_SEMI] = ACTIONS(849), - [anon_sym_PIPE_AMP] = ACTIONS(849), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(851), - [anon_sym_GT_GT] = ACTIONS(849), - [anon_sym_AMP_GT] = ACTIONS(851), - [anon_sym_AMP_GT_GT] = ACTIONS(849), - [anon_sym_LT_AMP] = ACTIONS(849), - [anon_sym_GT_AMP] = ACTIONS(849), - [sym__special_characters] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(851), - [sym_raw_string] = ACTIONS(849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(849), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(851), - [anon_sym_LF] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(851), + [sym__concat] = ACTIONS(783), + [anon_sym_SEMI] = ACTIONS(785), + [anon_sym_SEMI_SEMI] = ACTIONS(783), + [anon_sym_AMP_AMP] = ACTIONS(783), + [anon_sym_PIPE_PIPE] = ACTIONS(783), + [anon_sym_EQ_TILDE] = ACTIONS(783), + [anon_sym_EQ_EQ] = ACTIONS(783), + [anon_sym_EQ] = ACTIONS(785), + [anon_sym_PLUS_EQ] = ACTIONS(783), + [anon_sym_LT] = ACTIONS(785), + [anon_sym_GT] = ACTIONS(785), + [anon_sym_BANG_EQ] = ACTIONS(783), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_DASH_EQ] = ACTIONS(783), + [anon_sym_LT_EQ] = ACTIONS(783), + [anon_sym_GT_EQ] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_DASH_DASH] = ACTIONS(783), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(783), + [anon_sym_LF] = ACTIONS(783), + [anon_sym_AMP] = ACTIONS(785), }, [571] = { - [sym_file_descriptor] = ACTIONS(853), - [sym__concat] = ACTIONS(853), - [sym_variable_name] = ACTIONS(853), - [ts_builtin_sym_end] = ACTIONS(853), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_PIPE] = ACTIONS(855), - [anon_sym_RPAREN] = ACTIONS(853), - [anon_sym_SEMI_SEMI] = ACTIONS(853), - [anon_sym_PIPE_AMP] = ACTIONS(853), - [anon_sym_AMP_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(853), - [anon_sym_LT] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(855), - [anon_sym_GT_GT] = ACTIONS(853), - [anon_sym_AMP_GT] = ACTIONS(855), - [anon_sym_AMP_GT_GT] = ACTIONS(853), - [anon_sym_LT_AMP] = ACTIONS(853), - [anon_sym_GT_AMP] = ACTIONS(853), - [sym__special_characters] = ACTIONS(853), - [anon_sym_DQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(855), - [sym_raw_string] = ACTIONS(853), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), - [anon_sym_BQUOTE] = ACTIONS(853), - [anon_sym_LT_LPAREN] = ACTIONS(853), - [anon_sym_GT_LPAREN] = ACTIONS(853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(855), - [anon_sym_LF] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(2174), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [572] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(2143), - [sym_comment] = ACTIONS(55), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(455), + [anon_sym_DQUOTE] = ACTIONS(2174), + [anon_sym_DOLLAR] = ACTIONS(2176), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [573] = { - [sym_subscript] = STATE(1034), - [sym_variable_name] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_DOLLAR] = ACTIONS(2147), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_AT] = ACTIONS(2151), - [anon_sym_QMARK] = ACTIONS(2151), - [anon_sym_0] = ACTIONS(2149), - [anon_sym__] = ACTIONS(2149), + [sym__concat] = ACTIONS(817), + [anon_sym_SEMI] = ACTIONS(819), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_EQ_TILDE] = ACTIONS(817), + [anon_sym_EQ_EQ] = ACTIONS(817), + [anon_sym_EQ] = ACTIONS(819), + [anon_sym_PLUS_EQ] = ACTIONS(817), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_BANG_EQ] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_DASH_EQ] = ACTIONS(817), + [anon_sym_LT_EQ] = ACTIONS(817), + [anon_sym_GT_EQ] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(817), + [anon_sym_DASH_DASH] = ACTIONS(817), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(817), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(819), }, [574] = { - [sym_concatenation] = STATE(1037), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1037), - [anon_sym_RBRACE] = ACTIONS(2153), - [anon_sym_EQ] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_COLON] = ACTIONS(2155), - [anon_sym_COLON_QMARK] = ACTIONS(2155), - [anon_sym_COLON_DASH] = ACTIONS(2155), - [anon_sym_PERCENT] = ACTIONS(2155), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(821), + [anon_sym_SEMI] = ACTIONS(823), + [anon_sym_SEMI_SEMI] = ACTIONS(821), + [anon_sym_AMP_AMP] = ACTIONS(821), + [anon_sym_PIPE_PIPE] = ACTIONS(821), + [anon_sym_EQ_TILDE] = ACTIONS(821), + [anon_sym_EQ_EQ] = ACTIONS(821), + [anon_sym_EQ] = ACTIONS(823), + [anon_sym_PLUS_EQ] = ACTIONS(821), + [anon_sym_LT] = ACTIONS(823), + [anon_sym_GT] = ACTIONS(823), + [anon_sym_BANG_EQ] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_EQ] = ACTIONS(821), + [anon_sym_LT_EQ] = ACTIONS(821), + [anon_sym_GT_EQ] = ACTIONS(821), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(821), + [anon_sym_LF] = ACTIONS(821), + [anon_sym_AMP] = ACTIONS(823), }, [575] = { - [sym_concatenation] = STATE(1040), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1040), - [anon_sym_RBRACE] = ACTIONS(2161), - [anon_sym_EQ] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2163), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2165), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_COLON] = ACTIONS(2163), - [anon_sym_COLON_QMARK] = ACTIONS(2163), - [anon_sym_COLON_DASH] = ACTIONS(2163), - [anon_sym_PERCENT] = ACTIONS(2163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(825), + [anon_sym_SEMI] = ACTIONS(827), + [anon_sym_SEMI_SEMI] = ACTIONS(825), + [anon_sym_AMP_AMP] = ACTIONS(825), + [anon_sym_PIPE_PIPE] = ACTIONS(825), + [anon_sym_EQ_TILDE] = ACTIONS(825), + [anon_sym_EQ_EQ] = ACTIONS(825), + [anon_sym_EQ] = ACTIONS(827), + [anon_sym_PLUS_EQ] = ACTIONS(825), + [anon_sym_LT] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(825), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_DASH_EQ] = ACTIONS(825), + [anon_sym_LT_EQ] = ACTIONS(825), + [anon_sym_GT_EQ] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(825), + [anon_sym_LF] = ACTIONS(825), + [anon_sym_AMP] = ACTIONS(827), }, [576] = { - [anon_sym_SEMI] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2171), - [anon_sym_SEMI_SEMI] = ACTIONS(2173), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2173), - [anon_sym_AMP] = ACTIONS(2169), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(2178), + [sym_comment] = ACTIONS(57), }, [577] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2171), - [anon_sym_SEMI_SEMI] = ACTIONS(2173), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2173), - [anon_sym_AMP] = ACTIONS(2169), + [sym_subscript] = STATE(1047), + [sym_variable_name] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2182), + [anon_sym_DOLLAR] = ACTIONS(2182), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2186), + [anon_sym_AT] = ACTIONS(2186), + [anon_sym_QMARK] = ACTIONS(2186), + [anon_sym_0] = ACTIONS(2184), + [anon_sym__] = ACTIONS(2184), }, [578] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(1043), - [sym_c_style_for_statement] = STATE(1043), - [sym_while_statement] = STATE(1043), - [sym_if_statement] = STATE(1043), - [sym_case_statement] = STATE(1043), - [sym_function_definition] = STATE(1043), - [sym_subshell] = STATE(1043), - [sym_pipeline] = STATE(1043), - [sym_list] = STATE(1043), - [sym_negated_command] = STATE(1043), - [sym_test_command] = STATE(1043), - [sym_declaration_command] = STATE(1043), - [sym_unset_command] = STATE(1043), - [sym_command] = STATE(1043), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(1044), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_concatenation] = STATE(1050), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1050), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_EQ] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2190), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2192), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(2194), + [anon_sym_COLON] = ACTIONS(2190), + [anon_sym_COLON_QMARK] = ACTIONS(2190), + [anon_sym_COLON_DASH] = ACTIONS(2190), + [anon_sym_PERCENT] = ACTIONS(2190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [579] = { - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(2177), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(2171), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2175), + [sym_concatenation] = STATE(1053), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1053), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_EQ] = ACTIONS(2198), + [anon_sym_DASH] = ACTIONS(2198), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2200), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(2202), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_COLON_QMARK] = ACTIONS(2198), + [anon_sym_COLON_DASH] = ACTIONS(2198), + [anon_sym_PERCENT] = ACTIONS(2198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [580] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(2177), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(2171), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2175), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1056), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2206), + [anon_sym_SEMI_SEMI] = ACTIONS(2208), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2204), }, [581] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(1046), - [sym_c_style_for_statement] = STATE(1046), - [sym_while_statement] = STATE(1046), - [sym_if_statement] = STATE(1046), - [sym_case_statement] = STATE(1046), - [sym_function_definition] = STATE(1046), - [sym_subshell] = STATE(1046), - [sym_pipeline] = STATE(1046), - [sym_list] = STATE(1046), - [sym_negated_command] = STATE(1046), - [sym_test_command] = STATE(1046), - [sym_declaration_command] = STATE(1046), - [sym_unset_command] = STATE(1046), - [sym_command] = STATE(1046), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(1047), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1056), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2206), + [anon_sym_SEMI_SEMI] = ACTIONS(2208), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2204), }, [582] = { - [anon_sym_SEMI] = ACTIONS(2179), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2181), - [anon_sym_SEMI_SEMI] = ACTIONS(2183), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2183), - [anon_sym_AMP] = ACTIONS(2179), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(1057), + [sym_for_statement] = STATE(1057), + [sym_c_style_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_compound_statement] = STATE(1057), + [sym_subshell] = STATE(1057), + [sym_pipeline] = STATE(1057), + [sym_list] = STATE(1057), + [sym_negated_command] = STATE(1057), + [sym_test_command] = STATE(1057), + [sym_declaration_command] = STATE(1057), + [sym_unset_command] = STATE(1057), + [sym_command] = STATE(1057), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(1058), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [583] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2179), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2181), - [anon_sym_SEMI_SEMI] = ACTIONS(2183), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2183), - [anon_sym_AMP] = ACTIONS(2179), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1060), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(2210), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(2212), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(2206), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2212), + [anon_sym_AMP] = ACTIONS(2210), }, [584] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(1050), - [sym_c_style_for_statement] = STATE(1050), - [sym_while_statement] = STATE(1050), - [sym_if_statement] = STATE(1050), - [sym_case_statement] = STATE(1050), - [sym_function_definition] = STATE(1050), - [sym_subshell] = STATE(1050), - [sym_pipeline] = STATE(1050), - [sym_list] = STATE(1050), - [sym_negated_command] = STATE(1050), - [sym_test_command] = STATE(1050), - [sym_declaration_command] = STATE(1050), - [sym_unset_command] = STATE(1050), - [sym_command] = STATE(1050), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(1051), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1060), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2210), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(2212), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(2206), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2212), + [anon_sym_AMP] = ACTIONS(2210), }, [585] = { - [sym__expression] = STATE(1053), - [sym_binary_expression] = STATE(1053), - [sym_unary_expression] = STATE(1053), - [sym_postfix_expression] = STATE(1053), - [sym_parenthesized_expression] = STATE(1053), - [sym_concatenation] = STATE(1053), - [sym_string] = STATE(44), - [sym_simple_expansion] = STATE(44), - [sym_string_expansion] = STATE(44), - [sym_expansion] = STATE(44), - [sym_command_substitution] = STATE(44), - [sym_process_substitution] = STATE(44), - [anon_sym_RPAREN_RPAREN] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(73), - [sym__special_characters] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(79), - [sym_raw_string] = ACTIONS(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), - [anon_sym_BQUOTE] = ACTIONS(87), - [anon_sym_LT_LPAREN] = ACTIONS(89), - [anon_sym_GT_LPAREN] = ACTIONS(89), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(91), - [sym_test_operator] = ACTIONS(93), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(1061), + [sym_for_statement] = STATE(1061), + [sym_c_style_for_statement] = STATE(1061), + [sym_while_statement] = STATE(1061), + [sym_if_statement] = STATE(1061), + [sym_case_statement] = STATE(1061), + [sym_function_definition] = STATE(1061), + [sym_compound_statement] = STATE(1061), + [sym_subshell] = STATE(1061), + [sym_pipeline] = STATE(1061), + [sym_list] = STATE(1061), + [sym_negated_command] = STATE(1061), + [sym_test_command] = STATE(1061), + [sym_declaration_command] = STATE(1061), + [sym_unset_command] = STATE(1061), + [sym_command] = STATE(1061), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(1062), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [586] = { - [anon_sym_SEMI] = ACTIONS(2187), - [anon_sym_SEMI_SEMI] = ACTIONS(2189), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_PIPE_PIPE] = ACTIONS(1188), - [anon_sym_EQ_TILDE] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1192), - [anon_sym_PLUS_EQ] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_BANG_EQ] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_DASH_EQ] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1188), - [anon_sym_LF] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2187), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1065), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2216), + [anon_sym_SEMI_SEMI] = ACTIONS(2218), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2218), + [anon_sym_AMP] = ACTIONS(2214), }, [587] = { - [anon_sym_RPAREN] = ACTIONS(2191), - [anon_sym_AMP_AMP] = ACTIONS(1240), - [anon_sym_PIPE_PIPE] = ACTIONS(1240), - [anon_sym_EQ_TILDE] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1244), - [anon_sym_PLUS_EQ] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1244), - [anon_sym_GT] = ACTIONS(1244), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_DASH_EQ] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1240), - [anon_sym_GT_EQ] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1240), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1065), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2216), + [anon_sym_SEMI_SEMI] = ACTIONS(2218), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2218), + [anon_sym_AMP] = ACTIONS(2214), }, [588] = { - [anon_sym_SEMI] = ACTIONS(2193), - [anon_sym_SEMI_SEMI] = ACTIONS(1248), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_PIPE_PIPE] = ACTIONS(1188), - [anon_sym_EQ_TILDE] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1192), - [anon_sym_PLUS_EQ] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_BANG_EQ] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_DASH_EQ] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1188), - [anon_sym_LF] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(2193), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(1066), + [sym_for_statement] = STATE(1066), + [sym_c_style_for_statement] = STATE(1066), + [sym_while_statement] = STATE(1066), + [sym_if_statement] = STATE(1066), + [sym_case_statement] = STATE(1066), + [sym_function_definition] = STATE(1066), + [sym_compound_statement] = STATE(1066), + [sym_subshell] = STATE(1066), + [sym_pipeline] = STATE(1066), + [sym_list] = STATE(1066), + [sym_negated_command] = STATE(1066), + [sym_test_command] = STATE(1066), + [sym_declaration_command] = STATE(1066), + [sym_unset_command] = STATE(1066), + [sym_command] = STATE(1066), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(1067), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [589] = { - [sym_string] = STATE(1056), - [sym_simple_expansion] = STATE(1056), - [sym_string_expansion] = STATE(1056), - [sym_expansion] = STATE(1056), - [sym_command_substitution] = STATE(1056), - [sym_process_substitution] = STATE(1056), - [sym__special_characters] = ACTIONS(2195), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(413), - [sym_raw_string] = ACTIONS(2195), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [anon_sym_BQUOTE] = ACTIONS(421), - [anon_sym_LT_LPAREN] = ACTIONS(423), - [anon_sym_GT_LPAREN] = ACTIONS(423), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2195), + [sym__expression] = STATE(1068), + [sym_binary_expression] = STATE(1068), + [sym_unary_expression] = STATE(1068), + [sym_postfix_expression] = STATE(1068), + [sym_parenthesized_expression] = STATE(1068), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(212), + [sym_simple_expansion] = STATE(212), + [sym_string_expansion] = STATE(212), + [sym_expansion] = STATE(212), + [sym_command_substitution] = STATE(212), + [sym_process_substitution] = STATE(212), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_SEMI_SEMI] = ACTIONS(2166), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(379), + [sym__special_characters] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(385), + [sym_raw_string] = ACTIONS(387), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(389), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(391), + [anon_sym_BQUOTE] = ACTIONS(393), + [anon_sym_LT_LPAREN] = ACTIONS(395), + [anon_sym_GT_LPAREN] = ACTIONS(395), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(397), + [sym_test_operator] = ACTIONS(399), + [anon_sym_LF] = ACTIONS(2166), + [anon_sym_AMP] = ACTIONS(2166), }, [590] = { - [aux_sym_concatenation_repeat1] = STATE(1057), - [sym__concat] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(809), - [anon_sym_DASH_EQ] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(807), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), + [sym__expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_unary_expression] = STATE(1069), + [sym_postfix_expression] = STATE(1069), + [sym_parenthesized_expression] = STATE(1069), + [sym_concatenation] = STATE(1069), + [sym_string] = STATE(212), + [sym_simple_expansion] = STATE(212), + [sym_string_expansion] = STATE(212), + [sym_expansion] = STATE(212), + [sym_command_substitution] = STATE(212), + [sym_process_substitution] = STATE(212), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(379), + [sym__special_characters] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(385), + [sym_raw_string] = ACTIONS(387), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(389), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(391), + [anon_sym_BQUOTE] = ACTIONS(393), + [anon_sym_LT_LPAREN] = ACTIONS(395), + [anon_sym_GT_LPAREN] = ACTIONS(395), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(397), + [sym_test_operator] = ACTIONS(399), }, [591] = { - [sym__concat] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(813), - [anon_sym_esac] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(813), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_EQ_TILDE] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(813), - [anon_sym_PLUS_EQ] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_DASH_EQ] = ACTIONS(811), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_PLUS_PLUS] = ACTIONS(811), - [anon_sym_DASH_DASH] = ACTIONS(811), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(811), - [anon_sym_LF] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(813), + [sym__expression] = STATE(1069), + [sym_binary_expression] = STATE(1069), + [sym_unary_expression] = STATE(1069), + [sym_postfix_expression] = STATE(1069), + [sym_parenthesized_expression] = STATE(1069), + [sym_concatenation] = STATE(1069), + [sym_string] = STATE(212), + [sym_simple_expansion] = STATE(212), + [sym_string_expansion] = STATE(212), + [sym_expansion] = STATE(212), + [sym_command_substitution] = STATE(212), + [sym_process_substitution] = STATE(212), + [sym_regex] = ACTIONS(2220), + [anon_sym_LPAREN] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(379), + [sym__special_characters] = ACTIONS(381), + [anon_sym_DQUOTE] = ACTIONS(383), + [anon_sym_DOLLAR] = ACTIONS(385), + [sym_raw_string] = ACTIONS(387), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(389), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(391), + [anon_sym_BQUOTE] = ACTIONS(393), + [anon_sym_LT_LPAREN] = ACTIONS(395), + [anon_sym_GT_LPAREN] = ACTIONS(395), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(397), + [sym_test_operator] = ACTIONS(399), }, [592] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym_SEMI_SEMI] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [anon_sym_EQ_TILDE] = ACTIONS(1281), + [anon_sym_EQ_EQ] = ACTIONS(1281), + [anon_sym_EQ] = ACTIONS(1283), + [anon_sym_PLUS_EQ] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_BANG_EQ] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_DASH_EQ] = ACTIONS(1281), + [anon_sym_LT_EQ] = ACTIONS(1281), + [anon_sym_GT_EQ] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1281), + [anon_sym_LF] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1283), }, [593] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(473), - [anon_sym_DQUOTE] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2199), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [aux_sym_concatenation_repeat1] = STATE(1072), + [sym__concat] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2084), + [anon_sym_SEMI_SEMI] = ACTIONS(2082), + [sym__special_characters] = ACTIONS(2082), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_DOLLAR] = ACTIONS(2084), + [sym_raw_string] = ACTIONS(2082), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2082), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2082), + [anon_sym_BQUOTE] = ACTIONS(2082), + [anon_sym_LT_LPAREN] = ACTIONS(2082), + [anon_sym_GT_LPAREN] = ACTIONS(2082), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2084), + [anon_sym_LF] = ACTIONS(2082), + [anon_sym_AMP] = ACTIONS(2082), }, [594] = { - [sym__concat] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_esac] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_SEMI_SEMI] = ACTIONS(845), - [anon_sym_PIPE_AMP] = ACTIONS(845), - [anon_sym_AMP_AMP] = ACTIONS(845), - [anon_sym_PIPE_PIPE] = ACTIONS(845), - [anon_sym_EQ_TILDE] = ACTIONS(845), - [anon_sym_EQ_EQ] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(847), - [anon_sym_PLUS_EQ] = ACTIONS(845), - [anon_sym_LT] = ACTIONS(847), - [anon_sym_GT] = ACTIONS(847), - [anon_sym_BANG_EQ] = ACTIONS(845), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_DASH_EQ] = ACTIONS(845), - [anon_sym_LT_EQ] = ACTIONS(845), - [anon_sym_GT_EQ] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(845), - [anon_sym_LF] = ACTIONS(845), - [anon_sym_AMP] = ACTIONS(847), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(1075), + [anon_sym_DQUOTE] = ACTIONS(2224), + [anon_sym_DOLLAR] = ACTIONS(2226), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [595] = { - [sym__concat] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_esac] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_SEMI_SEMI] = ACTIONS(849), - [anon_sym_PIPE_AMP] = ACTIONS(849), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [anon_sym_EQ_TILDE] = ACTIONS(849), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_EQ] = ACTIONS(851), - [anon_sym_PLUS_EQ] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_DASH_EQ] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(849), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(849), - [anon_sym_LF] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(851), + [sym_string] = STATE(1077), + [anon_sym_DASH] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(2228), + [sym_raw_string] = ACTIONS(2230), + [anon_sym_POUND] = ACTIONS(2228), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2234), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_QMARK] = ACTIONS(2234), + [anon_sym_0] = ACTIONS(2232), + [anon_sym__] = ACTIONS(2232), }, [596] = { - [sym__concat] = ACTIONS(853), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_esac] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(855), - [anon_sym_SEMI_SEMI] = ACTIONS(853), - [anon_sym_PIPE_AMP] = ACTIONS(853), - [anon_sym_AMP_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(853), - [anon_sym_EQ_TILDE] = ACTIONS(853), - [anon_sym_EQ_EQ] = ACTIONS(853), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_PLUS_EQ] = ACTIONS(853), - [anon_sym_LT] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_EQ] = ACTIONS(853), - [anon_sym_LT_EQ] = ACTIONS(853), - [anon_sym_GT_EQ] = ACTIONS(853), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(853), - [anon_sym_LF] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(855), + [aux_sym_concatenation_repeat1] = STATE(1072), + [sym__concat] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2100), + [anon_sym_SEMI_SEMI] = ACTIONS(2098), + [sym__special_characters] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [anon_sym_DOLLAR] = ACTIONS(2100), + [sym_raw_string] = ACTIONS(2098), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2098), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2098), + [anon_sym_BQUOTE] = ACTIONS(2098), + [anon_sym_LT_LPAREN] = ACTIONS(2098), + [anon_sym_GT_LPAREN] = ACTIONS(2098), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2100), + [anon_sym_LF] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), }, [597] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(2201), - [sym_comment] = ACTIONS(55), + [sym_subscript] = STATE(1082), + [sym_variable_name] = ACTIONS(2236), + [anon_sym_BANG] = ACTIONS(2238), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_DOLLAR] = ACTIONS(2240), + [anon_sym_POUND] = ACTIONS(2238), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_0] = ACTIONS(2242), + [anon_sym__] = ACTIONS(2242), }, [598] = { - [sym_subscript] = STATE(1063), - [sym_variable_name] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2205), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_AT] = ACTIONS(2209), - [anon_sym_QMARK] = ACTIONS(2209), - [anon_sym_0] = ACTIONS(2207), - [anon_sym__] = ACTIONS(2207), + [sym__terminated_statement] = STATE(1085), + [sym_redirected_statement] = STATE(1083), + [sym_for_statement] = STATE(1083), + [sym_c_style_for_statement] = STATE(1083), + [sym_while_statement] = STATE(1083), + [sym_if_statement] = STATE(1083), + [sym_case_statement] = STATE(1083), + [sym_function_definition] = STATE(1083), + [sym_compound_statement] = STATE(1083), + [sym_subshell] = STATE(1083), + [sym_pipeline] = STATE(1083), + [sym_list] = STATE(1083), + [sym_negated_command] = STATE(1083), + [sym_test_command] = STATE(1083), + [sym_declaration_command] = STATE(1083), + [sym_unset_command] = STATE(1083), + [sym_command] = STATE(1083), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(1084), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(1085), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [599] = { - [sym_concatenation] = STATE(1066), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1066), - [anon_sym_RBRACE] = ACTIONS(2211), - [anon_sym_EQ] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2215), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(2217), - [anon_sym_COLON] = ACTIONS(2213), - [anon_sym_COLON_QMARK] = ACTIONS(2213), - [anon_sym_COLON_DASH] = ACTIONS(2213), - [anon_sym_PERCENT] = ACTIONS(2213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__terminated_statement] = STATE(1088), + [sym_redirected_statement] = STATE(1086), + [sym_for_statement] = STATE(1086), + [sym_c_style_for_statement] = STATE(1086), + [sym_while_statement] = STATE(1086), + [sym_if_statement] = STATE(1086), + [sym_case_statement] = STATE(1086), + [sym_function_definition] = STATE(1086), + [sym_compound_statement] = STATE(1086), + [sym_subshell] = STATE(1086), + [sym_pipeline] = STATE(1086), + [sym_list] = STATE(1086), + [sym_negated_command] = STATE(1086), + [sym_test_command] = STATE(1086), + [sym_declaration_command] = STATE(1086), + [sym_unset_command] = STATE(1086), + [sym_command] = STATE(1086), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(1087), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(1088), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [600] = { - [sym_concatenation] = STATE(1069), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1069), - [anon_sym_RBRACE] = ACTIONS(2219), - [anon_sym_EQ] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2223), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(2225), - [anon_sym_COLON] = ACTIONS(2221), - [anon_sym_COLON_QMARK] = ACTIONS(2221), - [anon_sym_COLON_DASH] = ACTIONS(2221), - [anon_sym_PERCENT] = ACTIONS(2221), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__terminated_statement] = STATE(1091), + [sym_redirected_statement] = STATE(1089), + [sym_for_statement] = STATE(1089), + [sym_c_style_for_statement] = STATE(1089), + [sym_while_statement] = STATE(1089), + [sym_if_statement] = STATE(1089), + [sym_case_statement] = STATE(1089), + [sym_function_definition] = STATE(1089), + [sym_compound_statement] = STATE(1089), + [sym_subshell] = STATE(1089), + [sym_pipeline] = STATE(1089), + [sym_list] = STATE(1089), + [sym_negated_command] = STATE(1089), + [sym_test_command] = STATE(1089), + [sym_declaration_command] = STATE(1089), + [sym_unset_command] = STATE(1089), + [sym_command] = STATE(1089), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(1090), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(1091), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [601] = { - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2229), - [anon_sym_SEMI_SEMI] = ACTIONS(2231), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2231), - [anon_sym_AMP] = ACTIONS(2227), + [sym_concatenation] = STATE(1093), + [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_for_statement_repeat1] = STATE(1093), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_SEMI_SEMI] = ACTIONS(2248), + [sym__special_characters] = ACTIONS(1175), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1179), + [sym_raw_string] = ACTIONS(1181), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1183), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1185), + [anon_sym_BQUOTE] = ACTIONS(1187), + [anon_sym_LT_LPAREN] = ACTIONS(1189), + [anon_sym_GT_LPAREN] = ACTIONS(1189), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2250), + [anon_sym_LF] = ACTIONS(2248), + [anon_sym_AMP] = ACTIONS(2248), }, [602] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2229), - [anon_sym_SEMI_SEMI] = ACTIONS(2231), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2231), - [anon_sym_AMP] = ACTIONS(2227), + [sym__simple_heredoc_body] = ACTIONS(2252), + [sym__heredoc_body_beginning] = ACTIONS(2252), + [sym_file_descriptor] = ACTIONS(2252), + [ts_builtin_sym_end] = ACTIONS(2252), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_esac] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_RPAREN] = ACTIONS(2252), + [anon_sym_SEMI_SEMI] = ACTIONS(2252), + [anon_sym_PIPE_AMP] = ACTIONS(2252), + [anon_sym_AMP_AMP] = ACTIONS(2252), + [anon_sym_PIPE_PIPE] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_GT_GT] = ACTIONS(2252), + [anon_sym_AMP_GT] = ACTIONS(2254), + [anon_sym_AMP_GT_GT] = ACTIONS(2252), + [anon_sym_LT_AMP] = ACTIONS(2252), + [anon_sym_GT_AMP] = ACTIONS(2252), + [anon_sym_LT_LT] = ACTIONS(2254), + [anon_sym_LT_LT_DASH] = ACTIONS(2252), + [anon_sym_LT_LT_LT] = ACTIONS(2252), + [anon_sym_BQUOTE] = ACTIONS(2252), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2252), + [anon_sym_AMP] = ACTIONS(2254), }, [603] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(1072), - [sym_c_style_for_statement] = STATE(1072), - [sym_while_statement] = STATE(1072), - [sym_if_statement] = STATE(1072), - [sym_case_statement] = STATE(1072), - [sym_function_definition] = STATE(1072), - [sym_subshell] = STATE(1072), - [sym_pipeline] = STATE(1072), - [sym_list] = STATE(1072), - [sym_negated_command] = STATE(1072), - [sym_test_command] = STATE(1072), - [sym_declaration_command] = STATE(1072), - [sym_unset_command] = STATE(1072), - [sym_command] = STATE(1072), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(1073), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_RPAREN] = ACTIONS(2256), + [anon_sym_AMP_AMP] = ACTIONS(1217), + [anon_sym_PIPE_PIPE] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_EQ] = ACTIONS(1221), + [anon_sym_PLUS_EQ] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_DASH_EQ] = ACTIONS(1217), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1223), + [anon_sym_DASH_DASH] = ACTIONS(1223), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1217), }, [604] = { - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(2235), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(2229), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2235), - [anon_sym_AMP] = ACTIONS(2233), + [anon_sym_RPAREN] = ACTIONS(1225), + [anon_sym_AMP_AMP] = ACTIONS(1217), + [anon_sym_PIPE_PIPE] = ACTIONS(1217), + [anon_sym_EQ_TILDE] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_EQ] = ACTIONS(1221), + [anon_sym_PLUS_EQ] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_DASH_EQ] = ACTIONS(1217), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_PLUS_PLUS] = ACTIONS(1223), + [anon_sym_DASH_DASH] = ACTIONS(1223), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1217), }, [605] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(2235), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(2229), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2235), - [anon_sym_AMP] = ACTIONS(2233), + [sym_string] = STATE(1095), + [sym_simple_expansion] = STATE(1095), + [sym_string_expansion] = STATE(1095), + [sym_expansion] = STATE(1095), + [sym_command_substitution] = STATE(1095), + [sym_process_substitution] = STATE(1095), + [sym__special_characters] = ACTIONS(2258), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(415), + [sym_raw_string] = ACTIONS(2258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2258), }, [606] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(1075), - [sym_c_style_for_statement] = STATE(1075), - [sym_while_statement] = STATE(1075), - [sym_if_statement] = STATE(1075), - [sym_case_statement] = STATE(1075), - [sym_function_definition] = STATE(1075), - [sym_subshell] = STATE(1075), - [sym_pipeline] = STATE(1075), - [sym_list] = STATE(1075), - [sym_negated_command] = STATE(1075), - [sym_test_command] = STATE(1075), - [sym_declaration_command] = STATE(1075), - [sym_unset_command] = STATE(1075), - [sym_command] = STATE(1075), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(1076), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [aux_sym_concatenation_repeat1] = STATE(1096), + [sym__concat] = ACTIONS(1191), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_EQ_TILDE] = ACTIONS(779), + [anon_sym_EQ_EQ] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(781), + [anon_sym_PLUS_EQ] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_BANG_EQ] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_EQ] = ACTIONS(779), + [anon_sym_LT_EQ] = ACTIONS(779), + [anon_sym_GT_EQ] = ACTIONS(779), + [anon_sym_PLUS_PLUS] = ACTIONS(779), + [anon_sym_DASH_DASH] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(779), }, [607] = { - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2239), - [anon_sym_SEMI_SEMI] = ACTIONS(2241), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2237), + [sym__concat] = ACTIONS(783), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_RPAREN] = ACTIONS(783), + [anon_sym_AMP_AMP] = ACTIONS(783), + [anon_sym_PIPE_PIPE] = ACTIONS(783), + [anon_sym_EQ_TILDE] = ACTIONS(783), + [anon_sym_EQ_EQ] = ACTIONS(783), + [anon_sym_EQ] = ACTIONS(785), + [anon_sym_PLUS_EQ] = ACTIONS(783), + [anon_sym_LT] = ACTIONS(785), + [anon_sym_GT] = ACTIONS(785), + [anon_sym_BANG_EQ] = ACTIONS(783), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_DASH_EQ] = ACTIONS(783), + [anon_sym_LT_EQ] = ACTIONS(783), + [anon_sym_GT_EQ] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_DASH_DASH] = ACTIONS(783), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(783), }, [608] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2239), - [anon_sym_SEMI_SEMI] = ACTIONS(2241), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2241), - [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(2260), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [609] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(1079), - [sym_c_style_for_statement] = STATE(1079), - [sym_while_statement] = STATE(1079), - [sym_if_statement] = STATE(1079), - [sym_case_statement] = STATE(1079), - [sym_function_definition] = STATE(1079), - [sym_subshell] = STATE(1079), - [sym_pipeline] = STATE(1079), - [sym_list] = STATE(1079), - [sym_negated_command] = STATE(1079), - [sym_test_command] = STATE(1079), - [sym_declaration_command] = STATE(1079), - [sym_unset_command] = STATE(1079), - [sym_command] = STATE(1079), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(1080), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(455), + [anon_sym_DQUOTE] = ACTIONS(2260), + [anon_sym_DOLLAR] = ACTIONS(2262), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [610] = { - [sym__expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_unary_expression] = STATE(1081), - [sym_postfix_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_concatenation] = STATE(1081), - [sym_string] = STATE(223), - [sym_simple_expansion] = STATE(223), - [sym_string_expansion] = STATE(223), - [sym_expansion] = STATE(223), - [sym_command_substitution] = STATE(223), - [sym_process_substitution] = STATE(223), - [anon_sym_SEMI] = ACTIONS(2187), - [anon_sym_SEMI_SEMI] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_BANG] = ACTIONS(407), - [sym__special_characters] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [anon_sym_BQUOTE] = ACTIONS(421), - [anon_sym_LT_LPAREN] = ACTIONS(423), - [anon_sym_GT_LPAREN] = ACTIONS(423), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(425), - [sym_test_operator] = ACTIONS(427), - [anon_sym_LF] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), + [sym__concat] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_EQ_TILDE] = ACTIONS(817), + [anon_sym_EQ_EQ] = ACTIONS(817), + [anon_sym_EQ] = ACTIONS(819), + [anon_sym_PLUS_EQ] = ACTIONS(817), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_BANG_EQ] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_DASH_EQ] = ACTIONS(817), + [anon_sym_LT_EQ] = ACTIONS(817), + [anon_sym_GT_EQ] = ACTIONS(817), + [anon_sym_PLUS_PLUS] = ACTIONS(817), + [anon_sym_DASH_DASH] = ACTIONS(817), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(817), }, [611] = { - [sym__expression] = STATE(1082), - [sym_binary_expression] = STATE(1082), - [sym_unary_expression] = STATE(1082), - [sym_postfix_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(1082), - [sym_concatenation] = STATE(1082), - [sym_string] = STATE(223), - [sym_simple_expansion] = STATE(223), - [sym_string_expansion] = STATE(223), - [sym_expansion] = STATE(223), - [sym_command_substitution] = STATE(223), - [sym_process_substitution] = STATE(223), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_BANG] = ACTIONS(407), - [sym__special_characters] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [anon_sym_BQUOTE] = ACTIONS(421), - [anon_sym_LT_LPAREN] = ACTIONS(423), - [anon_sym_GT_LPAREN] = ACTIONS(423), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(425), - [sym_test_operator] = ACTIONS(427), + [sym__concat] = ACTIONS(821), + [anon_sym_PIPE] = ACTIONS(823), + [anon_sym_RPAREN] = ACTIONS(821), + [anon_sym_AMP_AMP] = ACTIONS(821), + [anon_sym_PIPE_PIPE] = ACTIONS(821), + [anon_sym_EQ_TILDE] = ACTIONS(821), + [anon_sym_EQ_EQ] = ACTIONS(821), + [anon_sym_EQ] = ACTIONS(823), + [anon_sym_PLUS_EQ] = ACTIONS(821), + [anon_sym_LT] = ACTIONS(823), + [anon_sym_GT] = ACTIONS(823), + [anon_sym_BANG_EQ] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_EQ] = ACTIONS(821), + [anon_sym_LT_EQ] = ACTIONS(821), + [anon_sym_GT_EQ] = ACTIONS(821), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(821), }, [612] = { - [sym__expression] = STATE(1082), - [sym_binary_expression] = STATE(1082), - [sym_unary_expression] = STATE(1082), - [sym_postfix_expression] = STATE(1082), - [sym_parenthesized_expression] = STATE(1082), - [sym_concatenation] = STATE(1082), - [sym_string] = STATE(223), - [sym_simple_expansion] = STATE(223), - [sym_string_expansion] = STATE(223), - [sym_expansion] = STATE(223), - [sym_command_substitution] = STATE(223), - [sym_process_substitution] = STATE(223), - [sym_regex] = ACTIONS(2243), - [anon_sym_LPAREN] = ACTIONS(405), - [anon_sym_BANG] = ACTIONS(407), - [sym__special_characters] = ACTIONS(409), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(413), - [sym_raw_string] = ACTIONS(415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [anon_sym_BQUOTE] = ACTIONS(421), - [anon_sym_LT_LPAREN] = ACTIONS(423), - [anon_sym_GT_LPAREN] = ACTIONS(423), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(425), - [sym_test_operator] = ACTIONS(427), + [sym__concat] = ACTIONS(825), + [anon_sym_PIPE] = ACTIONS(827), + [anon_sym_RPAREN] = ACTIONS(825), + [anon_sym_AMP_AMP] = ACTIONS(825), + [anon_sym_PIPE_PIPE] = ACTIONS(825), + [anon_sym_EQ_TILDE] = ACTIONS(825), + [anon_sym_EQ_EQ] = ACTIONS(825), + [anon_sym_EQ] = ACTIONS(827), + [anon_sym_PLUS_EQ] = ACTIONS(825), + [anon_sym_LT] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(825), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_DASH_EQ] = ACTIONS(825), + [anon_sym_LT_EQ] = ACTIONS(825), + [anon_sym_GT_EQ] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_DASH_DASH] = ACTIONS(825), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(825), }, [613] = { - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_SEMI_SEMI] = ACTIONS(1316), - [anon_sym_AMP_AMP] = ACTIONS(1316), - [anon_sym_PIPE_PIPE] = ACTIONS(1316), - [anon_sym_EQ_TILDE] = ACTIONS(1316), - [anon_sym_EQ_EQ] = ACTIONS(1316), - [anon_sym_EQ] = ACTIONS(1318), - [anon_sym_PLUS_EQ] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_DASH_EQ] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_EQ] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1316), - [anon_sym_LF] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(2264), + [sym_comment] = ACTIONS(57), }, [614] = { - [aux_sym_concatenation_repeat1] = STATE(1085), - [sym__concat] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2107), - [anon_sym_SEMI_SEMI] = ACTIONS(2105), - [sym__special_characters] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_DOLLAR] = ACTIONS(2107), - [sym_raw_string] = ACTIONS(2105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2105), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2105), - [anon_sym_BQUOTE] = ACTIONS(2105), - [anon_sym_LT_LPAREN] = ACTIONS(2105), - [anon_sym_GT_LPAREN] = ACTIONS(2105), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2107), - [anon_sym_LF] = ACTIONS(2105), - [anon_sym_AMP] = ACTIONS(2105), + [sym_subscript] = STATE(1102), + [sym_variable_name] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_DOLLAR] = ACTIONS(2268), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2270), + [anon_sym_STAR] = ACTIONS(2272), + [anon_sym_AT] = ACTIONS(2272), + [anon_sym_QMARK] = ACTIONS(2272), + [anon_sym_0] = ACTIONS(2270), + [anon_sym__] = ACTIONS(2270), }, [615] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(1088), - [anon_sym_DQUOTE] = ACTIONS(2247), - [anon_sym_DOLLAR] = ACTIONS(2249), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym_concatenation] = STATE(1105), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1105), + [anon_sym_RBRACE] = ACTIONS(2274), + [anon_sym_EQ] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(2280), + [anon_sym_COLON] = ACTIONS(2276), + [anon_sym_COLON_QMARK] = ACTIONS(2276), + [anon_sym_COLON_DASH] = ACTIONS(2276), + [anon_sym_PERCENT] = ACTIONS(2276), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [616] = { - [sym_string] = STATE(1090), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(2251), - [sym_raw_string] = ACTIONS(2253), - [anon_sym_POUND] = ACTIONS(2251), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(2257), - [anon_sym_AT] = ACTIONS(2257), - [anon_sym_QMARK] = ACTIONS(2257), - [anon_sym_0] = ACTIONS(2255), - [anon_sym__] = ACTIONS(2255), + [sym_concatenation] = STATE(1108), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1108), + [anon_sym_RBRACE] = ACTIONS(2282), + [anon_sym_EQ] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2284), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2286), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_COLON] = ACTIONS(2284), + [anon_sym_COLON_QMARK] = ACTIONS(2284), + [anon_sym_COLON_DASH] = ACTIONS(2284), + [anon_sym_PERCENT] = ACTIONS(2284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [617] = { - [aux_sym_concatenation_repeat1] = STATE(1085), - [sym__concat] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2123), - [anon_sym_SEMI_SEMI] = ACTIONS(2121), - [sym__special_characters] = ACTIONS(2121), - [anon_sym_DQUOTE] = ACTIONS(2121), - [anon_sym_DOLLAR] = ACTIONS(2123), - [sym_raw_string] = ACTIONS(2121), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2121), - [anon_sym_BQUOTE] = ACTIONS(2121), - [anon_sym_LT_LPAREN] = ACTIONS(2121), - [anon_sym_GT_LPAREN] = ACTIONS(2121), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2123), - [anon_sym_LF] = ACTIONS(2121), - [anon_sym_AMP] = ACTIONS(2121), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1111), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(2290), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_SEMI_SEMI] = ACTIONS(2294), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2294), + [anon_sym_AMP] = ACTIONS(2290), }, [618] = { - [sym_subscript] = STATE(1095), - [sym_variable_name] = ACTIONS(2259), - [anon_sym_BANG] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2263), - [anon_sym_DOLLAR] = ACTIONS(2263), - [anon_sym_POUND] = ACTIONS(2261), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(2267), - [anon_sym_AT] = ACTIONS(2267), - [anon_sym_QMARK] = ACTIONS(2267), - [anon_sym_0] = ACTIONS(2265), - [anon_sym__] = ACTIONS(2265), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1111), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2290), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2292), + [anon_sym_SEMI_SEMI] = ACTIONS(2294), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2294), + [anon_sym_AMP] = ACTIONS(2290), }, [619] = { - [sym__terminated_statement] = STATE(1098), - [sym_for_statement] = STATE(1096), - [sym_c_style_for_statement] = STATE(1096), - [sym_while_statement] = STATE(1096), - [sym_if_statement] = STATE(1096), - [sym_case_statement] = STATE(1096), - [sym_function_definition] = STATE(1096), - [sym_subshell] = STATE(1096), - [sym_pipeline] = STATE(1096), - [sym_list] = STATE(1096), - [sym_negated_command] = STATE(1096), - [sym_test_command] = STATE(1096), - [sym_declaration_command] = STATE(1096), - [sym_unset_command] = STATE(1096), - [sym_command] = STATE(1096), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(1097), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(1098), - [aux_sym_command_repeat1] = STATE(96), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(1112), + [sym_for_statement] = STATE(1112), + [sym_c_style_for_statement] = STATE(1112), + [sym_while_statement] = STATE(1112), + [sym_if_statement] = STATE(1112), + [sym_case_statement] = STATE(1112), + [sym_function_definition] = STATE(1112), + [sym_compound_statement] = STATE(1112), + [sym_subshell] = STATE(1112), + [sym_pipeline] = STATE(1112), + [sym_list] = STATE(1112), + [sym_negated_command] = STATE(1112), + [sym_test_command] = STATE(1112), + [sym_declaration_command] = STATE(1112), + [sym_unset_command] = STATE(1112), + [sym_command] = STATE(1112), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(1113), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), + [sym_variable_name] = ACTIONS(129), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [620] = { - [sym__terminated_statement] = STATE(1101), - [sym_for_statement] = STATE(1099), - [sym_c_style_for_statement] = STATE(1099), - [sym_while_statement] = STATE(1099), - [sym_if_statement] = STATE(1099), - [sym_case_statement] = STATE(1099), - [sym_function_definition] = STATE(1099), - [sym_subshell] = STATE(1099), - [sym_pipeline] = STATE(1099), - [sym_list] = STATE(1099), - [sym_negated_command] = STATE(1099), - [sym_test_command] = STATE(1099), - [sym_declaration_command] = STATE(1099), - [sym_unset_command] = STATE(1099), - [sym_command] = STATE(1099), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(1100), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(1101), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1115), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(2298), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(2292), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2298), + [anon_sym_AMP] = ACTIONS(2296), }, [621] = { - [sym__terminated_statement] = STATE(1104), - [sym_for_statement] = STATE(1102), - [sym_c_style_for_statement] = STATE(1102), - [sym_while_statement] = STATE(1102), - [sym_if_statement] = STATE(1102), - [sym_case_statement] = STATE(1102), - [sym_function_definition] = STATE(1102), - [sym_subshell] = STATE(1102), - [sym_pipeline] = STATE(1102), - [sym_list] = STATE(1102), - [sym_negated_command] = STATE(1102), - [sym_test_command] = STATE(1102), - [sym_declaration_command] = STATE(1102), - [sym_unset_command] = STATE(1102), - [sym_command] = STATE(1102), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(1103), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(1104), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1115), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(2298), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(2292), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2298), + [anon_sym_AMP] = ACTIONS(2296), }, [622] = { - [sym_concatenation] = STATE(1106), - [sym_string] = STATE(617), - [sym_simple_expansion] = STATE(617), - [sym_string_expansion] = STATE(617), - [sym_expansion] = STATE(617), - [sym_command_substitution] = STATE(617), - [sym_process_substitution] = STATE(617), - [aux_sym_for_statement_repeat1] = STATE(1106), - [anon_sym_SEMI] = ACTIONS(2269), - [anon_sym_SEMI_SEMI] = ACTIONS(2271), - [sym__special_characters] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_raw_string] = ACTIONS(1202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1204), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1206), - [anon_sym_BQUOTE] = ACTIONS(1208), - [anon_sym_LT_LPAREN] = ACTIONS(1210), - [anon_sym_GT_LPAREN] = ACTIONS(1210), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2273), - [anon_sym_LF] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(2271), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_c_style_for_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_case_statement] = STATE(1116), + [sym_function_definition] = STATE(1116), + [sym_compound_statement] = STATE(1116), + [sym_subshell] = STATE(1116), + [sym_pipeline] = STATE(1116), + [sym_list] = STATE(1116), + [sym_negated_command] = STATE(1116), + [sym_test_command] = STATE(1116), + [sym_declaration_command] = STATE(1116), + [sym_unset_command] = STATE(1116), + [sym_command] = STATE(1116), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(1117), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [623] = { - [sym__terminated_statement] = STATE(1108), - [sym_for_statement] = STATE(545), - [sym_c_style_for_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_function_definition] = STATE(545), - [sym_subshell] = STATE(545), - [sym_pipeline] = STATE(545), - [sym_list] = STATE(545), - [sym_negated_command] = STATE(545), - [sym_test_command] = STATE(545), - [sym_declaration_command] = STATE(545), - [sym_unset_command] = STATE(545), - [sym_command] = STATE(545), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(546), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(1108), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_done] = ACTIONS(2275), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1120), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(2300), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_SEMI_SEMI] = ACTIONS(2304), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2304), + [anon_sym_AMP] = ACTIONS(2300), }, [624] = { - [ts_builtin_sym_end] = ACTIONS(2277), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_esac] = ACTIONS(2277), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_RPAREN] = ACTIONS(2277), - [anon_sym_SEMI_SEMI] = ACTIONS(2277), - [anon_sym_PIPE_AMP] = ACTIONS(2277), - [anon_sym_AMP_AMP] = ACTIONS(2277), - [anon_sym_PIPE_PIPE] = ACTIONS(2277), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2277), - [anon_sym_AMP] = ACTIONS(2279), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1120), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2300), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2302), + [anon_sym_SEMI_SEMI] = ACTIONS(2304), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2304), + [anon_sym_AMP] = ACTIONS(2300), }, [625] = { - [anon_sym_RPAREN] = ACTIONS(2281), - [anon_sym_AMP_AMP] = ACTIONS(1240), - [anon_sym_PIPE_PIPE] = ACTIONS(1240), - [anon_sym_EQ_TILDE] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1244), - [anon_sym_PLUS_EQ] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1244), - [anon_sym_GT] = ACTIONS(1244), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_DASH_EQ] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1240), - [anon_sym_GT_EQ] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1240), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(1121), + [sym_for_statement] = STATE(1121), + [sym_c_style_for_statement] = STATE(1121), + [sym_while_statement] = STATE(1121), + [sym_if_statement] = STATE(1121), + [sym_case_statement] = STATE(1121), + [sym_function_definition] = STATE(1121), + [sym_compound_statement] = STATE(1121), + [sym_subshell] = STATE(1121), + [sym_pipeline] = STATE(1121), + [sym_list] = STATE(1121), + [sym_negated_command] = STATE(1121), + [sym_test_command] = STATE(1121), + [sym_declaration_command] = STATE(1121), + [sym_unset_command] = STATE(1121), + [sym_command] = STATE(1121), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(1122), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [626] = { - [anon_sym_RPAREN] = ACTIONS(1248), - [anon_sym_AMP_AMP] = ACTIONS(1240), - [anon_sym_PIPE_PIPE] = ACTIONS(1240), - [anon_sym_EQ_TILDE] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1244), - [anon_sym_PLUS_EQ] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1244), - [anon_sym_GT] = ACTIONS(1244), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_DASH_EQ] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1240), - [anon_sym_GT_EQ] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1240), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2306), + [anon_sym_AMP_AMP] = ACTIONS(2306), + [anon_sym_PIPE_PIPE] = ACTIONS(2306), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2306), + [anon_sym_EQ_TILDE] = ACTIONS(2306), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_EQ] = ACTIONS(2308), + [anon_sym_PLUS_EQ] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2308), + [anon_sym_GT] = ACTIONS(2308), + [anon_sym_BANG_EQ] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2308), + [anon_sym_DASH_EQ] = ACTIONS(2306), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2306), + [anon_sym_PLUS_PLUS] = ACTIONS(2306), + [anon_sym_DASH_DASH] = ACTIONS(2306), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2306), }, [627] = { - [sym_string] = STATE(1110), - [sym_simple_expansion] = STATE(1110), - [sym_string_expansion] = STATE(1110), - [sym_expansion] = STATE(1110), - [sym_command_substitution] = STATE(1110), - [sym_process_substitution] = STATE(1110), - [sym__special_characters] = ACTIONS(2283), - [anon_sym_DQUOTE] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(443), - [sym_raw_string] = ACTIONS(2283), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), - [anon_sym_BQUOTE] = ACTIONS(451), - [anon_sym_LT_LPAREN] = ACTIONS(453), - [anon_sym_GT_LPAREN] = ACTIONS(453), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2283), + [sym__expression] = STATE(1123), + [sym_binary_expression] = STATE(1123), + [sym_unary_expression] = STATE(1123), + [sym_postfix_expression] = STATE(1123), + [sym_parenthesized_expression] = STATE(1123), + [sym_concatenation] = STATE(1123), + [sym_string] = STATE(225), + [sym_simple_expansion] = STATE(225), + [sym_string_expansion] = STATE(225), + [sym_expansion] = STATE(225), + [sym_command_substitution] = STATE(225), + [sym_process_substitution] = STATE(225), + [anon_sym_LPAREN] = ACTIONS(407), + [anon_sym_BANG] = ACTIONS(409), + [sym__special_characters] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(415), + [sym_raw_string] = ACTIONS(417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(427), + [sym_test_operator] = ACTIONS(429), }, [628] = { - [aux_sym_concatenation_repeat1] = STATE(1111), - [sym__concat] = ACTIONS(1214), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_PLUS] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(809), - [anon_sym_DASH_EQ] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_DASH_DASH] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(807), + [sym__expression] = STATE(1123), + [sym_binary_expression] = STATE(1123), + [sym_unary_expression] = STATE(1123), + [sym_postfix_expression] = STATE(1123), + [sym_parenthesized_expression] = STATE(1123), + [sym_concatenation] = STATE(1123), + [sym_string] = STATE(225), + [sym_simple_expansion] = STATE(225), + [sym_string_expansion] = STATE(225), + [sym_expansion] = STATE(225), + [sym_command_substitution] = STATE(225), + [sym_process_substitution] = STATE(225), + [sym_regex] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(407), + [anon_sym_BANG] = ACTIONS(409), + [sym__special_characters] = ACTIONS(411), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(415), + [sym_raw_string] = ACTIONS(417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(427), + [sym_test_operator] = ACTIONS(429), }, [629] = { - [sym__concat] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(813), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_EQ_TILDE] = ACTIONS(811), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(813), - [anon_sym_PLUS_EQ] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_DASH_EQ] = ACTIONS(811), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_PLUS_PLUS] = ACTIONS(811), - [anon_sym_DASH_DASH] = ACTIONS(811), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(811), + [anon_sym_RPAREN] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [anon_sym_EQ_TILDE] = ACTIONS(1281), + [anon_sym_EQ_EQ] = ACTIONS(1281), + [anon_sym_EQ] = ACTIONS(1283), + [anon_sym_PLUS_EQ] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_BANG_EQ] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_DASH_EQ] = ACTIONS(1281), + [anon_sym_LT_EQ] = ACTIONS(1281), + [anon_sym_GT_EQ] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1281), }, [630] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(2285), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [sym__concat] = ACTIONS(1726), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1726), + [anon_sym_EQ_TILDE] = ACTIONS(1726), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ] = ACTIONS(1728), + [anon_sym_PLUS_EQ] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_DASH_EQ] = ACTIONS(1726), + [anon_sym_LT_EQ] = ACTIONS(1726), + [anon_sym_GT_EQ] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1726), }, [631] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(473), - [anon_sym_DQUOTE] = ACTIONS(2285), - [anon_sym_DOLLAR] = ACTIONS(2287), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [aux_sym_concatenation_repeat1] = STATE(631), + [sym__concat] = ACTIONS(2312), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_EQ_TILDE] = ACTIONS(1726), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ] = ACTIONS(1728), + [anon_sym_PLUS_EQ] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_DASH_EQ] = ACTIONS(1726), + [anon_sym_LT_EQ] = ACTIONS(1726), + [anon_sym_GT_EQ] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1726), }, [632] = { - [sym__concat] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_AMP_AMP] = ACTIONS(845), - [anon_sym_PIPE_PIPE] = ACTIONS(845), - [anon_sym_EQ_TILDE] = ACTIONS(845), - [anon_sym_EQ_EQ] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(847), - [anon_sym_PLUS_EQ] = ACTIONS(845), - [anon_sym_LT] = ACTIONS(847), - [anon_sym_GT] = ACTIONS(847), - [anon_sym_BANG_EQ] = ACTIONS(845), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_DASH_EQ] = ACTIONS(845), - [anon_sym_LT_EQ] = ACTIONS(845), - [anon_sym_GT_EQ] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(845), + [sym__concat] = ACTIONS(1733), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1733), + [anon_sym_AMP_AMP] = ACTIONS(1733), + [anon_sym_PIPE_PIPE] = ACTIONS(1733), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1733), + [anon_sym_EQ_TILDE] = ACTIONS(1733), + [anon_sym_EQ_EQ] = ACTIONS(1733), + [anon_sym_EQ] = ACTIONS(1735), + [anon_sym_PLUS_EQ] = ACTIONS(1733), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_BANG_EQ] = ACTIONS(1733), + [anon_sym_PLUS] = ACTIONS(1735), + [anon_sym_DASH] = ACTIONS(1735), + [anon_sym_DASH_EQ] = ACTIONS(1733), + [anon_sym_LT_EQ] = ACTIONS(1733), + [anon_sym_GT_EQ] = ACTIONS(1733), + [anon_sym_PLUS_PLUS] = ACTIONS(1733), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1733), }, [633] = { - [sym__concat] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [anon_sym_EQ_TILDE] = ACTIONS(849), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_EQ] = ACTIONS(851), - [anon_sym_PLUS_EQ] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_PLUS] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [anon_sym_DASH_EQ] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(849), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(2315), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [634] = { - [sym__concat] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(855), - [anon_sym_RPAREN] = ACTIONS(853), - [anon_sym_AMP_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(853), - [anon_sym_EQ_TILDE] = ACTIONS(853), - [anon_sym_EQ_EQ] = ACTIONS(853), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_PLUS_EQ] = ACTIONS(853), - [anon_sym_LT] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [anon_sym_DASH_EQ] = ACTIONS(853), - [anon_sym_LT_EQ] = ACTIONS(853), - [anon_sym_GT_EQ] = ACTIONS(853), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(853), + [sym_concatenation] = STATE(1129), + [sym_string] = STATE(1128), + [sym_simple_expansion] = STATE(1128), + [sym_string_expansion] = STATE(1128), + [sym_expansion] = STATE(1128), + [sym_command_substitution] = STATE(1128), + [sym_process_substitution] = STATE(1128), + [anon_sym_RBRACE] = ACTIONS(2317), + [sym__special_characters] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(2321), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2321), }, [635] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(2289), - [sym_comment] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(2323), + [sym_comment] = ACTIONS(57), }, [636] = { - [sym_subscript] = STATE(1117), - [sym_variable_name] = ACTIONS(2291), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_DOLLAR] = ACTIONS(2293), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2295), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_QMARK] = ACTIONS(2297), - [anon_sym_0] = ACTIONS(2295), - [anon_sym__] = ACTIONS(2295), + [sym_concatenation] = STATE(1133), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1133), + [anon_sym_RBRACE] = ACTIONS(2325), + [anon_sym_EQ] = ACTIONS(2327), + [anon_sym_DASH] = ACTIONS(2327), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2329), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(2331), + [anon_sym_COLON] = ACTIONS(2327), + [anon_sym_COLON_QMARK] = ACTIONS(2327), + [anon_sym_COLON_DASH] = ACTIONS(2327), + [anon_sym_PERCENT] = ACTIONS(2327), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [637] = { - [sym_concatenation] = STATE(1120), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1120), - [anon_sym_RBRACE] = ACTIONS(2299), - [anon_sym_EQ] = ACTIONS(2301), - [anon_sym_DASH] = ACTIONS(2301), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(2305), - [anon_sym_COLON] = ACTIONS(2301), - [anon_sym_COLON_QMARK] = ACTIONS(2301), - [anon_sym_COLON_DASH] = ACTIONS(2301), - [anon_sym_PERCENT] = ACTIONS(2301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1135), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1135), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_EQ] = ACTIONS(2333), + [anon_sym_DASH] = ACTIONS(2333), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(2337), + [anon_sym_COLON] = ACTIONS(2333), + [anon_sym_COLON_QMARK] = ACTIONS(2333), + [anon_sym_COLON_DASH] = ACTIONS(2333), + [anon_sym_PERCENT] = ACTIONS(2333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [638] = { - [sym_concatenation] = STATE(1123), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1123), - [anon_sym_RBRACE] = ACTIONS(2307), - [anon_sym_EQ] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2311), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(2313), - [anon_sym_COLON] = ACTIONS(2309), - [anon_sym_COLON_QMARK] = ACTIONS(2309), - [anon_sym_COLON_DASH] = ACTIONS(2309), - [anon_sym_PERCENT] = ACTIONS(2309), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(1834), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1834), + [anon_sym_AMP_AMP] = ACTIONS(1834), + [anon_sym_PIPE_PIPE] = ACTIONS(1834), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1834), + [anon_sym_EQ_TILDE] = ACTIONS(1834), + [anon_sym_EQ_EQ] = ACTIONS(1834), + [anon_sym_EQ] = ACTIONS(1836), + [anon_sym_PLUS_EQ] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1836), + [anon_sym_GT] = ACTIONS(1836), + [anon_sym_BANG_EQ] = ACTIONS(1834), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_DASH_EQ] = ACTIONS(1834), + [anon_sym_LT_EQ] = ACTIONS(1834), + [anon_sym_GT_EQ] = ACTIONS(1834), + [anon_sym_PLUS_PLUS] = ACTIONS(1834), + [anon_sym_DASH_DASH] = ACTIONS(1834), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1834), }, [639] = { - [anon_sym_SEMI] = ACTIONS(2315), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2317), - [anon_sym_SEMI_SEMI] = ACTIONS(2319), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2319), - [anon_sym_AMP] = ACTIONS(2315), + [sym_concatenation] = STATE(1138), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1138), + [sym_regex] = ACTIONS(2339), + [anon_sym_RBRACE] = ACTIONS(2341), + [anon_sym_EQ] = ACTIONS(2343), + [anon_sym_DASH] = ACTIONS(2343), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2345), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(2343), + [anon_sym_COLON_QMARK] = ACTIONS(2343), + [anon_sym_COLON_DASH] = ACTIONS(2343), + [anon_sym_PERCENT] = ACTIONS(2343), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [640] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2315), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2317), - [anon_sym_SEMI_SEMI] = ACTIONS(2319), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2319), - [anon_sym_AMP] = ACTIONS(2315), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(2341), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [641] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(1126), - [sym_c_style_for_statement] = STATE(1126), - [sym_while_statement] = STATE(1126), - [sym_if_statement] = STATE(1126), - [sym_case_statement] = STATE(1126), - [sym_function_definition] = STATE(1126), - [sym_subshell] = STATE(1126), - [sym_pipeline] = STATE(1126), - [sym_list] = STATE(1126), - [sym_negated_command] = STATE(1126), - [sym_test_command] = STATE(1126), - [sym_declaration_command] = STATE(1126), - [sym_unset_command] = STATE(1126), - [sym_command] = STATE(1126), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(1127), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym__concat] = ACTIONS(1882), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1882), + [anon_sym_AMP_AMP] = ACTIONS(1882), + [anon_sym_PIPE_PIPE] = ACTIONS(1882), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1882), + [anon_sym_EQ_TILDE] = ACTIONS(1882), + [anon_sym_EQ_EQ] = ACTIONS(1882), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_PLUS_EQ] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_BANG_EQ] = ACTIONS(1882), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_DASH_EQ] = ACTIONS(1882), + [anon_sym_LT_EQ] = ACTIONS(1882), + [anon_sym_GT_EQ] = ACTIONS(1882), + [anon_sym_PLUS_PLUS] = ACTIONS(1882), + [anon_sym_DASH_DASH] = ACTIONS(1882), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1882), }, [642] = { - [anon_sym_SEMI] = ACTIONS(2321), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(2323), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(2317), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2321), + [sym_concatenation] = STATE(1135), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1135), + [sym_regex] = ACTIONS(2347), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_EQ] = ACTIONS(2333), + [anon_sym_DASH] = ACTIONS(2333), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(2333), + [anon_sym_COLON_QMARK] = ACTIONS(2333), + [anon_sym_COLON_DASH] = ACTIONS(2333), + [anon_sym_PERCENT] = ACTIONS(2333), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [643] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2321), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(2323), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(2317), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2321), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [644] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(1129), - [sym_c_style_for_statement] = STATE(1129), - [sym_while_statement] = STATE(1129), - [sym_if_statement] = STATE(1129), - [sym_case_statement] = STATE(1129), - [sym_function_definition] = STATE(1129), - [sym_subshell] = STATE(1129), - [sym_pipeline] = STATE(1129), - [sym_list] = STATE(1129), - [sym_negated_command] = STATE(1129), - [sym_test_command] = STATE(1129), - [sym_declaration_command] = STATE(1129), - [sym_unset_command] = STATE(1129), - [sym_command] = STATE(1129), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(1130), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(2349), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [645] = { - [anon_sym_SEMI] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_SEMI_SEMI] = ACTIONS(2329), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2329), - [anon_sym_AMP] = ACTIONS(2325), + [sym__concat] = ACTIONS(1890), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1890), + [anon_sym_EQ_TILDE] = ACTIONS(1890), + [anon_sym_EQ_EQ] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_PLUS_EQ] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_BANG_EQ] = ACTIONS(1890), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_DASH_EQ] = ACTIONS(1890), + [anon_sym_LT_EQ] = ACTIONS(1890), + [anon_sym_GT_EQ] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1890), }, [646] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_SEMI_SEMI] = ACTIONS(2329), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2329), - [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_SEMI] = ACTIONS(2351), + [anon_sym_RPAREN] = ACTIONS(2349), + [anon_sym_SEMI_SEMI] = ACTIONS(2353), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2353), }, [647] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(1133), - [sym_c_style_for_statement] = STATE(1133), - [sym_while_statement] = STATE(1133), - [sym_if_statement] = STATE(1133), - [sym_case_statement] = STATE(1133), - [sym_function_definition] = STATE(1133), - [sym_subshell] = STATE(1133), - [sym_pipeline] = STATE(1133), - [sym_list] = STATE(1133), - [sym_negated_command] = STATE(1133), - [sym_test_command] = STATE(1133), - [sym_declaration_command] = STATE(1133), - [sym_unset_command] = STATE(1133), - [sym_command] = STATE(1133), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(1134), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1143), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2349), + [anon_sym_SEMI_SEMI] = ACTIONS(2357), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2355), }, [648] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(2331), - [anon_sym_AMP_AMP] = ACTIONS(2331), - [anon_sym_PIPE_PIPE] = ACTIONS(2331), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2331), - [anon_sym_EQ_TILDE] = ACTIONS(2331), - [anon_sym_EQ_EQ] = ACTIONS(2331), - [anon_sym_EQ] = ACTIONS(2333), - [anon_sym_PLUS_EQ] = ACTIONS(2331), - [anon_sym_LT] = ACTIONS(2333), - [anon_sym_GT] = ACTIONS(2333), - [anon_sym_BANG_EQ] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_DASH_EQ] = ACTIONS(2331), - [anon_sym_LT_EQ] = ACTIONS(2331), - [anon_sym_GT_EQ] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2331), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(2331), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1143), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2355), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2349), + [anon_sym_SEMI_SEMI] = ACTIONS(2357), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2355), }, [649] = { - [sym__expression] = STATE(1135), - [sym_binary_expression] = STATE(1135), - [sym_unary_expression] = STATE(1135), - [sym_postfix_expression] = STATE(1135), - [sym_parenthesized_expression] = STATE(1135), - [sym_concatenation] = STATE(1135), - [sym_string] = STATE(236), - [sym_simple_expansion] = STATE(236), - [sym_string_expansion] = STATE(236), - [sym_expansion] = STATE(236), - [sym_command_substitution] = STATE(236), - [sym_process_substitution] = STATE(236), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [sym__special_characters] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(443), - [sym_raw_string] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), - [anon_sym_BQUOTE] = ACTIONS(451), - [anon_sym_LT_LPAREN] = ACTIONS(453), - [anon_sym_GT_LPAREN] = ACTIONS(453), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(455), - [sym_test_operator] = ACTIONS(457), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(2349), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [650] = { - [sym__expression] = STATE(1135), - [sym_binary_expression] = STATE(1135), - [sym_unary_expression] = STATE(1135), - [sym_postfix_expression] = STATE(1135), - [sym_parenthesized_expression] = STATE(1135), - [sym_concatenation] = STATE(1135), - [sym_string] = STATE(236), - [sym_simple_expansion] = STATE(236), - [sym_string_expansion] = STATE(236), - [sym_expansion] = STATE(236), - [sym_command_substitution] = STATE(236), - [sym_process_substitution] = STATE(236), - [sym_regex] = ACTIONS(2335), - [anon_sym_LPAREN] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [sym__special_characters] = ACTIONS(439), - [anon_sym_DQUOTE] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(443), - [sym_raw_string] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), - [anon_sym_BQUOTE] = ACTIONS(451), - [anon_sym_LT_LPAREN] = ACTIONS(453), - [anon_sym_GT_LPAREN] = ACTIONS(453), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(455), - [sym_test_operator] = ACTIONS(457), + [anon_sym_SEMI] = ACTIONS(2359), + [anon_sym_SEMI_SEMI] = ACTIONS(2361), + [anon_sym_BQUOTE] = ACTIONS(2349), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2361), }, [651] = { - [anon_sym_RPAREN] = ACTIONS(1316), - [anon_sym_AMP_AMP] = ACTIONS(1316), - [anon_sym_PIPE_PIPE] = ACTIONS(1316), - [anon_sym_EQ_TILDE] = ACTIONS(1316), - [anon_sym_EQ_EQ] = ACTIONS(1316), - [anon_sym_EQ] = ACTIONS(1318), - [anon_sym_PLUS_EQ] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_GT] = ACTIONS(1318), - [anon_sym_BANG_EQ] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_DASH_EQ] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_EQ] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1316), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1146), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(2365), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(2349), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2363), }, [652] = { - [sym__concat] = ACTIONS(1763), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym_PLUS_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_DASH_EQ] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1763), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1146), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(2365), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(2349), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2363), }, [653] = { - [aux_sym_concatenation_repeat1] = STATE(653), - [sym__concat] = ACTIONS(2337), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym_PLUS_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_DASH_EQ] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1763), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(2367), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [654] = { - [sym__concat] = ACTIONS(1770), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1770), - [anon_sym_AMP_AMP] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1770), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1770), - [anon_sym_EQ_TILDE] = ACTIONS(1770), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1770), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1770), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_DASH_DASH] = ACTIONS(1770), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1770), + [sym__concat] = ACTIONS(1924), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1924), + [anon_sym_EQ_TILDE] = ACTIONS(1924), + [anon_sym_EQ_EQ] = ACTIONS(1924), + [anon_sym_EQ] = ACTIONS(1926), + [anon_sym_PLUS_EQ] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_BANG_EQ] = ACTIONS(1924), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_DASH_EQ] = ACTIONS(1924), + [anon_sym_LT_EQ] = ACTIONS(1924), + [anon_sym_GT_EQ] = ACTIONS(1924), + [anon_sym_PLUS_PLUS] = ACTIONS(1924), + [anon_sym_DASH_DASH] = ACTIONS(1924), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1924), }, [655] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(2340), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(2369), + [anon_sym_RPAREN] = ACTIONS(2367), + [anon_sym_SEMI_SEMI] = ACTIONS(2371), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2371), + [anon_sym_AMP] = ACTIONS(2371), }, [656] = { - [sym_concatenation] = STATE(1141), - [sym_string] = STATE(1140), - [sym_simple_expansion] = STATE(1140), - [sym_string_expansion] = STATE(1140), - [sym_expansion] = STATE(1140), - [sym_command_substitution] = STATE(1140), - [sym_process_substitution] = STATE(1140), - [anon_sym_RBRACE] = ACTIONS(2342), - [sym__special_characters] = ACTIONS(2344), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(2346), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2346), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1150), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2367), + [anon_sym_SEMI_SEMI] = ACTIONS(2375), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2373), }, [657] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(2348), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1150), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2367), + [anon_sym_SEMI_SEMI] = ACTIONS(2375), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2375), + [anon_sym_AMP] = ACTIONS(2373), }, [658] = { - [sym_concatenation] = STATE(1145), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1145), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_EQ] = ACTIONS(2352), - [anon_sym_DASH] = ACTIONS(2352), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2354), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(2356), - [anon_sym_COLON] = ACTIONS(2352), - [anon_sym_COLON_QMARK] = ACTIONS(2352), - [anon_sym_COLON_DASH] = ACTIONS(2352), - [anon_sym_PERCENT] = ACTIONS(2352), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2377), + [anon_sym_AMP_AMP] = ACTIONS(2377), + [anon_sym_PIPE_PIPE] = ACTIONS(2377), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2377), + [anon_sym_EQ_TILDE] = ACTIONS(2377), + [anon_sym_EQ_EQ] = ACTIONS(2377), + [anon_sym_EQ] = ACTIONS(2379), + [anon_sym_PLUS_EQ] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2379), + [anon_sym_GT] = ACTIONS(2379), + [anon_sym_BANG_EQ] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_DASH_EQ] = ACTIONS(2377), + [anon_sym_LT_EQ] = ACTIONS(2377), + [anon_sym_GT_EQ] = ACTIONS(2377), + [anon_sym_PLUS_PLUS] = ACTIONS(2377), + [anon_sym_DASH_DASH] = ACTIONS(2377), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2377), }, [659] = { - [sym_concatenation] = STATE(1147), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1147), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_EQ] = ACTIONS(2358), - [anon_sym_DASH] = ACTIONS(2358), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2360), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(2362), - [anon_sym_COLON] = ACTIONS(2358), - [anon_sym_COLON_QMARK] = ACTIONS(2358), - [anon_sym_COLON_DASH] = ACTIONS(2358), - [anon_sym_PERCENT] = ACTIONS(2358), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2377), + [anon_sym_AMP_AMP] = ACTIONS(2377), + [anon_sym_PIPE_PIPE] = ACTIONS(2377), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2377), + [anon_sym_EQ_TILDE] = ACTIONS(2377), + [anon_sym_EQ_EQ] = ACTIONS(2377), + [anon_sym_EQ] = ACTIONS(2379), + [anon_sym_PLUS_EQ] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2379), + [anon_sym_GT] = ACTIONS(2379), + [anon_sym_BANG_EQ] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_DASH_EQ] = ACTIONS(2377), + [anon_sym_LT_EQ] = ACTIONS(2377), + [anon_sym_GT_EQ] = ACTIONS(2377), + [anon_sym_PLUS_PLUS] = ACTIONS(2377), + [anon_sym_DASH_DASH] = ACTIONS(2377), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2377), }, [660] = { - [sym__concat] = ACTIONS(1871), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1871), - [anon_sym_AMP_AMP] = ACTIONS(1871), - [anon_sym_PIPE_PIPE] = ACTIONS(1871), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1871), - [anon_sym_EQ_TILDE] = ACTIONS(1871), - [anon_sym_EQ_EQ] = ACTIONS(1871), - [anon_sym_EQ] = ACTIONS(1873), - [anon_sym_PLUS_EQ] = ACTIONS(1871), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_GT] = ACTIONS(1873), - [anon_sym_BANG_EQ] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1873), - [anon_sym_DASH_EQ] = ACTIONS(1871), - [anon_sym_LT_EQ] = ACTIONS(1871), - [anon_sym_GT_EQ] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1871), + [aux_sym_concatenation_repeat1] = STATE(1151), + [sym__simple_heredoc_body] = ACTIONS(1107), + [sym__heredoc_body_beginning] = ACTIONS(1107), + [sym_file_descriptor] = ACTIONS(1107), + [sym__concat] = ACTIONS(1109), + [sym_variable_name] = ACTIONS(1107), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_SEMI_SEMI] = ACTIONS(1107), + [anon_sym_PIPE_AMP] = ACTIONS(1107), + [anon_sym_AMP_AMP] = ACTIONS(1107), + [anon_sym_PIPE_PIPE] = ACTIONS(1107), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1107), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1107), + [anon_sym_LT_AMP] = ACTIONS(1107), + [anon_sym_GT_AMP] = ACTIONS(1107), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_LT_LT_DASH] = ACTIONS(1107), + [anon_sym_LT_LT_LT] = ACTIONS(1107), + [sym__special_characters] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(1107), + [anon_sym_DOLLAR] = ACTIONS(1111), + [sym_raw_string] = ACTIONS(1107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1107), + [anon_sym_BQUOTE] = ACTIONS(1107), + [anon_sym_LT_LPAREN] = ACTIONS(1107), + [anon_sym_GT_LPAREN] = ACTIONS(1107), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1111), + [anon_sym_LF] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1111), }, [661] = { - [sym_concatenation] = STATE(1150), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1150), - [sym_regex] = ACTIONS(2364), - [anon_sym_RBRACE] = ACTIONS(2366), - [anon_sym_EQ] = ACTIONS(2368), - [anon_sym_DASH] = ACTIONS(2368), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(2368), - [anon_sym_COLON_QMARK] = ACTIONS(2368), - [anon_sym_COLON_DASH] = ACTIONS(2368), - [anon_sym_PERCENT] = ACTIONS(2368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1151), + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(1109), + [sym_variable_name] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1087), + [anon_sym_SEMI_SEMI] = ACTIONS(1085), + [anon_sym_PIPE_AMP] = ACTIONS(1085), + [anon_sym_AMP_AMP] = ACTIONS(1085), + [anon_sym_PIPE_PIPE] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_AMP_GT] = ACTIONS(1087), + [anon_sym_AMP_GT_GT] = ACTIONS(1085), + [anon_sym_LT_AMP] = ACTIONS(1085), + [anon_sym_GT_AMP] = ACTIONS(1085), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_LT_LT_DASH] = ACTIONS(1085), + [anon_sym_LT_LT_LT] = ACTIONS(1085), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1087), + [sym_raw_string] = ACTIONS(1085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_LT_LPAREN] = ACTIONS(1085), + [anon_sym_GT_LPAREN] = ACTIONS(1085), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1087), + [anon_sym_LF] = ACTIONS(1085), + [anon_sym_AMP] = ACTIONS(1087), }, [662] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(2366), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(787), + [sym_string] = STATE(1153), + [sym_array] = STATE(787), + [sym_simple_expansion] = STATE(1153), + [sym_string_expansion] = STATE(1153), + [sym_expansion] = STATE(1153), + [sym_command_substitution] = STATE(1153), + [sym_process_substitution] = STATE(1153), + [sym__empty_value] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1505), + [sym__special_characters] = ACTIONS(2381), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(2383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(199), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2383), }, [663] = { - [sym__concat] = ACTIONS(1919), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1919), - [anon_sym_AMP_AMP] = ACTIONS(1919), - [anon_sym_PIPE_PIPE] = ACTIONS(1919), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1919), - [anon_sym_EQ_TILDE] = ACTIONS(1919), - [anon_sym_EQ_EQ] = ACTIONS(1919), - [anon_sym_EQ] = ACTIONS(1921), - [anon_sym_PLUS_EQ] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1921), - [anon_sym_BANG_EQ] = ACTIONS(1919), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_DASH_EQ] = ACTIONS(1919), - [anon_sym_LT_EQ] = ACTIONS(1919), - [anon_sym_GT_EQ] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1919), + [aux_sym_concatenation_repeat1] = STATE(1154), + [sym__simple_heredoc_body] = ACTIONS(779), + [sym__heredoc_body_beginning] = ACTIONS(779), + [sym_file_descriptor] = ACTIONS(779), + [sym__concat] = ACTIONS(671), + [sym_variable_name] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [anon_sym_PIPE_AMP] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_AMP_GT] = ACTIONS(781), + [anon_sym_AMP_GT_GT] = ACTIONS(779), + [anon_sym_LT_AMP] = ACTIONS(779), + [anon_sym_GT_AMP] = ACTIONS(779), + [anon_sym_LT_LT] = ACTIONS(781), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_LT] = ACTIONS(779), + [sym__special_characters] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(781), + [sym_raw_string] = ACTIONS(779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(779), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), + [sym_word] = ACTIONS(781), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(781), }, [664] = { - [sym_concatenation] = STATE(1147), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1147), - [sym_regex] = ACTIONS(2372), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_EQ] = ACTIONS(2358), - [anon_sym_DASH] = ACTIONS(2358), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2360), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(2358), - [anon_sym_COLON_QMARK] = ACTIONS(2358), - [anon_sym_COLON_DASH] = ACTIONS(2358), - [anon_sym_PERCENT] = ACTIONS(2358), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_variable_assignment] = STATE(664), + [sym_subscript] = STATE(261), + [sym_concatenation] = STATE(664), + [sym_string] = STATE(260), + [sym_simple_expansion] = STATE(260), + [sym_string_expansion] = STATE(260), + [sym_expansion] = STATE(260), + [sym_command_substitution] = STATE(260), + [sym_process_substitution] = STATE(260), + [aux_sym_declaration_command_repeat1] = STATE(664), + [sym__simple_heredoc_body] = ACTIONS(1559), + [sym__heredoc_body_beginning] = ACTIONS(1559), + [sym_file_descriptor] = ACTIONS(1559), + [sym_variable_name] = ACTIONS(2385), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [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_LT] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(1564), + [anon_sym_GT_GT] = ACTIONS(1559), + [anon_sym_AMP_GT] = ACTIONS(1564), + [anon_sym_AMP_GT_GT] = ACTIONS(1559), + [anon_sym_LT_AMP] = ACTIONS(1559), + [anon_sym_GT_AMP] = ACTIONS(1559), + [anon_sym_LT_LT] = ACTIONS(1564), + [anon_sym_LT_LT_DASH] = ACTIONS(1559), + [anon_sym_LT_LT_LT] = ACTIONS(1559), + [sym__special_characters] = ACTIONS(2388), + [anon_sym_DQUOTE] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1572), + [sym_raw_string] = ACTIONS(2391), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1578), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1581), + [anon_sym_BQUOTE] = ACTIONS(1584), + [anon_sym_LT_LPAREN] = ACTIONS(1587), + [anon_sym_GT_LPAREN] = ACTIONS(1587), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2394), + [sym_word] = ACTIONS(2397), + [anon_sym_LF] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1564), }, [665] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym__simple_heredoc_body] = ACTIONS(779), + [sym__heredoc_body_beginning] = ACTIONS(779), + [sym_file_descriptor] = ACTIONS(779), + [sym__concat] = ACTIONS(709), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [anon_sym_PIPE_AMP] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_AMP_GT] = ACTIONS(781), + [anon_sym_AMP_GT_GT] = ACTIONS(779), + [anon_sym_LT_AMP] = ACTIONS(779), + [anon_sym_GT_AMP] = ACTIONS(779), + [anon_sym_LT_LT] = ACTIONS(781), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_LT] = ACTIONS(779), + [sym__special_characters] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(781), + [sym_raw_string] = ACTIONS(779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(779), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), + [sym_word] = ACTIONS(781), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(781), }, [666] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(2374), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_concatenation] = STATE(666), + [sym_string] = STATE(264), + [sym_simple_expansion] = STATE(264), + [sym_string_expansion] = STATE(264), + [sym_expansion] = STATE(264), + [sym_command_substitution] = STATE(264), + [sym_process_substitution] = STATE(264), + [aux_sym_unset_command_repeat1] = STATE(666), + [sym__simple_heredoc_body] = ACTIONS(1644), + [sym__heredoc_body_beginning] = ACTIONS(1644), + [sym_file_descriptor] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1646), + [anon_sym_PIPE] = ACTIONS(1646), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1646), + [anon_sym_GT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1644), + [anon_sym_AMP_GT] = ACTIONS(1646), + [anon_sym_AMP_GT_GT] = ACTIONS(1644), + [anon_sym_LT_AMP] = ACTIONS(1644), + [anon_sym_GT_AMP] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_LT_LT_DASH] = ACTIONS(1644), + [anon_sym_LT_LT_LT] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(2400), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1654), + [sym_raw_string] = ACTIONS(2403), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1660), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1663), + [anon_sym_BQUOTE] = ACTIONS(1666), + [anon_sym_LT_LPAREN] = ACTIONS(1669), + [anon_sym_GT_LPAREN] = ACTIONS(1669), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2406), + [sym_word] = ACTIONS(2409), + [anon_sym_LF] = ACTIONS(1644), + [anon_sym_AMP] = ACTIONS(1646), }, [667] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1927), - [anon_sym_EQ_TILDE] = ACTIONS(1927), - [anon_sym_EQ_EQ] = ACTIONS(1927), - [anon_sym_EQ] = ACTIONS(1929), - [anon_sym_PLUS_EQ] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1929), - [anon_sym_BANG_EQ] = ACTIONS(1927), - [anon_sym_PLUS] = ACTIONS(1929), - [anon_sym_DASH] = ACTIONS(1929), - [anon_sym_DASH_EQ] = ACTIONS(1927), - [anon_sym_LT_EQ] = ACTIONS(1927), - [anon_sym_GT_EQ] = ACTIONS(1927), - [anon_sym_PLUS_PLUS] = ACTIONS(1927), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1927), + [aux_sym_concatenation_repeat1] = STATE(667), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_EQ_TILDE] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), }, [668] = { - [anon_sym_SEMI] = ACTIONS(2376), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2374), - [anon_sym_SEMI_SEMI] = ACTIONS(2378), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2378), - [anon_sym_AMP] = ACTIONS(2376), + [sym__simple_heredoc_body] = ACTIONS(2412), + [sym__heredoc_body_beginning] = ACTIONS(2412), + [sym_file_descriptor] = ACTIONS(2412), + [ts_builtin_sym_end] = ACTIONS(2412), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_esac] = ACTIONS(2412), + [anon_sym_PIPE] = ACTIONS(2414), + [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(2414), + [anon_sym_GT] = ACTIONS(2414), + [anon_sym_GT_GT] = ACTIONS(2412), + [anon_sym_AMP_GT] = ACTIONS(2414), + [anon_sym_AMP_GT_GT] = ACTIONS(2412), + [anon_sym_LT_AMP] = ACTIONS(2412), + [anon_sym_GT_AMP] = ACTIONS(2412), + [anon_sym_LT_LT] = ACTIONS(2414), + [anon_sym_LT_LT_DASH] = ACTIONS(2412), + [anon_sym_LT_LT_LT] = ACTIONS(2412), + [anon_sym_BQUOTE] = ACTIONS(2412), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2412), + [anon_sym_AMP] = ACTIONS(2414), }, [669] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2376), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2374), - [anon_sym_SEMI_SEMI] = ACTIONS(2378), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2378), - [anon_sym_AMP] = ACTIONS(2376), + [sym__terminated_statement] = STATE(1157), + [sym_redirected_statement] = STATE(524), + [sym_for_statement] = STATE(524), + [sym_c_style_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_compound_statement] = STATE(524), + [sym_subshell] = STATE(524), + [sym_pipeline] = STATE(524), + [sym_list] = STATE(524), + [sym_negated_command] = STATE(524), + [sym_test_command] = STATE(524), + [sym_declaration_command] = STATE(524), + [sym_unset_command] = STATE(524), + [sym_command] = STATE(524), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(525), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(1157), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_done] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_typeset] = ACTIONS(101), + [anon_sym_export] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_local] = ACTIONS(101), + [anon_sym_unset] = ACTIONS(103), + [anon_sym_unsetenv] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [670] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(2374), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_concatenation] = STATE(975), + [sym_string] = STATE(1159), + [sym_simple_expansion] = STATE(1159), + [sym_string_expansion] = STATE(1159), + [sym_expansion] = STATE(1159), + [sym_command_substitution] = STATE(1159), + [sym_process_substitution] = STATE(1159), + [sym__special_characters] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(2420), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2420), }, [671] = { - [anon_sym_SEMI] = ACTIONS(2380), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(2382), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(2374), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2382), - [anon_sym_AMP] = ACTIONS(2380), + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(1964), + [sym__heredoc_body_beginning] = ACTIONS(1964), + [sym_file_descriptor] = ACTIONS(1964), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_SEMI_SEMI] = ACTIONS(1964), + [anon_sym_PIPE_AMP] = ACTIONS(1964), + [anon_sym_AMP_AMP] = ACTIONS(1964), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_LT] = ACTIONS(1966), + [anon_sym_GT] = ACTIONS(1966), + [anon_sym_GT_GT] = ACTIONS(1964), + [anon_sym_AMP_GT] = ACTIONS(1966), + [anon_sym_AMP_GT_GT] = ACTIONS(1964), + [anon_sym_LT_AMP] = ACTIONS(1964), + [anon_sym_GT_AMP] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(1966), + [anon_sym_LT_LT_DASH] = ACTIONS(1964), + [anon_sym_LT_LT_LT] = ACTIONS(1964), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1964), + [anon_sym_AMP] = ACTIONS(1966), }, [672] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2380), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(2382), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(2374), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2382), - [anon_sym_AMP] = ACTIONS(2380), + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(1964), + [sym__heredoc_body_beginning] = ACTIONS(1964), + [sym_file_descriptor] = ACTIONS(1964), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_SEMI_SEMI] = ACTIONS(1964), + [anon_sym_PIPE_AMP] = ACTIONS(1964), + [anon_sym_AMP_AMP] = ACTIONS(1964), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_LT] = ACTIONS(1966), + [anon_sym_GT] = ACTIONS(1966), + [anon_sym_GT_GT] = ACTIONS(1964), + [anon_sym_AMP_GT] = ACTIONS(1966), + [anon_sym_AMP_GT_GT] = ACTIONS(1964), + [anon_sym_LT_AMP] = ACTIONS(1964), + [anon_sym_GT_AMP] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(1966), + [anon_sym_LT_LT_DASH] = ACTIONS(1964), + [anon_sym_LT_LT_LT] = ACTIONS(1964), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1964), + [anon_sym_AMP] = ACTIONS(1966), }, [673] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(2384), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(1968), + [sym__heredoc_body_beginning] = ACTIONS(1968), + [sym_file_descriptor] = ACTIONS(1968), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(1968), + [anon_sym_PIPE_AMP] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(1970), + [anon_sym_GT_GT] = ACTIONS(1968), + [anon_sym_AMP_GT] = ACTIONS(1970), + [anon_sym_AMP_GT_GT] = ACTIONS(1968), + [anon_sym_LT_AMP] = ACTIONS(1968), + [anon_sym_GT_AMP] = ACTIONS(1968), + [anon_sym_LT_LT] = ACTIONS(1970), + [anon_sym_LT_LT_DASH] = ACTIONS(1968), + [anon_sym_LT_LT_LT] = ACTIONS(1968), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1970), }, [674] = { - [sym__concat] = ACTIONS(1959), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1959), - [anon_sym_AMP_AMP] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1959), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1959), - [anon_sym_EQ_TILDE] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1961), - [anon_sym_PLUS_EQ] = ACTIONS(1959), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG_EQ] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_DASH_EQ] = ACTIONS(1959), - [anon_sym_LT_EQ] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1959), - [anon_sym_PLUS_PLUS] = ACTIONS(1959), - [anon_sym_DASH_DASH] = ACTIONS(1959), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1959), + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(1968), + [sym__heredoc_body_beginning] = ACTIONS(1968), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(1968), + [anon_sym_PIPE_AMP] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(1970), + [anon_sym_LT_LT_DASH] = ACTIONS(1968), + [anon_sym_LT_LT_LT] = ACTIONS(1968), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1970), }, [675] = { - [anon_sym_SEMI] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2384), - [anon_sym_SEMI_SEMI] = ACTIONS(2388), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2388), - [anon_sym_AMP] = ACTIONS(2386), + [aux_sym_concatenation_repeat1] = STATE(1160), + [sym__simple_heredoc_body] = ACTIONS(745), + [sym__heredoc_body_beginning] = ACTIONS(745), + [sym_file_descriptor] = ACTIONS(745), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(749), + [anon_sym_SEMI_SEMI] = ACTIONS(745), + [anon_sym_PIPE_AMP] = ACTIONS(745), + [anon_sym_AMP_AMP] = ACTIONS(745), + [anon_sym_PIPE_PIPE] = ACTIONS(745), + [anon_sym_LT] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(749), + [anon_sym_GT_GT] = ACTIONS(745), + [anon_sym_AMP_GT] = ACTIONS(749), + [anon_sym_AMP_GT_GT] = ACTIONS(745), + [anon_sym_LT_AMP] = ACTIONS(745), + [anon_sym_GT_AMP] = ACTIONS(745), + [anon_sym_LT_LT] = ACTIONS(749), + [anon_sym_LT_LT_DASH] = ACTIONS(745), + [anon_sym_LT_LT_LT] = ACTIONS(745), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(745), + [anon_sym_AMP] = ACTIONS(749), }, [676] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2384), - [anon_sym_SEMI_SEMI] = ACTIONS(2388), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2388), - [anon_sym_AMP] = ACTIONS(2386), + [aux_sym_concatenation_repeat1] = STATE(1160), + [sym__simple_heredoc_body] = ACTIONS(763), + [sym__heredoc_body_beginning] = ACTIONS(763), + [sym_file_descriptor] = ACTIONS(763), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_SEMI_SEMI] = ACTIONS(763), + [anon_sym_PIPE_AMP] = ACTIONS(763), + [anon_sym_AMP_AMP] = ACTIONS(763), + [anon_sym_PIPE_PIPE] = ACTIONS(763), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(763), + [anon_sym_AMP_GT] = ACTIONS(765), + [anon_sym_AMP_GT_GT] = ACTIONS(763), + [anon_sym_LT_AMP] = ACTIONS(763), + [anon_sym_GT_AMP] = ACTIONS(763), + [anon_sym_LT_LT] = ACTIONS(765), + [anon_sym_LT_LT_DASH] = ACTIONS(763), + [anon_sym_LT_LT_LT] = ACTIONS(763), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(763), + [anon_sym_AMP] = ACTIONS(765), }, [677] = { - [anon_sym_LT] = ACTIONS(2390), - [anon_sym_GT] = ACTIONS(2390), - [anon_sym_GT_GT] = ACTIONS(2392), - [anon_sym_AMP_GT] = ACTIONS(2390), - [anon_sym_AMP_GT_GT] = ACTIONS(2392), - [anon_sym_LT_AMP] = ACTIONS(2392), - [anon_sym_GT_AMP] = ACTIONS(2392), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(1160), + [sym__simple_heredoc_body] = ACTIONS(1976), + [sym__heredoc_body_beginning] = ACTIONS(1976), + [sym_file_descriptor] = ACTIONS(1976), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_PIPE] = ACTIONS(1978), + [anon_sym_SEMI_SEMI] = ACTIONS(1976), + [anon_sym_PIPE_AMP] = ACTIONS(1976), + [anon_sym_AMP_AMP] = ACTIONS(1976), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_LT] = ACTIONS(1978), + [anon_sym_GT] = ACTIONS(1978), + [anon_sym_GT_GT] = ACTIONS(1976), + [anon_sym_AMP_GT] = ACTIONS(1978), + [anon_sym_AMP_GT_GT] = ACTIONS(1976), + [anon_sym_LT_AMP] = ACTIONS(1976), + [anon_sym_GT_AMP] = ACTIONS(1976), + [anon_sym_LT_LT] = ACTIONS(1978), + [anon_sym_LT_LT_DASH] = ACTIONS(1976), + [anon_sym_LT_LT_LT] = ACTIONS(1976), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1978), }, [678] = { - [sym_concatenation] = STATE(1166), - [sym_string] = STATE(1161), - [sym_simple_expansion] = STATE(1161), - [sym_string_expansion] = STATE(1161), - [sym_expansion] = STATE(1161), - [sym_command_substitution] = STATE(1161), - [sym_process_substitution] = STATE(1161), - [sym__special_characters] = ACTIONS(2394), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(2400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2406), - [anon_sym_LT_LPAREN] = ACTIONS(2408), - [anon_sym_GT_LPAREN] = ACTIONS(2408), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2400), + [aux_sym_concatenation_repeat1] = STATE(1160), + [sym__simple_heredoc_body] = ACTIONS(1980), + [sym__heredoc_body_beginning] = ACTIONS(1980), + [sym_file_descriptor] = ACTIONS(1980), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_SEMI_SEMI] = ACTIONS(1980), + [anon_sym_PIPE_AMP] = ACTIONS(1980), + [anon_sym_AMP_AMP] = ACTIONS(1980), + [anon_sym_PIPE_PIPE] = ACTIONS(1980), + [anon_sym_LT] = ACTIONS(1982), + [anon_sym_GT] = ACTIONS(1982), + [anon_sym_GT_GT] = ACTIONS(1980), + [anon_sym_AMP_GT] = ACTIONS(1982), + [anon_sym_AMP_GT_GT] = ACTIONS(1980), + [anon_sym_LT_AMP] = ACTIONS(1980), + [anon_sym_GT_AMP] = ACTIONS(1980), + [anon_sym_LT_LT] = ACTIONS(1982), + [anon_sym_LT_LT_DASH] = ACTIONS(1980), + [anon_sym_LT_LT_LT] = ACTIONS(1980), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1980), + [anon_sym_AMP] = ACTIONS(1982), }, [679] = { - [sym_heredoc_start] = ACTIONS(2410), - [sym_comment] = ACTIONS(55), + [anon_sym_do] = ACTIONS(1984), + [anon_sym_then] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), }, [680] = { - [sym_concatenation] = STATE(1170), - [sym_string] = STATE(1169), - [sym_simple_expansion] = STATE(1169), - [sym_string_expansion] = STATE(1169), - [sym_expansion] = STATE(1169), - [sym_command_substitution] = STATE(1169), - [sym_process_substitution] = STATE(1169), - [sym__special_characters] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(2414), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2406), - [anon_sym_LT_LPAREN] = ACTIONS(2408), - [anon_sym_GT_LPAREN] = ACTIONS(2408), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2414), - }, - [681] = { - [sym_file_redirect] = STATE(1171), - [sym_heredoc_redirect] = STATE(1171), - [sym_herestring_redirect] = STATE(1171), - [aux_sym_while_statement_repeat1] = STATE(1171), - [sym_file_descriptor] = ACTIONS(1298), - [ts_builtin_sym_end] = ACTIONS(2416), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_SEMI_SEMI] = ACTIONS(2416), - [anon_sym_PIPE_AMP] = ACTIONS(2416), - [anon_sym_AMP_AMP] = ACTIONS(2416), - [anon_sym_PIPE_PIPE] = ACTIONS(2416), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_GT] = ACTIONS(1304), - [anon_sym_GT_GT] = ACTIONS(1306), - [anon_sym_AMP_GT] = ACTIONS(1304), - [anon_sym_AMP_GT_GT] = ACTIONS(1306), - [anon_sym_LT_AMP] = ACTIONS(1306), - [anon_sym_GT_AMP] = ACTIONS(1306), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_LT_LT_DASH] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(1312), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2418), - }, - [682] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(2420), - [anon_sym_AMP_AMP] = ACTIONS(2420), - [anon_sym_PIPE_PIPE] = ACTIONS(2420), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2420), - [anon_sym_EQ_TILDE] = ACTIONS(2420), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_EQ] = ACTIONS(2422), - [anon_sym_PLUS_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_PLUS] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_DASH_EQ] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(2420), - [anon_sym_GT_EQ] = ACTIONS(2420), - [anon_sym_PLUS_PLUS] = ACTIONS(2420), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(2420), - }, - [683] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(2420), - [anon_sym_AMP_AMP] = ACTIONS(2420), - [anon_sym_PIPE_PIPE] = ACTIONS(2420), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2420), - [anon_sym_EQ_TILDE] = ACTIONS(2420), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_EQ] = ACTIONS(2422), - [anon_sym_PLUS_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_PLUS] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_DASH_EQ] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(2420), - [anon_sym_GT_EQ] = ACTIONS(2420), - [anon_sym_PLUS_PLUS] = ACTIONS(2420), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(2420), - }, - [684] = { - [aux_sym_concatenation_repeat1] = STATE(1172), - [sym_file_descriptor] = ACTIONS(1128), - [sym__concat] = ACTIONS(1130), - [sym_variable_name] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1132), - [anon_sym_SEMI_SEMI] = ACTIONS(1128), - [anon_sym_PIPE_AMP] = ACTIONS(1128), - [anon_sym_AMP_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1132), - [anon_sym_GT] = ACTIONS(1132), - [anon_sym_GT_GT] = ACTIONS(1128), - [anon_sym_AMP_GT] = ACTIONS(1132), - [anon_sym_AMP_GT_GT] = ACTIONS(1128), - [anon_sym_LT_AMP] = ACTIONS(1128), - [anon_sym_GT_AMP] = ACTIONS(1128), - [sym__special_characters] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [anon_sym_DOLLAR] = ACTIONS(1132), - [sym_raw_string] = ACTIONS(1128), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1128), - [anon_sym_LT_LPAREN] = ACTIONS(1128), - [anon_sym_GT_LPAREN] = ACTIONS(1128), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1132), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1132), - }, - [685] = { - [aux_sym_concatenation_repeat1] = STATE(1172), - [sym_file_descriptor] = ACTIONS(1106), - [sym__concat] = ACTIONS(1130), - [sym_variable_name] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_SEMI_SEMI] = ACTIONS(1106), - [anon_sym_PIPE_AMP] = ACTIONS(1106), - [anon_sym_AMP_AMP] = ACTIONS(1106), - [anon_sym_PIPE_PIPE] = ACTIONS(1106), - [anon_sym_LT] = ACTIONS(1108), - [anon_sym_GT] = ACTIONS(1108), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_AMP_GT] = ACTIONS(1108), - [anon_sym_AMP_GT_GT] = ACTIONS(1106), - [anon_sym_LT_AMP] = ACTIONS(1106), - [anon_sym_GT_AMP] = ACTIONS(1106), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [sym_raw_string] = ACTIONS(1106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), - [anon_sym_BQUOTE] = ACTIONS(1106), - [anon_sym_LT_LPAREN] = ACTIONS(1106), - [anon_sym_GT_LPAREN] = ACTIONS(1106), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1108), - [anon_sym_LF] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), - }, - [686] = { - [sym_file_redirect] = STATE(1176), - [sym_heredoc_redirect] = STATE(1176), - [sym_herestring_redirect] = STATE(1176), - [aux_sym_while_statement_repeat1] = STATE(1176), - [sym_file_descriptor] = ACTIONS(2424), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_SEMI_SEMI] = ACTIONS(1300), - [anon_sym_PIPE_AMP] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(2426), - [anon_sym_GT] = ACTIONS(2426), + [sym_file_redirect] = STATE(680), + [sym_heredoc_redirect] = STATE(680), + [sym_herestring_redirect] = STATE(680), + [aux_sym_redirected_statement_repeat1] = STATE(680), + [sym__simple_heredoc_body] = ACTIONS(1990), + [sym__heredoc_body_beginning] = ACTIONS(1990), + [sym_file_descriptor] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_SEMI_SEMI] = ACTIONS(1990), + [anon_sym_PIPE_AMP] = ACTIONS(1990), + [anon_sym_AMP_AMP] = ACTIONS(1990), + [anon_sym_PIPE_PIPE] = ACTIONS(1990), + [anon_sym_LT] = ACTIONS(2425), + [anon_sym_GT] = ACTIONS(2425), [anon_sym_GT_GT] = ACTIONS(2428), - [anon_sym_AMP_GT] = ACTIONS(2426), + [anon_sym_AMP_GT] = ACTIONS(2425), [anon_sym_AMP_GT_GT] = ACTIONS(2428), [anon_sym_LT_AMP] = ACTIONS(2428), [anon_sym_GT_AMP] = ACTIONS(2428), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_LT_LT_DASH] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(2430), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_LT_LT] = ACTIONS(2003), + [anon_sym_LT_LT_DASH] = ACTIONS(2006), + [anon_sym_LT_LT_LT] = ACTIONS(2431), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1995), + }, + [681] = { + [aux_sym_concatenation_repeat1] = STATE(266), + [sym__simple_heredoc_body] = ACTIONS(2016), + [sym__heredoc_body_beginning] = ACTIONS(2016), + [sym_file_descriptor] = ACTIONS(2016), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_PIPE] = ACTIONS(2018), + [anon_sym_SEMI_SEMI] = ACTIONS(2016), + [anon_sym_PIPE_AMP] = ACTIONS(2016), + [anon_sym_AMP_AMP] = ACTIONS(2016), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [anon_sym_EQ_TILDE] = ACTIONS(2018), + [anon_sym_EQ_EQ] = ACTIONS(2018), + [anon_sym_LT] = ACTIONS(2018), + [anon_sym_GT] = ACTIONS(2018), + [anon_sym_GT_GT] = ACTIONS(2016), + [anon_sym_AMP_GT] = ACTIONS(2018), + [anon_sym_AMP_GT_GT] = ACTIONS(2016), + [anon_sym_LT_AMP] = ACTIONS(2016), + [anon_sym_GT_AMP] = ACTIONS(2016), + [anon_sym_LT_LT] = ACTIONS(2018), + [anon_sym_LT_LT_DASH] = ACTIONS(2016), + [anon_sym_LT_LT_LT] = ACTIONS(2016), + [sym__special_characters] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2018), + [sym_raw_string] = ACTIONS(2016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2016), + [anon_sym_BQUOTE] = ACTIONS(2016), + [anon_sym_LT_LPAREN] = ACTIONS(2016), + [anon_sym_GT_LPAREN] = ACTIONS(2016), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2018), + [anon_sym_LF] = ACTIONS(2016), + [anon_sym_AMP] = ACTIONS(2018), + }, + [682] = { + [aux_sym_concatenation_repeat1] = STATE(266), + [sym__simple_heredoc_body] = ACTIONS(2012), + [sym__heredoc_body_beginning] = ACTIONS(2012), + [sym_file_descriptor] = ACTIONS(2012), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_PIPE] = ACTIONS(2014), + [anon_sym_SEMI_SEMI] = ACTIONS(2012), + [anon_sym_PIPE_AMP] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2012), + [anon_sym_PIPE_PIPE] = ACTIONS(2012), + [anon_sym_EQ_TILDE] = ACTIONS(2014), + [anon_sym_EQ_EQ] = ACTIONS(2014), + [anon_sym_LT] = ACTIONS(2014), + [anon_sym_GT] = ACTIONS(2014), + [anon_sym_GT_GT] = ACTIONS(2012), + [anon_sym_AMP_GT] = ACTIONS(2014), + [anon_sym_AMP_GT_GT] = ACTIONS(2012), + [anon_sym_LT_AMP] = ACTIONS(2012), + [anon_sym_GT_AMP] = ACTIONS(2012), + [anon_sym_LT_LT] = ACTIONS(2014), + [anon_sym_LT_LT_DASH] = ACTIONS(2012), + [anon_sym_LT_LT_LT] = ACTIONS(2012), + [sym__special_characters] = ACTIONS(2012), + [anon_sym_DQUOTE] = ACTIONS(2012), + [anon_sym_DOLLAR] = ACTIONS(2014), + [sym_raw_string] = ACTIONS(2012), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2012), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2012), + [anon_sym_BQUOTE] = ACTIONS(2012), + [anon_sym_LT_LPAREN] = ACTIONS(2012), + [anon_sym_GT_LPAREN] = ACTIONS(2012), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2014), + [anon_sym_LF] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2014), + }, + [683] = { + [sym_concatenation] = STATE(683), + [sym_string] = STATE(279), + [sym_simple_expansion] = STATE(279), + [sym_string_expansion] = STATE(279), + [sym_expansion] = STATE(279), + [sym_command_substitution] = STATE(279), + [sym_process_substitution] = STATE(279), + [aux_sym_command_repeat2] = STATE(683), + [sym__simple_heredoc_body] = ACTIONS(2012), + [sym__heredoc_body_beginning] = ACTIONS(2012), + [sym_file_descriptor] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_PIPE] = ACTIONS(2014), + [anon_sym_SEMI_SEMI] = ACTIONS(2012), + [anon_sym_PIPE_AMP] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2012), + [anon_sym_PIPE_PIPE] = ACTIONS(2012), + [anon_sym_EQ_TILDE] = ACTIONS(2434), + [anon_sym_EQ_EQ] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(2014), + [anon_sym_GT] = ACTIONS(2014), + [anon_sym_GT_GT] = ACTIONS(2012), + [anon_sym_AMP_GT] = ACTIONS(2014), + [anon_sym_AMP_GT_GT] = ACTIONS(2012), + [anon_sym_LT_AMP] = ACTIONS(2012), + [anon_sym_GT_AMP] = ACTIONS(2012), + [anon_sym_LT_LT] = ACTIONS(2014), + [anon_sym_LT_LT_DASH] = ACTIONS(2012), + [anon_sym_LT_LT_LT] = ACTIONS(2012), + [sym__special_characters] = ACTIONS(2437), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2029), + [sym_raw_string] = ACTIONS(2440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2038), + [anon_sym_BQUOTE] = ACTIONS(2041), + [anon_sym_LT_LPAREN] = ACTIONS(2044), + [anon_sym_GT_LPAREN] = ACTIONS(2044), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2443), + [anon_sym_LF] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2014), + }, + [684] = { + [sym_concatenation] = STATE(683), + [sym_string] = STATE(279), + [sym_simple_expansion] = STATE(279), + [sym_string_expansion] = STATE(279), + [sym_expansion] = STATE(279), + [sym_command_substitution] = STATE(279), + [sym_process_substitution] = STATE(279), + [aux_sym_command_repeat2] = STATE(683), + [sym__simple_heredoc_body] = ACTIONS(2058), + [sym__heredoc_body_beginning] = ACTIONS(2058), + [sym_file_descriptor] = ACTIONS(2058), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_SEMI_SEMI] = ACTIONS(2058), + [anon_sym_PIPE_AMP] = ACTIONS(2058), + [anon_sym_AMP_AMP] = ACTIONS(2058), + [anon_sym_PIPE_PIPE] = ACTIONS(2058), + [anon_sym_EQ_TILDE] = ACTIONS(513), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(2060), + [anon_sym_GT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2058), + [anon_sym_AMP_GT] = ACTIONS(2060), + [anon_sym_AMP_GT_GT] = ACTIONS(2058), + [anon_sym_LT_AMP] = ACTIONS(2058), + [anon_sym_GT_AMP] = ACTIONS(2058), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_LT_LT_DASH] = ACTIONS(2058), + [anon_sym_LT_LT_LT] = ACTIONS(2058), + [sym__special_characters] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(519), + [anon_sym_LF] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2060), + }, + [685] = { + [sym__simple_heredoc_body] = ACTIONS(2446), + [sym__heredoc_body_beginning] = ACTIONS(2446), + [sym_file_descriptor] = ACTIONS(2446), + [ts_builtin_sym_end] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_esac] = ACTIONS(2446), + [anon_sym_PIPE] = ACTIONS(2448), + [anon_sym_RPAREN] = ACTIONS(2446), + [anon_sym_SEMI_SEMI] = ACTIONS(2446), + [anon_sym_PIPE_AMP] = ACTIONS(2446), + [anon_sym_AMP_AMP] = ACTIONS(2446), + [anon_sym_PIPE_PIPE] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_GT_GT] = ACTIONS(2446), + [anon_sym_AMP_GT] = ACTIONS(2448), + [anon_sym_AMP_GT_GT] = ACTIONS(2446), + [anon_sym_LT_AMP] = ACTIONS(2446), + [anon_sym_GT_AMP] = ACTIONS(2446), + [anon_sym_LT_LT] = ACTIONS(2448), + [anon_sym_LT_LT_DASH] = ACTIONS(2446), + [anon_sym_LT_LT_LT] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(2446), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2448), + }, + [686] = { + [sym__terminated_statement] = STATE(1161), + [sym_redirected_statement] = STATE(59), + [sym_for_statement] = STATE(59), + [sym_c_style_for_statement] = STATE(59), + [sym_while_statement] = STATE(59), + [sym_if_statement] = STATE(59), + [sym_case_statement] = STATE(59), + [sym_function_definition] = STATE(59), + [sym_compound_statement] = STATE(59), + [sym_subshell] = STATE(59), + [sym_pipeline] = STATE(59), + [sym_list] = STATE(59), + [sym_negated_command] = STATE(59), + [sym_test_command] = STATE(59), + [sym_declaration_command] = STATE(59), + [sym_unset_command] = STATE(59), + [sym_command] = STATE(59), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(61), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_typeset] = ACTIONS(101), + [anon_sym_export] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_local] = ACTIONS(101), + [anon_sym_unset] = ACTIONS(103), + [anon_sym_unsetenv] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [687] = { - [sym_file_redirect] = STATE(1177), - [sym_heredoc_redirect] = STATE(1177), - [sym_heredoc_body] = STATE(699), - [sym_herestring_redirect] = STATE(1177), - [aux_sym_while_statement_repeat1] = STATE(1177), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(537), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1340), - [anon_sym_SEMI_SEMI] = ACTIONS(1338), - [anon_sym_PIPE_AMP] = ACTIONS(1338), - [anon_sym_AMP_AMP] = ACTIONS(1338), - [anon_sym_PIPE_PIPE] = ACTIONS(1338), - [anon_sym_LT] = ACTIONS(541), - [anon_sym_GT] = ACTIONS(541), - [anon_sym_GT_GT] = ACTIONS(543), - [anon_sym_AMP_GT] = ACTIONS(541), - [anon_sym_AMP_GT_GT] = ACTIONS(543), - [anon_sym_LT_AMP] = ACTIONS(543), - [anon_sym_GT_AMP] = ACTIONS(543), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(545), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1340), + [sym__terminated_statement] = STATE(1162), + [sym_redirected_statement] = STATE(524), + [sym_for_statement] = STATE(524), + [sym_c_style_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_compound_statement] = STATE(524), + [sym_subshell] = STATE(524), + [sym_pipeline] = STATE(524), + [sym_list] = STATE(524), + [sym_negated_command] = STATE(524), + [sym_test_command] = STATE(524), + [sym_declaration_command] = STATE(524), + [sym_unset_command] = STATE(524), + [sym_command] = STATE(524), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(525), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(1162), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_fi] = ACTIONS(2450), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_typeset] = ACTIONS(101), + [anon_sym_export] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_local] = ACTIONS(101), + [anon_sym_unset] = ACTIONS(103), + [anon_sym_unsetenv] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [688] = { - [anon_sym_RPAREN] = ACTIONS(2432), - [sym_comment] = ACTIONS(55), + [anon_sym_fi] = ACTIONS(2452), + [sym_comment] = ACTIONS(57), }, [689] = { - [sym_file_redirect] = STATE(756), - [sym_file_descriptor] = ACTIONS(2434), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_SEMI_SEMI] = ACTIONS(1430), - [anon_sym_PIPE_AMP] = ACTIONS(1430), - [anon_sym_AMP_AMP] = ACTIONS(1430), - [anon_sym_PIPE_PIPE] = ACTIONS(1430), - [anon_sym_LT] = ACTIONS(2436), - [anon_sym_GT] = ACTIONS(2436), - [anon_sym_GT_GT] = ACTIONS(2438), - [anon_sym_AMP_GT] = ACTIONS(2436), - [anon_sym_AMP_GT_GT] = ACTIONS(2438), - [anon_sym_LT_AMP] = ACTIONS(2438), - [anon_sym_GT_AMP] = ACTIONS(2438), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1432), + [sym__terminated_statement] = STATE(1165), + [sym_redirected_statement] = STATE(524), + [sym_for_statement] = STATE(524), + [sym_c_style_for_statement] = STATE(524), + [sym_while_statement] = STATE(524), + [sym_if_statement] = STATE(524), + [sym_elif_clause] = STATE(1166), + [sym_else_clause] = STATE(1164), + [sym_case_statement] = STATE(524), + [sym_function_definition] = STATE(524), + [sym_compound_statement] = STATE(524), + [sym_subshell] = STATE(524), + [sym_pipeline] = STATE(524), + [sym_list] = STATE(524), + [sym_negated_command] = STATE(524), + [sym_test_command] = STATE(524), + [sym_declaration_command] = STATE(524), + [sym_unset_command] = STATE(524), + [sym_command] = STATE(524), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(525), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(1165), + [aux_sym_if_statement_repeat1] = STATE(1166), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_fi] = ACTIONS(2454), + [anon_sym_elif] = ACTIONS(1323), + [anon_sym_else] = ACTIONS(1325), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_typeset] = ACTIONS(101), + [anon_sym_export] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_local] = ACTIONS(101), + [anon_sym_unset] = ACTIONS(103), + [anon_sym_unsetenv] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [690] = { - [sym_concatenation] = STATE(818), + [sym_elif_clause] = STATE(1167), + [sym_else_clause] = STATE(1164), + [aux_sym_if_statement_repeat1] = STATE(1167), + [anon_sym_fi] = ACTIONS(2452), + [anon_sym_elif] = ACTIONS(2456), + [anon_sym_else] = ACTIONS(2458), + [sym_comment] = ACTIONS(57), + }, + [691] = { + [sym__concat] = ACTIONS(1726), + [anon_sym_in] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1726), + }, + [692] = { + [sym_case_item] = STATE(1173), + [sym_last_case_item] = STATE(1171), + [sym_concatenation] = STATE(1172), + [sym_string] = STATE(1170), + [sym_simple_expansion] = STATE(1170), + [sym_string_expansion] = STATE(1170), + [sym_expansion] = STATE(1170), + [sym_command_substitution] = STATE(1170), + [sym_process_substitution] = STATE(1170), + [aux_sym_case_statement_repeat1] = STATE(1173), + [anon_sym_esac] = ACTIONS(2460), + [sym__special_characters] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(415), + [sym_raw_string] = ACTIONS(2464), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2466), + }, + [693] = { + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_SEMI_SEMI] = ACTIONS(2470), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2470), + }, + [694] = { + [aux_sym_concatenation_repeat1] = STATE(694), + [sym__concat] = ACTIONS(2472), + [anon_sym_in] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1726), + }, + [695] = { + [sym__concat] = ACTIONS(1733), + [anon_sym_in] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1733), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1733), + [anon_sym_AMP] = ACTIONS(1733), + }, + [696] = { + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(2475), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + }, + [697] = { + [sym_case_item] = STATE(1178), + [sym_last_case_item] = STATE(1177), + [sym_concatenation] = STATE(1172), + [sym_string] = STATE(1170), + [sym_simple_expansion] = STATE(1170), + [sym_string_expansion] = STATE(1170), + [sym_expansion] = STATE(1170), + [sym_command_substitution] = STATE(1170), + [sym_process_substitution] = STATE(1170), + [aux_sym_case_statement_repeat1] = STATE(1178), + [anon_sym_esac] = ACTIONS(2477), + [sym__special_characters] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(415), + [sym_raw_string] = ACTIONS(2464), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2466), + }, + [698] = { + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_SEMI_SEMI] = ACTIONS(2481), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2481), + [anon_sym_AMP] = ACTIONS(2481), + }, + [699] = { + [sym_concatenation] = STATE(1183), [sym_string] = STATE(1182), - [sym_array] = STATE(818), [sym_simple_expansion] = STATE(1182), [sym_string_expansion] = STATE(1182), [sym_expansion] = STATE(1182), [sym_command_substitution] = STATE(1182), [sym_process_substitution] = STATE(1182), - [sym__empty_value] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1542), - [sym__special_characters] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR] = ACTIONS(207), - [sym_raw_string] = ACTIONS(2442), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_BQUOTE] = ACTIONS(215), - [anon_sym_LT_LPAREN] = ACTIONS(217), - [anon_sym_GT_LPAREN] = ACTIONS(217), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2442), - }, - [691] = { - [aux_sym_concatenation_repeat1] = STATE(1183), - [sym__concat] = ACTIONS(697), - [sym_variable_name] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [sym__special_characters] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_LT_LPAREN] = ACTIONS(807), - [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(809), - [sym_word] = ACTIONS(809), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), - }, - [692] = { - [sym_variable_assignment] = STATE(692), - [sym_subscript] = STATE(277), - [sym_concatenation] = STATE(692), - [sym_string] = STATE(276), - [sym_simple_expansion] = STATE(276), - [sym_string_expansion] = STATE(276), - [sym_expansion] = STATE(276), - [sym_command_substitution] = STATE(276), - [sym_process_substitution] = STATE(276), - [aux_sym_declaration_command_repeat1] = STATE(692), - [sym_variable_name] = ACTIONS(2444), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym_PIPE] = ACTIONS(1601), - [anon_sym_SEMI_SEMI] = ACTIONS(1599), - [anon_sym_PIPE_AMP] = ACTIONS(1599), - [anon_sym_AMP_AMP] = ACTIONS(1599), - [anon_sym_PIPE_PIPE] = ACTIONS(1599), - [sym__special_characters] = ACTIONS(2447), - [anon_sym_DQUOTE] = ACTIONS(1606), - [anon_sym_DOLLAR] = ACTIONS(1609), - [sym_raw_string] = ACTIONS(2450), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1615), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1618), - [anon_sym_BQUOTE] = ACTIONS(1621), - [anon_sym_LT_LPAREN] = ACTIONS(1624), - [anon_sym_GT_LPAREN] = ACTIONS(1624), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2453), - [sym_word] = ACTIONS(2456), - [anon_sym_LF] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1601), - }, - [693] = { - [aux_sym_concatenation_repeat1] = STATE(1184), - [sym__concat] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [sym__special_characters] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_LT_LPAREN] = ACTIONS(807), - [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(809), - [sym_word] = ACTIONS(809), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), - }, - [694] = { - [sym_concatenation] = STATE(694), - [sym_string] = STATE(280), - [sym_simple_expansion] = STATE(280), - [sym_string_expansion] = STATE(280), - [sym_expansion] = STATE(280), - [sym_command_substitution] = STATE(280), - [sym_process_substitution] = STATE(280), - [aux_sym_unset_command_repeat1] = STATE(694), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [sym__special_characters] = ACTIONS(2459), - [anon_sym_DQUOTE] = ACTIONS(1688), - [anon_sym_DOLLAR] = ACTIONS(1691), - [sym_raw_string] = ACTIONS(2462), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1697), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1700), - [anon_sym_BQUOTE] = ACTIONS(1703), - [anon_sym_LT_LPAREN] = ACTIONS(1706), - [anon_sym_GT_LPAREN] = ACTIONS(1706), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2465), - [sym_word] = ACTIONS(2468), - [anon_sym_LF] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - }, - [695] = { - [aux_sym_concatenation_repeat1] = STATE(695), - [sym__simple_heredoc_body] = ACTIONS(1763), - [sym__heredoc_body_beginning] = ACTIONS(1763), - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_LT_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT_LT] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - }, - [696] = { - [sym_compound_statement] = STATE(1185), - [anon_sym_LBRACE] = ACTIONS(595), - [sym_comment] = ACTIONS(55), - }, - [697] = { - [sym__simple_heredoc_body] = ACTIONS(2471), - [sym__heredoc_body_beginning] = ACTIONS(2471), - [sym_file_descriptor] = ACTIONS(2471), - [ts_builtin_sym_end] = ACTIONS(2471), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_esac] = ACTIONS(2471), - [anon_sym_PIPE] = ACTIONS(2473), - [anon_sym_RPAREN] = ACTIONS(2471), - [anon_sym_SEMI_SEMI] = ACTIONS(2471), - [anon_sym_PIPE_AMP] = ACTIONS(2471), - [anon_sym_AMP_AMP] = ACTIONS(2471), - [anon_sym_PIPE_PIPE] = ACTIONS(2471), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2473), - [anon_sym_GT_GT] = ACTIONS(2471), - [anon_sym_AMP_GT] = ACTIONS(2473), - [anon_sym_AMP_GT_GT] = ACTIONS(2471), - [anon_sym_LT_AMP] = ACTIONS(2471), - [anon_sym_GT_AMP] = ACTIONS(2471), - [anon_sym_LT_LT] = ACTIONS(2473), - [anon_sym_LT_LT_DASH] = ACTIONS(2471), - [anon_sym_LT_LT_LT] = ACTIONS(2471), - [anon_sym_BQUOTE] = ACTIONS(2471), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2471), - [anon_sym_AMP] = ACTIONS(2473), - }, - [698] = { - [sym__terminated_statement] = STATE(1187), - [sym_for_statement] = STATE(545), - [sym_c_style_for_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_function_definition] = STATE(545), - [sym_subshell] = STATE(545), - [sym_pipeline] = STATE(545), - [sym_list] = STATE(545), - [sym_negated_command] = STATE(545), - [sym_test_command] = STATE(545), - [sym_declaration_command] = STATE(545), - [sym_unset_command] = STATE(545), - [sym_command] = STATE(545), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(546), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(1187), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_done] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), - }, - [699] = { - [ts_builtin_sym_end] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2479), - [anon_sym_esac] = ACTIONS(2477), - [anon_sym_PIPE] = ACTIONS(2479), - [anon_sym_RPAREN] = ACTIONS(2477), - [anon_sym_SEMI_SEMI] = ACTIONS(2477), - [anon_sym_PIPE_AMP] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_BQUOTE] = ACTIONS(2477), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_RBRACE] = ACTIONS(2483), + [sym__special_characters] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(2487), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2487), }, [700] = { - [sym_file_redirect] = STATE(541), - [sym_heredoc_redirect] = STATE(541), - [sym_heredoc_body] = STATE(1188), - [sym_herestring_redirect] = STATE(541), - [aux_sym_while_statement_repeat1] = STATE(541), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(343), - [ts_builtin_sym_end] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(2479), - [anon_sym_SEMI_SEMI] = ACTIONS(2477), - [anon_sym_PIPE_AMP] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(353), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(353), - [anon_sym_LT_AMP] = ACTIONS(353), - [anon_sym_GT_AMP] = ACTIONS(353), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(359), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(2489), + [sym_comment] = ACTIONS(57), }, [701] = { - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_SEMI_SEMI] = ACTIONS(1971), - [anon_sym_PIPE_AMP] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1971), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1973), + [sym_concatenation] = STATE(1187), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1187), + [anon_sym_RBRACE] = ACTIONS(2491), + [anon_sym_EQ] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(2493), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2495), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(2497), + [anon_sym_COLON] = ACTIONS(2493), + [anon_sym_COLON_QMARK] = ACTIONS(2493), + [anon_sym_COLON_DASH] = ACTIONS(2493), + [anon_sym_PERCENT] = ACTIONS(2493), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [702] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_SEMI_SEMI] = ACTIONS(1971), - [anon_sym_PIPE_AMP] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1973), + [sym_concatenation] = STATE(1189), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1189), + [anon_sym_RBRACE] = ACTIONS(2483), + [anon_sym_EQ] = ACTIONS(2499), + [anon_sym_DASH] = ACTIONS(2499), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(2503), + [anon_sym_COLON] = ACTIONS(2499), + [anon_sym_COLON_QMARK] = ACTIONS(2499), + [anon_sym_COLON_DASH] = ACTIONS(2499), + [anon_sym_PERCENT] = ACTIONS(2499), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [703] = { - [sym_concatenation] = STATE(994), - [sym_string] = STATE(1190), - [sym_simple_expansion] = STATE(1190), - [sym_string_expansion] = STATE(1190), - [sym_expansion] = STATE(1190), - [sym_command_substitution] = STATE(1190), - [sym_process_substitution] = STATE(1190), - [sym__special_characters] = ACTIONS(2481), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(2483), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2483), + [sym__concat] = ACTIONS(1834), + [anon_sym_in] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_SEMI_SEMI] = ACTIONS(1834), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1834), }, [704] = { - [aux_sym_concatenation_repeat1] = STATE(282), - [sym__simple_heredoc_body] = ACTIONS(2007), - [sym__heredoc_body_beginning] = ACTIONS(2007), - [sym_file_descriptor] = ACTIONS(2007), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_PIPE] = ACTIONS(2009), - [anon_sym_SEMI_SEMI] = ACTIONS(2007), - [anon_sym_PIPE_AMP] = ACTIONS(2007), - [anon_sym_AMP_AMP] = ACTIONS(2007), - [anon_sym_PIPE_PIPE] = ACTIONS(2007), - [anon_sym_EQ_TILDE] = ACTIONS(2009), - [anon_sym_EQ_EQ] = ACTIONS(2009), - [anon_sym_LT] = ACTIONS(2009), - [anon_sym_GT] = ACTIONS(2009), - [anon_sym_GT_GT] = ACTIONS(2007), - [anon_sym_AMP_GT] = ACTIONS(2009), - [anon_sym_AMP_GT_GT] = ACTIONS(2007), - [anon_sym_LT_AMP] = ACTIONS(2007), - [anon_sym_GT_AMP] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2009), - [anon_sym_LT_LT_DASH] = ACTIONS(2007), - [anon_sym_LT_LT_LT] = ACTIONS(2007), - [sym__special_characters] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), - [sym_raw_string] = ACTIONS(2007), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2007), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2007), - [anon_sym_BQUOTE] = ACTIONS(2007), - [anon_sym_LT_LPAREN] = ACTIONS(2007), - [anon_sym_GT_LPAREN] = ACTIONS(2007), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2009), - [anon_sym_LF] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2009), + [sym_concatenation] = STATE(1192), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1192), + [sym_regex] = ACTIONS(2505), + [anon_sym_RBRACE] = ACTIONS(2507), + [anon_sym_EQ] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2509), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2511), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(2509), + [anon_sym_COLON_QMARK] = ACTIONS(2509), + [anon_sym_COLON_DASH] = ACTIONS(2509), + [anon_sym_PERCENT] = ACTIONS(2509), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [705] = { - [aux_sym_concatenation_repeat1] = STATE(282), - [sym__simple_heredoc_body] = ACTIONS(2003), - [sym__heredoc_body_beginning] = ACTIONS(2003), - [sym_file_descriptor] = ACTIONS(2003), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_PIPE] = ACTIONS(2005), - [anon_sym_SEMI_SEMI] = ACTIONS(2003), - [anon_sym_PIPE_AMP] = ACTIONS(2003), - [anon_sym_AMP_AMP] = ACTIONS(2003), - [anon_sym_PIPE_PIPE] = ACTIONS(2003), - [anon_sym_EQ_TILDE] = ACTIONS(2005), - [anon_sym_EQ_EQ] = ACTIONS(2005), - [anon_sym_LT] = ACTIONS(2005), - [anon_sym_GT] = ACTIONS(2005), - [anon_sym_GT_GT] = ACTIONS(2003), - [anon_sym_AMP_GT] = ACTIONS(2005), - [anon_sym_AMP_GT_GT] = ACTIONS(2003), - [anon_sym_LT_AMP] = ACTIONS(2003), - [anon_sym_GT_AMP] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2005), - [anon_sym_LT_LT_DASH] = ACTIONS(2003), - [anon_sym_LT_LT_LT] = ACTIONS(2003), - [sym__special_characters] = ACTIONS(2003), - [anon_sym_DQUOTE] = ACTIONS(2003), - [anon_sym_DOLLAR] = ACTIONS(2005), - [sym_raw_string] = ACTIONS(2003), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2003), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2003), - [anon_sym_BQUOTE] = ACTIONS(2003), - [anon_sym_LT_LPAREN] = ACTIONS(2003), - [anon_sym_GT_LPAREN] = ACTIONS(2003), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2005), - [anon_sym_LF] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(2005), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(2507), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [706] = { - [aux_sym_concatenation_repeat1] = STATE(1191), - [sym__simple_heredoc_body] = ACTIONS(773), - [sym__heredoc_body_beginning] = ACTIONS(773), - [sym_file_descriptor] = ACTIONS(773), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(773), - [anon_sym_AMP_GT] = ACTIONS(777), - [anon_sym_AMP_GT_GT] = ACTIONS(773), - [anon_sym_LT_AMP] = ACTIONS(773), - [anon_sym_GT_AMP] = ACTIONS(773), - [anon_sym_LT_LT] = ACTIONS(777), - [anon_sym_LT_LT_DASH] = ACTIONS(773), - [anon_sym_LT_LT_LT] = ACTIONS(773), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(777), + [sym__concat] = ACTIONS(1882), + [anon_sym_in] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1882), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1882), }, [707] = { - [aux_sym_concatenation_repeat1] = STATE(1191), - [sym__simple_heredoc_body] = ACTIONS(791), - [sym__heredoc_body_beginning] = ACTIONS(791), - [sym_file_descriptor] = ACTIONS(791), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_SEMI_SEMI] = ACTIONS(791), - [anon_sym_PIPE_AMP] = ACTIONS(791), - [anon_sym_AMP_AMP] = ACTIONS(791), - [anon_sym_PIPE_PIPE] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_GT_GT] = ACTIONS(791), - [anon_sym_AMP_GT] = ACTIONS(793), - [anon_sym_AMP_GT_GT] = ACTIONS(791), - [anon_sym_LT_AMP] = ACTIONS(791), - [anon_sym_GT_AMP] = ACTIONS(791), - [anon_sym_LT_LT] = ACTIONS(793), - [anon_sym_LT_LT_DASH] = ACTIONS(791), - [anon_sym_LT_LT_LT] = ACTIONS(791), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_AMP] = ACTIONS(793), + [sym_concatenation] = STATE(1189), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1189), + [sym_regex] = ACTIONS(2513), + [anon_sym_RBRACE] = ACTIONS(2483), + [anon_sym_EQ] = ACTIONS(2499), + [anon_sym_DASH] = ACTIONS(2499), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(2499), + [anon_sym_COLON_QMARK] = ACTIONS(2499), + [anon_sym_COLON_DASH] = ACTIONS(2499), + [anon_sym_PERCENT] = ACTIONS(2499), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [708] = { - [aux_sym_concatenation_repeat1] = STATE(1191), - [sym__simple_heredoc_body] = ACTIONS(2015), - [sym__heredoc_body_beginning] = ACTIONS(2015), - [sym_file_descriptor] = ACTIONS(2015), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(2017), - [anon_sym_PIPE] = ACTIONS(2017), - [anon_sym_SEMI_SEMI] = ACTIONS(2015), - [anon_sym_PIPE_AMP] = ACTIONS(2015), - [anon_sym_AMP_AMP] = ACTIONS(2015), - [anon_sym_PIPE_PIPE] = ACTIONS(2015), - [anon_sym_LT] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2017), - [anon_sym_GT_GT] = ACTIONS(2015), - [anon_sym_AMP_GT] = ACTIONS(2017), - [anon_sym_AMP_GT_GT] = ACTIONS(2015), - [anon_sym_LT_AMP] = ACTIONS(2015), - [anon_sym_GT_AMP] = ACTIONS(2015), - [anon_sym_LT_LT] = ACTIONS(2017), - [anon_sym_LT_LT_DASH] = ACTIONS(2015), - [anon_sym_LT_LT_LT] = ACTIONS(2015), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2017), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(2483), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [709] = { - [aux_sym_concatenation_repeat1] = STATE(1191), - [sym__simple_heredoc_body] = ACTIONS(2019), - [sym__heredoc_body_beginning] = ACTIONS(2019), - [sym_file_descriptor] = ACTIONS(2019), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_SEMI_SEMI] = ACTIONS(2019), - [anon_sym_PIPE_AMP] = ACTIONS(2019), - [anon_sym_AMP_AMP] = ACTIONS(2019), - [anon_sym_PIPE_PIPE] = ACTIONS(2019), - [anon_sym_LT] = ACTIONS(2021), - [anon_sym_GT] = ACTIONS(2021), - [anon_sym_GT_GT] = ACTIONS(2019), - [anon_sym_AMP_GT] = ACTIONS(2021), - [anon_sym_AMP_GT_GT] = ACTIONS(2019), - [anon_sym_LT_AMP] = ACTIONS(2019), - [anon_sym_GT_AMP] = ACTIONS(2019), - [anon_sym_LT_LT] = ACTIONS(2021), - [anon_sym_LT_LT_DASH] = ACTIONS(2019), - [anon_sym_LT_LT_LT] = ACTIONS(2019), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2019), - [anon_sym_AMP] = ACTIONS(2021), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(2515), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [710] = { - [sym_file_redirect] = STATE(710), - [sym_heredoc_redirect] = STATE(710), - [sym_herestring_redirect] = STATE(710), - [aux_sym_while_statement_repeat1] = STATE(710), - [sym__simple_heredoc_body] = ACTIONS(2027), - [sym__heredoc_body_beginning] = ACTIONS(2027), - [sym_file_descriptor] = ACTIONS(2485), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2027), - [anon_sym_PIPE_AMP] = ACTIONS(2027), - [anon_sym_AMP_AMP] = ACTIONS(2027), - [anon_sym_PIPE_PIPE] = ACTIONS(2027), - [anon_sym_LT] = ACTIONS(2488), - [anon_sym_GT] = ACTIONS(2488), - [anon_sym_GT_GT] = ACTIONS(2491), - [anon_sym_AMP_GT] = ACTIONS(2488), - [anon_sym_AMP_GT_GT] = ACTIONS(2491), - [anon_sym_LT_AMP] = ACTIONS(2491), - [anon_sym_GT_AMP] = ACTIONS(2491), - [anon_sym_LT_LT] = ACTIONS(2040), - [anon_sym_LT_LT_DASH] = ACTIONS(2043), - [anon_sym_LT_LT_LT] = ACTIONS(2494), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(2032), + [sym__concat] = ACTIONS(1890), + [anon_sym_in] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), }, [711] = { - [sym_file_redirect] = STATE(710), - [sym_heredoc_redirect] = STATE(710), - [sym_heredoc_body] = STATE(996), - [sym_herestring_redirect] = STATE(710), - [aux_sym_while_statement_repeat1] = STATE(710), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(537), - [anon_sym_SEMI] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_SEMI_SEMI] = ACTIONS(2023), - [anon_sym_PIPE_AMP] = ACTIONS(2023), - [anon_sym_AMP_AMP] = ACTIONS(2023), - [anon_sym_PIPE_PIPE] = ACTIONS(2023), - [anon_sym_LT] = ACTIONS(541), - [anon_sym_GT] = ACTIONS(541), - [anon_sym_GT_GT] = ACTIONS(543), - [anon_sym_AMP_GT] = ACTIONS(541), - [anon_sym_AMP_GT_GT] = ACTIONS(543), - [anon_sym_LT_AMP] = ACTIONS(543), - [anon_sym_GT_AMP] = ACTIONS(543), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(545), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2025), + [anon_sym_SEMI] = ACTIONS(2517), + [anon_sym_RPAREN] = ACTIONS(2515), + [anon_sym_SEMI_SEMI] = ACTIONS(2519), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2519), + [anon_sym_AMP] = ACTIONS(2519), }, [712] = { - [sym_concatenation] = STATE(712), - [sym_string] = STATE(294), - [sym_simple_expansion] = STATE(294), - [sym_string_expansion] = STATE(294), - [sym_expansion] = STATE(294), - [sym_command_substitution] = STATE(294), - [sym_process_substitution] = STATE(294), - [aux_sym_command_repeat2] = STATE(712), - [sym__simple_heredoc_body] = ACTIONS(2003), - [sym__heredoc_body_beginning] = ACTIONS(2003), - [sym_file_descriptor] = ACTIONS(2003), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_PIPE] = ACTIONS(2005), - [anon_sym_SEMI_SEMI] = ACTIONS(2003), - [anon_sym_PIPE_AMP] = ACTIONS(2003), - [anon_sym_AMP_AMP] = ACTIONS(2003), - [anon_sym_PIPE_PIPE] = ACTIONS(2003), - [anon_sym_EQ_TILDE] = ACTIONS(2497), - [anon_sym_EQ_EQ] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2005), - [anon_sym_GT] = ACTIONS(2005), - [anon_sym_GT_GT] = ACTIONS(2003), - [anon_sym_AMP_GT] = ACTIONS(2005), - [anon_sym_AMP_GT_GT] = ACTIONS(2003), - [anon_sym_LT_AMP] = ACTIONS(2003), - [anon_sym_GT_AMP] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2005), - [anon_sym_LT_LT_DASH] = ACTIONS(2003), - [anon_sym_LT_LT_LT] = ACTIONS(2003), - [sym__special_characters] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_DOLLAR] = ACTIONS(2058), - [sym_raw_string] = ACTIONS(2503), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2067), - [anon_sym_BQUOTE] = ACTIONS(2070), - [anon_sym_LT_LPAREN] = ACTIONS(2073), - [anon_sym_GT_LPAREN] = ACTIONS(2073), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2506), - [anon_sym_LF] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(2005), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1197), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2515), + [anon_sym_SEMI_SEMI] = ACTIONS(2523), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2521), }, [713] = { - [sym_file_redirect] = STATE(1192), - [sym_heredoc_redirect] = STATE(1192), - [sym_heredoc_body] = STATE(996), - [sym_herestring_redirect] = STATE(1192), - [sym_concatenation] = STATE(712), - [sym_string] = STATE(294), - [sym_simple_expansion] = STATE(294), - [sym_string_expansion] = STATE(294), - [sym_expansion] = STATE(294), - [sym_command_substitution] = STATE(294), - [sym_process_substitution] = STATE(294), - [aux_sym_while_statement_repeat1] = STATE(1192), - [aux_sym_command_repeat2] = STATE(712), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(537), - [anon_sym_SEMI] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_SEMI_SEMI] = ACTIONS(2023), - [anon_sym_PIPE_AMP] = ACTIONS(2023), - [anon_sym_AMP_AMP] = ACTIONS(2023), - [anon_sym_PIPE_PIPE] = ACTIONS(2023), - [anon_sym_EQ_TILDE] = ACTIONS(539), - [anon_sym_EQ_EQ] = ACTIONS(539), - [anon_sym_LT] = ACTIONS(541), - [anon_sym_GT] = ACTIONS(541), - [anon_sym_GT_GT] = ACTIONS(543), - [anon_sym_AMP_GT] = ACTIONS(541), - [anon_sym_AMP_GT_GT] = ACTIONS(543), - [anon_sym_LT_AMP] = ACTIONS(543), - [anon_sym_GT_AMP] = ACTIONS(543), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(545), - [sym__special_characters] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(549), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(551), - [anon_sym_LF] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2025), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1197), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2521), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2515), + [anon_sym_SEMI_SEMI] = ACTIONS(2523), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2521), }, [714] = { - [ts_builtin_sym_end] = ACTIONS(2509), - [anon_sym_SEMI] = ACTIONS(2511), - [anon_sym_esac] = ACTIONS(2509), - [anon_sym_PIPE] = ACTIONS(2511), - [anon_sym_RPAREN] = ACTIONS(2509), - [anon_sym_SEMI_SEMI] = ACTIONS(2509), - [anon_sym_PIPE_AMP] = ACTIONS(2509), - [anon_sym_AMP_AMP] = ACTIONS(2509), - [anon_sym_PIPE_PIPE] = ACTIONS(2509), - [anon_sym_BQUOTE] = ACTIONS(2509), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2509), - [anon_sym_AMP] = ACTIONS(2511), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(2515), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [715] = { - [sym__terminated_statement] = STATE(1193), - [sym_for_statement] = STATE(63), - [sym_c_style_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_if_statement] = STATE(63), - [sym_case_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_subshell] = STATE(63), - [sym_pipeline] = STATE(63), - [sym_list] = STATE(63), - [sym_negated_command] = STATE(63), - [sym_test_command] = STATE(63), - [sym_declaration_command] = STATE(63), - [sym_unset_command] = STATE(63), - [sym_command] = STATE(63), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(65), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_SEMI_SEMI] = ACTIONS(2527), + [anon_sym_BQUOTE] = ACTIONS(2515), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2527), + [anon_sym_AMP] = ACTIONS(2527), }, [716] = { - [sym__terminated_statement] = STATE(1194), - [sym_for_statement] = STATE(545), - [sym_c_style_for_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_function_definition] = STATE(545), - [sym_subshell] = STATE(545), - [sym_pipeline] = STATE(545), - [sym_list] = STATE(545), - [sym_negated_command] = STATE(545), - [sym_test_command] = STATE(545), - [sym_declaration_command] = STATE(545), - [sym_unset_command] = STATE(545), - [sym_command] = STATE(545), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(546), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(1194), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_fi] = ACTIONS(2513), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1200), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(2531), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(2515), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2531), + [anon_sym_AMP] = ACTIONS(2529), }, [717] = { - [anon_sym_fi] = ACTIONS(2515), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1200), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(2531), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(2515), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2531), + [anon_sym_AMP] = ACTIONS(2529), }, [718] = { - [sym__terminated_statement] = STATE(1197), - [sym_for_statement] = STATE(545), - [sym_c_style_for_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_elif_clause] = STATE(1198), - [sym_else_clause] = STATE(1196), - [sym_case_statement] = STATE(545), - [sym_function_definition] = STATE(545), - [sym_subshell] = STATE(545), - [sym_pipeline] = STATE(545), - [sym_list] = STATE(545), - [sym_negated_command] = STATE(545), - [sym_test_command] = STATE(545), - [sym_declaration_command] = STATE(545), - [sym_unset_command] = STATE(545), - [sym_command] = STATE(545), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(546), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(1197), - [aux_sym_if_statement_repeat1] = STATE(1198), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_fi] = ACTIONS(2517), - [anon_sym_elif] = ACTIONS(1360), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(2533), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [719] = { - [sym_elif_clause] = STATE(1199), - [sym_else_clause] = STATE(1196), - [aux_sym_if_statement_repeat1] = STATE(1199), - [anon_sym_fi] = ACTIONS(2515), - [anon_sym_elif] = ACTIONS(2519), - [anon_sym_else] = ACTIONS(2521), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(1924), + [anon_sym_in] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1924), }, [720] = { - [sym__concat] = ACTIONS(1763), - [anon_sym_in] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(2535), + [anon_sym_RPAREN] = ACTIONS(2533), + [anon_sym_SEMI_SEMI] = ACTIONS(2537), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(2537), }, [721] = { - [sym_case_item] = STATE(1205), - [sym_last_case_item] = STATE(1203), - [sym_concatenation] = STATE(1204), - [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), - [aux_sym_case_statement_repeat1] = STATE(1205), - [anon_sym_esac] = ACTIONS(2523), - [sym__special_characters] = ACTIONS(2525), - [anon_sym_DQUOTE] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(443), - [sym_raw_string] = ACTIONS(2527), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), - [anon_sym_BQUOTE] = ACTIONS(451), - [anon_sym_LT_LPAREN] = ACTIONS(453), - [anon_sym_GT_LPAREN] = ACTIONS(453), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2529), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1204), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2533), + [anon_sym_SEMI_SEMI] = ACTIONS(2541), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2541), + [anon_sym_AMP] = ACTIONS(2539), }, [722] = { - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_SEMI_SEMI] = ACTIONS(2533), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2533), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1204), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2533), + [anon_sym_SEMI_SEMI] = ACTIONS(2541), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2541), + [anon_sym_AMP] = ACTIONS(2539), }, [723] = { - [aux_sym_concatenation_repeat1] = STATE(723), - [sym__concat] = ACTIONS(2535), - [anon_sym_in] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1763), + [sym_compound_statement] = STATE(1205), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(57), }, [724] = { - [sym__concat] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_SEMI_SEMI] = ACTIONS(1770), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1770), + [aux_sym_concatenation_repeat1] = STATE(1206), + [sym__simple_heredoc_body] = ACTIONS(1107), + [sym__heredoc_body_beginning] = ACTIONS(1107), + [sym_file_descriptor] = ACTIONS(1107), + [sym__concat] = ACTIONS(1109), + [sym_variable_name] = ACTIONS(1107), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_RPAREN] = ACTIONS(1107), + [anon_sym_SEMI_SEMI] = ACTIONS(1107), + [anon_sym_PIPE_AMP] = ACTIONS(1107), + [anon_sym_AMP_AMP] = ACTIONS(1107), + [anon_sym_PIPE_PIPE] = ACTIONS(1107), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1107), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1107), + [anon_sym_LT_AMP] = ACTIONS(1107), + [anon_sym_GT_AMP] = ACTIONS(1107), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_LT_LT_DASH] = ACTIONS(1107), + [anon_sym_LT_LT_LT] = ACTIONS(1107), + [sym__special_characters] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(1107), + [anon_sym_DOLLAR] = ACTIONS(1111), + [sym_raw_string] = ACTIONS(1107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1107), + [anon_sym_BQUOTE] = ACTIONS(1107), + [anon_sym_LT_LPAREN] = ACTIONS(1107), + [anon_sym_GT_LPAREN] = ACTIONS(1107), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1111), + [anon_sym_LF] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1111), }, [725] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(2538), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [aux_sym_concatenation_repeat1] = STATE(1206), + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(1109), + [sym_variable_name] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1087), + [anon_sym_RPAREN] = ACTIONS(1085), + [anon_sym_SEMI_SEMI] = ACTIONS(1085), + [anon_sym_PIPE_AMP] = ACTIONS(1085), + [anon_sym_AMP_AMP] = ACTIONS(1085), + [anon_sym_PIPE_PIPE] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_AMP_GT] = ACTIONS(1087), + [anon_sym_AMP_GT_GT] = ACTIONS(1085), + [anon_sym_LT_AMP] = ACTIONS(1085), + [anon_sym_GT_AMP] = ACTIONS(1085), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_LT_LT_DASH] = ACTIONS(1085), + [anon_sym_LT_LT_LT] = ACTIONS(1085), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1087), + [sym_raw_string] = ACTIONS(1085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_LT_LPAREN] = ACTIONS(1085), + [anon_sym_GT_LPAREN] = ACTIONS(1085), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1087), + [anon_sym_LF] = ACTIONS(1085), + [anon_sym_AMP] = ACTIONS(1087), }, [726] = { - [sym_case_item] = STATE(1210), - [sym_last_case_item] = STATE(1209), - [sym_concatenation] = STATE(1204), - [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), - [aux_sym_case_statement_repeat1] = STATE(1210), - [anon_sym_esac] = ACTIONS(2540), - [sym__special_characters] = ACTIONS(2525), - [anon_sym_DQUOTE] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(443), - [sym_raw_string] = ACTIONS(2527), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), - [anon_sym_BQUOTE] = ACTIONS(451), - [anon_sym_LT_LPAREN] = ACTIONS(453), - [anon_sym_GT_LPAREN] = ACTIONS(453), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2529), + [sym_concatenation] = STATE(787), + [sym_string] = STATE(1208), + [sym_array] = STATE(787), + [sym_simple_expansion] = STATE(1208), + [sym_string_expansion] = STATE(1208), + [sym_expansion] = STATE(1208), + [sym_command_substitution] = STATE(1208), + [sym_process_substitution] = STATE(1208), + [sym__empty_value] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1505), + [sym__special_characters] = ACTIONS(2543), + [anon_sym_DQUOTE] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [sym_raw_string] = ACTIONS(2545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(195), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(197), + [anon_sym_BQUOTE] = ACTIONS(199), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2545), }, [727] = { - [anon_sym_SEMI] = ACTIONS(2542), - [anon_sym_SEMI_SEMI] = ACTIONS(2544), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2544), - [anon_sym_AMP] = ACTIONS(2544), + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__simple_heredoc_body] = ACTIONS(779), + [sym__heredoc_body_beginning] = ACTIONS(779), + [sym_file_descriptor] = ACTIONS(779), + [sym__concat] = ACTIONS(671), + [sym_variable_name] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [anon_sym_PIPE_AMP] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_AMP_GT] = ACTIONS(781), + [anon_sym_AMP_GT_GT] = ACTIONS(779), + [anon_sym_LT_AMP] = ACTIONS(779), + [anon_sym_GT_AMP] = ACTIONS(779), + [anon_sym_LT_LT] = ACTIONS(781), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_LT] = ACTIONS(779), + [sym__special_characters] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(781), + [sym_raw_string] = ACTIONS(779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(779), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), + [sym_word] = ACTIONS(781), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(781), }, [728] = { - [sym_concatenation] = STATE(1215), - [sym_string] = STATE(1214), - [sym_simple_expansion] = STATE(1214), - [sym_string_expansion] = STATE(1214), - [sym_expansion] = STATE(1214), - [sym_command_substitution] = STATE(1214), - [sym_process_substitution] = STATE(1214), - [anon_sym_RBRACE] = ACTIONS(2546), - [sym__special_characters] = ACTIONS(2548), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(2550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2550), + [sym_variable_assignment] = STATE(728), + [sym_subscript] = STATE(314), + [sym_concatenation] = STATE(728), + [sym_string] = STATE(313), + [sym_simple_expansion] = STATE(313), + [sym_string_expansion] = STATE(313), + [sym_expansion] = STATE(313), + [sym_command_substitution] = STATE(313), + [sym_process_substitution] = STATE(313), + [aux_sym_declaration_command_repeat1] = STATE(728), + [sym__simple_heredoc_body] = ACTIONS(1559), + [sym__heredoc_body_beginning] = ACTIONS(1559), + [sym_file_descriptor] = ACTIONS(1559), + [sym_variable_name] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [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_LT] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(1564), + [anon_sym_GT_GT] = ACTIONS(1559), + [anon_sym_AMP_GT] = ACTIONS(1564), + [anon_sym_AMP_GT_GT] = ACTIONS(1559), + [anon_sym_LT_AMP] = ACTIONS(1559), + [anon_sym_GT_AMP] = ACTIONS(1559), + [anon_sym_LT_LT] = ACTIONS(1564), + [anon_sym_LT_LT_DASH] = ACTIONS(1559), + [anon_sym_LT_LT_LT] = ACTIONS(1559), + [sym__special_characters] = ACTIONS(2550), + [anon_sym_DQUOTE] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1572), + [sym_raw_string] = ACTIONS(2553), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1578), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1581), + [anon_sym_BQUOTE] = ACTIONS(1584), + [anon_sym_LT_LPAREN] = ACTIONS(1587), + [anon_sym_GT_LPAREN] = ACTIONS(1587), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2556), + [sym_word] = ACTIONS(2559), + [anon_sym_LF] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1564), }, [729] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(2552), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(1210), + [sym__simple_heredoc_body] = ACTIONS(779), + [sym__heredoc_body_beginning] = ACTIONS(779), + [sym_file_descriptor] = ACTIONS(779), + [sym__concat] = ACTIONS(709), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [anon_sym_PIPE_AMP] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_AMP_GT] = ACTIONS(781), + [anon_sym_AMP_GT_GT] = ACTIONS(779), + [anon_sym_LT_AMP] = ACTIONS(779), + [anon_sym_GT_AMP] = ACTIONS(779), + [anon_sym_LT_LT] = ACTIONS(781), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_LT] = ACTIONS(779), + [sym__special_characters] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(781), + [sym_raw_string] = ACTIONS(779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(779), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), + [sym_word] = ACTIONS(781), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(781), }, [730] = { - [sym_concatenation] = STATE(1219), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1219), - [anon_sym_RBRACE] = ACTIONS(2554), - [anon_sym_EQ] = ACTIONS(2556), - [anon_sym_DASH] = ACTIONS(2556), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2558), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(2560), - [anon_sym_COLON] = ACTIONS(2556), - [anon_sym_COLON_QMARK] = ACTIONS(2556), - [anon_sym_COLON_DASH] = ACTIONS(2556), - [anon_sym_PERCENT] = ACTIONS(2556), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(730), + [sym_string] = STATE(317), + [sym_simple_expansion] = STATE(317), + [sym_string_expansion] = STATE(317), + [sym_expansion] = STATE(317), + [sym_command_substitution] = STATE(317), + [sym_process_substitution] = STATE(317), + [aux_sym_unset_command_repeat1] = STATE(730), + [sym__simple_heredoc_body] = ACTIONS(1644), + [sym__heredoc_body_beginning] = ACTIONS(1644), + [sym_file_descriptor] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1646), + [anon_sym_PIPE] = ACTIONS(1646), + [anon_sym_RPAREN] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1646), + [anon_sym_GT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1644), + [anon_sym_AMP_GT] = ACTIONS(1646), + [anon_sym_AMP_GT_GT] = ACTIONS(1644), + [anon_sym_LT_AMP] = ACTIONS(1644), + [anon_sym_GT_AMP] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_LT_LT_DASH] = ACTIONS(1644), + [anon_sym_LT_LT_LT] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(2562), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_DOLLAR] = ACTIONS(1654), + [sym_raw_string] = ACTIONS(2565), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1660), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1663), + [anon_sym_BQUOTE] = ACTIONS(1666), + [anon_sym_LT_LPAREN] = ACTIONS(1669), + [anon_sym_GT_LPAREN] = ACTIONS(1669), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2568), + [sym_word] = ACTIONS(2571), + [anon_sym_LF] = ACTIONS(1644), + [anon_sym_AMP] = ACTIONS(1646), }, [731] = { - [sym_concatenation] = STATE(1221), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1221), - [anon_sym_RBRACE] = ACTIONS(2546), - [anon_sym_EQ] = ACTIONS(2562), - [anon_sym_DASH] = ACTIONS(2562), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2564), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(2566), - [anon_sym_COLON] = ACTIONS(2562), - [anon_sym_COLON_QMARK] = ACTIONS(2562), - [anon_sym_COLON_DASH] = ACTIONS(2562), - [anon_sym_PERCENT] = ACTIONS(2562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(731), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_EQ_TILDE] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), }, [732] = { - [sym__concat] = ACTIONS(1871), - [anon_sym_in] = ACTIONS(1871), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_SEMI_SEMI] = ACTIONS(1871), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), + [sym_concatenation] = STATE(975), + [sym_string] = STATE(1212), + [sym_simple_expansion] = STATE(1212), + [sym_string_expansion] = STATE(1212), + [sym_expansion] = STATE(1212), + [sym_command_substitution] = STATE(1212), + [sym_process_substitution] = STATE(1212), + [sym__special_characters] = ACTIONS(2574), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(2576), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2576), }, [733] = { - [sym_concatenation] = STATE(1224), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1224), - [sym_regex] = ACTIONS(2568), - [anon_sym_RBRACE] = ACTIONS(2570), - [anon_sym_EQ] = ACTIONS(2572), - [anon_sym_DASH] = ACTIONS(2572), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(2572), - [anon_sym_COLON_QMARK] = ACTIONS(2572), - [anon_sym_COLON_DASH] = ACTIONS(2572), - [anon_sym_PERCENT] = ACTIONS(2572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(2578), + [sym__heredoc_body_beginning] = ACTIONS(2578), + [sym_file_descriptor] = ACTIONS(2578), + [ts_builtin_sym_end] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2580), + [anon_sym_esac] = ACTIONS(2578), + [anon_sym_PIPE] = ACTIONS(2580), + [anon_sym_RPAREN] = ACTIONS(2578), + [anon_sym_SEMI_SEMI] = ACTIONS(2578), + [anon_sym_PIPE_AMP] = ACTIONS(2578), + [anon_sym_AMP_AMP] = ACTIONS(2578), + [anon_sym_PIPE_PIPE] = ACTIONS(2578), + [anon_sym_LT] = ACTIONS(2580), + [anon_sym_GT] = ACTIONS(2580), + [anon_sym_GT_GT] = ACTIONS(2578), + [anon_sym_AMP_GT] = ACTIONS(2580), + [anon_sym_AMP_GT_GT] = ACTIONS(2578), + [anon_sym_LT_AMP] = ACTIONS(2578), + [anon_sym_GT_AMP] = ACTIONS(2578), + [anon_sym_LT_LT] = ACTIONS(2580), + [anon_sym_LT_LT_DASH] = ACTIONS(2578), + [anon_sym_LT_LT_LT] = ACTIONS(2578), + [anon_sym_BQUOTE] = ACTIONS(2578), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2578), + [anon_sym_AMP] = ACTIONS(2580), }, [734] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(2570), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(1964), + [sym__heredoc_body_beginning] = ACTIONS(1964), + [sym_file_descriptor] = ACTIONS(1964), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_RPAREN] = ACTIONS(1964), + [anon_sym_SEMI_SEMI] = ACTIONS(1964), + [anon_sym_PIPE_AMP] = ACTIONS(1964), + [anon_sym_AMP_AMP] = ACTIONS(1964), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_LT] = ACTIONS(1966), + [anon_sym_GT] = ACTIONS(1966), + [anon_sym_GT_GT] = ACTIONS(1964), + [anon_sym_AMP_GT] = ACTIONS(1966), + [anon_sym_AMP_GT_GT] = ACTIONS(1964), + [anon_sym_LT_AMP] = ACTIONS(1964), + [anon_sym_GT_AMP] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(1966), + [anon_sym_LT_LT_DASH] = ACTIONS(1964), + [anon_sym_LT_LT_LT] = ACTIONS(1964), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1964), + [anon_sym_AMP] = ACTIONS(1966), }, [735] = { - [sym__concat] = ACTIONS(1919), - [anon_sym_in] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_SEMI_SEMI] = ACTIONS(1919), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(1964), + [sym__heredoc_body_beginning] = ACTIONS(1964), + [sym_file_descriptor] = ACTIONS(1964), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_RPAREN] = ACTIONS(1964), + [anon_sym_SEMI_SEMI] = ACTIONS(1964), + [anon_sym_PIPE_AMP] = ACTIONS(1964), + [anon_sym_AMP_AMP] = ACTIONS(1964), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_LT] = ACTIONS(1966), + [anon_sym_GT] = ACTIONS(1966), + [anon_sym_GT_GT] = ACTIONS(1964), + [anon_sym_AMP_GT] = ACTIONS(1966), + [anon_sym_AMP_GT_GT] = ACTIONS(1964), + [anon_sym_LT_AMP] = ACTIONS(1964), + [anon_sym_GT_AMP] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(1966), + [anon_sym_LT_LT_DASH] = ACTIONS(1964), + [anon_sym_LT_LT_LT] = ACTIONS(1964), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1964), + [anon_sym_AMP] = ACTIONS(1966), }, [736] = { - [sym_concatenation] = STATE(1221), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1221), - [sym_regex] = ACTIONS(2576), - [anon_sym_RBRACE] = ACTIONS(2546), - [anon_sym_EQ] = ACTIONS(2562), - [anon_sym_DASH] = ACTIONS(2562), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2564), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(2562), - [anon_sym_COLON_QMARK] = ACTIONS(2562), - [anon_sym_COLON_DASH] = ACTIONS(2562), - [anon_sym_PERCENT] = ACTIONS(2562), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(1968), + [sym__heredoc_body_beginning] = ACTIONS(1968), + [sym_file_descriptor] = ACTIONS(1968), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1968), + [anon_sym_SEMI_SEMI] = ACTIONS(1968), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(1970), + [anon_sym_GT_GT] = ACTIONS(1968), + [anon_sym_AMP_GT] = ACTIONS(1970), + [anon_sym_AMP_GT_GT] = ACTIONS(1968), + [anon_sym_LT_AMP] = ACTIONS(1968), + [anon_sym_GT_AMP] = ACTIONS(1968), + [anon_sym_LT_LT] = ACTIONS(1970), + [anon_sym_LT_LT_DASH] = ACTIONS(1968), + [anon_sym_LT_LT_LT] = ACTIONS(1968), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1970), }, [737] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(2546), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(1968), + [sym__heredoc_body_beginning] = ACTIONS(1968), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(1968), + [anon_sym_SEMI_SEMI] = ACTIONS(1968), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(1970), + [anon_sym_LT_LT_DASH] = ACTIONS(1968), + [anon_sym_LT_LT_LT] = ACTIONS(1968), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1970), }, [738] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(2578), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [aux_sym_concatenation_repeat1] = STATE(1213), + [sym__simple_heredoc_body] = ACTIONS(745), + [sym__heredoc_body_beginning] = ACTIONS(745), + [sym_file_descriptor] = ACTIONS(745), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(749), + [anon_sym_RPAREN] = ACTIONS(745), + [anon_sym_SEMI_SEMI] = ACTIONS(745), + [anon_sym_PIPE_AMP] = ACTIONS(745), + [anon_sym_AMP_AMP] = ACTIONS(745), + [anon_sym_PIPE_PIPE] = ACTIONS(745), + [anon_sym_LT] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(749), + [anon_sym_GT_GT] = ACTIONS(745), + [anon_sym_AMP_GT] = ACTIONS(749), + [anon_sym_AMP_GT_GT] = ACTIONS(745), + [anon_sym_LT_AMP] = ACTIONS(745), + [anon_sym_GT_AMP] = ACTIONS(745), + [anon_sym_LT_LT] = ACTIONS(749), + [anon_sym_LT_LT_DASH] = ACTIONS(745), + [anon_sym_LT_LT_LT] = ACTIONS(745), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(745), + [anon_sym_AMP] = ACTIONS(749), }, [739] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_in] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1927), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1927), - [anon_sym_AMP] = ACTIONS(1927), + [aux_sym_concatenation_repeat1] = STATE(1213), + [sym__simple_heredoc_body] = ACTIONS(763), + [sym__heredoc_body_beginning] = ACTIONS(763), + [sym_file_descriptor] = ACTIONS(763), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_RPAREN] = ACTIONS(763), + [anon_sym_SEMI_SEMI] = ACTIONS(763), + [anon_sym_PIPE_AMP] = ACTIONS(763), + [anon_sym_AMP_AMP] = ACTIONS(763), + [anon_sym_PIPE_PIPE] = ACTIONS(763), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(763), + [anon_sym_AMP_GT] = ACTIONS(765), + [anon_sym_AMP_GT_GT] = ACTIONS(763), + [anon_sym_LT_AMP] = ACTIONS(763), + [anon_sym_GT_AMP] = ACTIONS(763), + [anon_sym_LT_LT] = ACTIONS(765), + [anon_sym_LT_LT_DASH] = ACTIONS(763), + [anon_sym_LT_LT_LT] = ACTIONS(763), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(763), + [anon_sym_AMP] = ACTIONS(765), }, [740] = { - [anon_sym_SEMI] = ACTIONS(2580), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2578), - [anon_sym_SEMI_SEMI] = ACTIONS(2582), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2582), - [anon_sym_AMP] = ACTIONS(2580), + [aux_sym_concatenation_repeat1] = STATE(1213), + [sym__simple_heredoc_body] = ACTIONS(1976), + [sym__heredoc_body_beginning] = ACTIONS(1976), + [sym_file_descriptor] = ACTIONS(1976), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_PIPE] = ACTIONS(1978), + [anon_sym_RPAREN] = ACTIONS(1976), + [anon_sym_SEMI_SEMI] = ACTIONS(1976), + [anon_sym_PIPE_AMP] = ACTIONS(1976), + [anon_sym_AMP_AMP] = ACTIONS(1976), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_LT] = ACTIONS(1978), + [anon_sym_GT] = ACTIONS(1978), + [anon_sym_GT_GT] = ACTIONS(1976), + [anon_sym_AMP_GT] = ACTIONS(1978), + [anon_sym_AMP_GT_GT] = ACTIONS(1976), + [anon_sym_LT_AMP] = ACTIONS(1976), + [anon_sym_GT_AMP] = ACTIONS(1976), + [anon_sym_LT_LT] = ACTIONS(1978), + [anon_sym_LT_LT_DASH] = ACTIONS(1976), + [anon_sym_LT_LT_LT] = ACTIONS(1976), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1978), }, [741] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2580), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2578), - [anon_sym_SEMI_SEMI] = ACTIONS(2582), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2582), - [anon_sym_AMP] = ACTIONS(2580), + [aux_sym_concatenation_repeat1] = STATE(1213), + [sym__simple_heredoc_body] = ACTIONS(1980), + [sym__heredoc_body_beginning] = ACTIONS(1980), + [sym_file_descriptor] = ACTIONS(1980), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_RPAREN] = ACTIONS(1980), + [anon_sym_SEMI_SEMI] = ACTIONS(1980), + [anon_sym_PIPE_AMP] = ACTIONS(1980), + [anon_sym_AMP_AMP] = ACTIONS(1980), + [anon_sym_PIPE_PIPE] = ACTIONS(1980), + [anon_sym_LT] = ACTIONS(1982), + [anon_sym_GT] = ACTIONS(1982), + [anon_sym_GT_GT] = ACTIONS(1980), + [anon_sym_AMP_GT] = ACTIONS(1982), + [anon_sym_AMP_GT_GT] = ACTIONS(1980), + [anon_sym_LT_AMP] = ACTIONS(1980), + [anon_sym_GT_AMP] = ACTIONS(1980), + [anon_sym_LT_LT] = ACTIONS(1982), + [anon_sym_LT_LT_DASH] = ACTIONS(1980), + [anon_sym_LT_LT_LT] = ACTIONS(1980), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1980), + [anon_sym_AMP] = ACTIONS(1982), }, [742] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(2578), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(2582), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [743] = { - [anon_sym_SEMI] = ACTIONS(2584), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(2586), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(2578), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2586), - [anon_sym_AMP] = ACTIONS(2584), + [sym_file_redirect] = STATE(743), + [sym_heredoc_redirect] = STATE(743), + [sym_herestring_redirect] = STATE(743), + [aux_sym_redirected_statement_repeat1] = STATE(743), + [sym__simple_heredoc_body] = ACTIONS(1990), + [sym__heredoc_body_beginning] = ACTIONS(1990), + [sym_file_descriptor] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_RPAREN] = ACTIONS(1990), + [anon_sym_SEMI_SEMI] = ACTIONS(1990), + [anon_sym_PIPE_AMP] = ACTIONS(1990), + [anon_sym_AMP_AMP] = ACTIONS(1990), + [anon_sym_PIPE_PIPE] = ACTIONS(1990), + [anon_sym_LT] = ACTIONS(2587), + [anon_sym_GT] = ACTIONS(2587), + [anon_sym_GT_GT] = ACTIONS(2590), + [anon_sym_AMP_GT] = ACTIONS(2587), + [anon_sym_AMP_GT_GT] = ACTIONS(2590), + [anon_sym_LT_AMP] = ACTIONS(2590), + [anon_sym_GT_AMP] = ACTIONS(2590), + [anon_sym_LT_LT] = ACTIONS(2003), + [anon_sym_LT_LT_DASH] = ACTIONS(2006), + [anon_sym_LT_LT_LT] = ACTIONS(2593), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1995), }, [744] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2584), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(2586), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(2578), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2586), - [anon_sym_AMP] = ACTIONS(2584), + [aux_sym_concatenation_repeat1] = STATE(319), + [sym__simple_heredoc_body] = ACTIONS(2016), + [sym__heredoc_body_beginning] = ACTIONS(2016), + [sym_file_descriptor] = ACTIONS(2016), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_PIPE] = ACTIONS(2018), + [anon_sym_RPAREN] = ACTIONS(2016), + [anon_sym_SEMI_SEMI] = ACTIONS(2016), + [anon_sym_PIPE_AMP] = ACTIONS(2016), + [anon_sym_AMP_AMP] = ACTIONS(2016), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [anon_sym_EQ_TILDE] = ACTIONS(2018), + [anon_sym_EQ_EQ] = ACTIONS(2018), + [anon_sym_LT] = ACTIONS(2018), + [anon_sym_GT] = ACTIONS(2018), + [anon_sym_GT_GT] = ACTIONS(2016), + [anon_sym_AMP_GT] = ACTIONS(2018), + [anon_sym_AMP_GT_GT] = ACTIONS(2016), + [anon_sym_LT_AMP] = ACTIONS(2016), + [anon_sym_GT_AMP] = ACTIONS(2016), + [anon_sym_LT_LT] = ACTIONS(2018), + [anon_sym_LT_LT_DASH] = ACTIONS(2016), + [anon_sym_LT_LT_LT] = ACTIONS(2016), + [sym__special_characters] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2018), + [sym_raw_string] = ACTIONS(2016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2016), + [anon_sym_BQUOTE] = ACTIONS(2016), + [anon_sym_LT_LPAREN] = ACTIONS(2016), + [anon_sym_GT_LPAREN] = ACTIONS(2016), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2018), + [anon_sym_LF] = ACTIONS(2016), + [anon_sym_AMP] = ACTIONS(2018), }, [745] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(2588), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [aux_sym_concatenation_repeat1] = STATE(319), + [sym__simple_heredoc_body] = ACTIONS(2012), + [sym__heredoc_body_beginning] = ACTIONS(2012), + [sym_file_descriptor] = ACTIONS(2012), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_PIPE] = ACTIONS(2014), + [anon_sym_RPAREN] = ACTIONS(2012), + [anon_sym_SEMI_SEMI] = ACTIONS(2012), + [anon_sym_PIPE_AMP] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2012), + [anon_sym_PIPE_PIPE] = ACTIONS(2012), + [anon_sym_EQ_TILDE] = ACTIONS(2014), + [anon_sym_EQ_EQ] = ACTIONS(2014), + [anon_sym_LT] = ACTIONS(2014), + [anon_sym_GT] = ACTIONS(2014), + [anon_sym_GT_GT] = ACTIONS(2012), + [anon_sym_AMP_GT] = ACTIONS(2014), + [anon_sym_AMP_GT_GT] = ACTIONS(2012), + [anon_sym_LT_AMP] = ACTIONS(2012), + [anon_sym_GT_AMP] = ACTIONS(2012), + [anon_sym_LT_LT] = ACTIONS(2014), + [anon_sym_LT_LT_DASH] = ACTIONS(2012), + [anon_sym_LT_LT_LT] = ACTIONS(2012), + [sym__special_characters] = ACTIONS(2012), + [anon_sym_DQUOTE] = ACTIONS(2012), + [anon_sym_DOLLAR] = ACTIONS(2014), + [sym_raw_string] = ACTIONS(2012), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2012), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2012), + [anon_sym_BQUOTE] = ACTIONS(2012), + [anon_sym_LT_LPAREN] = ACTIONS(2012), + [anon_sym_GT_LPAREN] = ACTIONS(2012), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2014), + [anon_sym_LF] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2014), }, [746] = { - [sym__concat] = ACTIONS(1959), - [anon_sym_in] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1959), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), + [sym_concatenation] = STATE(746), + [sym_string] = STATE(331), + [sym_simple_expansion] = STATE(331), + [sym_string_expansion] = STATE(331), + [sym_expansion] = STATE(331), + [sym_command_substitution] = STATE(331), + [sym_process_substitution] = STATE(331), + [aux_sym_command_repeat2] = STATE(746), + [sym__simple_heredoc_body] = ACTIONS(2012), + [sym__heredoc_body_beginning] = ACTIONS(2012), + [sym_file_descriptor] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_PIPE] = ACTIONS(2014), + [anon_sym_RPAREN] = ACTIONS(2012), + [anon_sym_SEMI_SEMI] = ACTIONS(2012), + [anon_sym_PIPE_AMP] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2012), + [anon_sym_PIPE_PIPE] = ACTIONS(2012), + [anon_sym_EQ_TILDE] = ACTIONS(2596), + [anon_sym_EQ_EQ] = ACTIONS(2596), + [anon_sym_LT] = ACTIONS(2014), + [anon_sym_GT] = ACTIONS(2014), + [anon_sym_GT_GT] = ACTIONS(2012), + [anon_sym_AMP_GT] = ACTIONS(2014), + [anon_sym_AMP_GT_GT] = ACTIONS(2012), + [anon_sym_LT_AMP] = ACTIONS(2012), + [anon_sym_GT_AMP] = ACTIONS(2012), + [anon_sym_LT_LT] = ACTIONS(2014), + [anon_sym_LT_LT_DASH] = ACTIONS(2012), + [anon_sym_LT_LT_LT] = ACTIONS(2012), + [sym__special_characters] = ACTIONS(2599), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2029), + [sym_raw_string] = ACTIONS(2602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2035), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2038), + [anon_sym_BQUOTE] = ACTIONS(2041), + [anon_sym_LT_LPAREN] = ACTIONS(2044), + [anon_sym_GT_LPAREN] = ACTIONS(2044), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2605), + [anon_sym_LF] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2014), }, [747] = { - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2588), - [anon_sym_SEMI_SEMI] = ACTIONS(2592), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2592), - [anon_sym_AMP] = ACTIONS(2590), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(2582), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [748] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2588), - [anon_sym_SEMI_SEMI] = ACTIONS(2592), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2592), - [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_SEMI] = ACTIONS(2608), + [anon_sym_RPAREN] = ACTIONS(2582), + [anon_sym_SEMI_SEMI] = ACTIONS(2610), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2610), + [anon_sym_AMP] = ACTIONS(2610), }, [749] = { - [sym_compound_statement] = STATE(1231), - [anon_sym_LBRACE] = ACTIONS(595), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(746), + [sym_string] = STATE(331), + [sym_simple_expansion] = STATE(331), + [sym_string_expansion] = STATE(331), + [sym_expansion] = STATE(331), + [sym_command_substitution] = STATE(331), + [sym_process_substitution] = STATE(331), + [aux_sym_command_repeat2] = STATE(746), + [sym__simple_heredoc_body] = ACTIONS(2058), + [sym__heredoc_body_beginning] = ACTIONS(2058), + [sym_file_descriptor] = ACTIONS(2058), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_RPAREN] = ACTIONS(2058), + [anon_sym_SEMI_SEMI] = ACTIONS(2058), + [anon_sym_PIPE_AMP] = ACTIONS(2058), + [anon_sym_AMP_AMP] = ACTIONS(2058), + [anon_sym_PIPE_PIPE] = ACTIONS(2058), + [anon_sym_EQ_TILDE] = ACTIONS(603), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(2060), + [anon_sym_GT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2058), + [anon_sym_AMP_GT] = ACTIONS(2060), + [anon_sym_AMP_GT_GT] = ACTIONS(2058), + [anon_sym_LT_AMP] = ACTIONS(2058), + [anon_sym_GT_AMP] = ACTIONS(2058), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_LT_LT_DASH] = ACTIONS(2058), + [anon_sym_LT_LT_LT] = ACTIONS(2058), + [sym__special_characters] = ACTIONS(605), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(607), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2060), }, [750] = { - [sym_file_descriptor] = ACTIONS(2594), - [ts_builtin_sym_end] = ACTIONS(2594), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym_esac] = ACTIONS(2594), - [anon_sym_PIPE] = ACTIONS(2596), - [anon_sym_RPAREN] = ACTIONS(2594), - [anon_sym_SEMI_SEMI] = ACTIONS(2594), - [anon_sym_PIPE_AMP] = ACTIONS(2594), - [anon_sym_AMP_AMP] = ACTIONS(2594), - [anon_sym_PIPE_PIPE] = ACTIONS(2594), - [anon_sym_LT] = ACTIONS(2596), - [anon_sym_GT] = ACTIONS(2596), - [anon_sym_GT_GT] = ACTIONS(2594), - [anon_sym_AMP_GT] = ACTIONS(2596), - [anon_sym_AMP_GT_GT] = ACTIONS(2594), - [anon_sym_LT_AMP] = ACTIONS(2594), - [anon_sym_GT_AMP] = ACTIONS(2594), - [anon_sym_BQUOTE] = ACTIONS(2594), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2596), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_RBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [751] = { - [anon_sym_SEMI] = ACTIONS(2598), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_SEMI_SEMI] = ACTIONS(2600), - [anon_sym_PIPE_AMP] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(535), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2600), - [anon_sym_AMP] = ACTIONS(2598), + [sym_file_descriptor] = ACTIONS(1085), + [sym_variable_name] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_AMP_GT] = ACTIONS(1087), + [anon_sym_AMP_GT_GT] = ACTIONS(1085), + [anon_sym_LT_AMP] = ACTIONS(1085), + [anon_sym_GT_AMP] = ACTIONS(1085), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1087), + [sym_raw_string] = ACTIONS(1085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_LT_LPAREN] = ACTIONS(1085), + [anon_sym_GT_LPAREN] = ACTIONS(1085), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1085), }, [752] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2598), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_SEMI_SEMI] = ACTIONS(2600), - [anon_sym_PIPE_AMP] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2600), - [anon_sym_AMP] = ACTIONS(2598), + [sym_concatenation] = STATE(1217), + [sym_string] = STATE(537), + [sym_simple_expansion] = STATE(537), + [sym_string_expansion] = STATE(537), + [sym_expansion] = STATE(537), + [sym_command_substitution] = STATE(537), + [sym_process_substitution] = STATE(537), + [aux_sym_for_statement_repeat1] = STATE(1217), + [anon_sym_RPAREN] = ACTIONS(2612), + [sym__special_characters] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1095), + [sym_raw_string] = ACTIONS(1097), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1099), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1103), + [anon_sym_LT_LPAREN] = ACTIONS(1105), + [anon_sym_GT_LPAREN] = ACTIONS(1105), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1097), }, [753] = { - [sym__terminated_statement] = STATE(1234), - [sym_for_statement] = STATE(751), - [sym_c_style_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_if_statement] = STATE(751), - [sym_case_statement] = STATE(751), - [sym_function_definition] = STATE(751), - [sym_subshell] = STATE(751), - [sym_pipeline] = STATE(751), - [sym_list] = STATE(751), - [sym_negated_command] = STATE(751), - [sym_test_command] = STATE(751), - [sym_declaration_command] = STATE(751), - [sym_unset_command] = STATE(751), - [sym_command] = STATE(751), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(752), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(1234), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2602), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [aux_sym_concatenation_repeat1] = STATE(417), + [sym_file_descriptor] = ACTIONS(1107), + [sym__concat] = ACTIONS(747), + [sym_variable_name] = ACTIONS(1107), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1107), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1107), + [anon_sym_LT_AMP] = ACTIONS(1107), + [anon_sym_GT_AMP] = ACTIONS(1107), + [sym__special_characters] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(1107), + [anon_sym_DOLLAR] = ACTIONS(1111), + [sym_raw_string] = ACTIONS(1107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1107), + [anon_sym_BQUOTE] = ACTIONS(1107), + [anon_sym_LT_LPAREN] = ACTIONS(1107), + [anon_sym_GT_LPAREN] = ACTIONS(1107), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1107), }, [754] = { - [anon_sym_LT] = ACTIONS(2604), - [anon_sym_GT] = ACTIONS(2604), - [anon_sym_GT_GT] = ACTIONS(2606), - [anon_sym_AMP_GT] = ACTIONS(2604), - [anon_sym_AMP_GT_GT] = ACTIONS(2606), - [anon_sym_LT_AMP] = ACTIONS(2606), - [anon_sym_GT_AMP] = ACTIONS(2606), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(417), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(747), + [sym_variable_name] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_AMP_GT] = ACTIONS(1087), + [anon_sym_AMP_GT_GT] = ACTIONS(1085), + [anon_sym_LT_AMP] = ACTIONS(1085), + [anon_sym_GT_AMP] = ACTIONS(1085), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1087), + [sym_raw_string] = ACTIONS(1085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_LT_LPAREN] = ACTIONS(1085), + [anon_sym_GT_LPAREN] = ACTIONS(1085), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1085), }, [755] = { - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(1237), - [sym_simple_expansion] = STATE(1237), - [sym_string_expansion] = STATE(1237), - [sym_expansion] = STATE(1237), - [sym_command_substitution] = STATE(1237), - [sym_process_substitution] = STATE(1237), - [sym__special_characters] = ACTIONS(2608), - [anon_sym_DQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [sym_raw_string] = ACTIONS(2610), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [anon_sym_LT_LPAREN] = ACTIONS(241), - [anon_sym_GT_LPAREN] = ACTIONS(241), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2610), + [anon_sym_AMP_AMP] = ACTIONS(2306), + [anon_sym_PIPE_PIPE] = ACTIONS(2306), + [anon_sym_RBRACK] = ACTIONS(2306), + [anon_sym_EQ_TILDE] = ACTIONS(2306), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_EQ] = ACTIONS(2308), + [anon_sym_PLUS_EQ] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2308), + [anon_sym_GT] = ACTIONS(2308), + [anon_sym_BANG_EQ] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2308), + [anon_sym_DASH_EQ] = ACTIONS(2306), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2306), + [anon_sym_PLUS_PLUS] = ACTIONS(2306), + [anon_sym_DASH_DASH] = ACTIONS(2306), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2306), }, [756] = { - [ts_builtin_sym_end] = ACTIONS(2612), - [anon_sym_SEMI] = ACTIONS(2614), - [anon_sym_esac] = ACTIONS(2612), - [anon_sym_PIPE] = ACTIONS(2614), - [anon_sym_RPAREN] = ACTIONS(2612), - [anon_sym_SEMI_SEMI] = ACTIONS(2612), - [anon_sym_PIPE_AMP] = ACTIONS(2612), - [anon_sym_AMP_AMP] = ACTIONS(2612), - [anon_sym_PIPE_PIPE] = ACTIONS(2612), - [anon_sym_BQUOTE] = ACTIONS(2612), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2612), - [anon_sym_AMP] = ACTIONS(2614), + [sym__concat] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_RBRACK] = ACTIONS(1726), + [anon_sym_EQ_TILDE] = ACTIONS(1726), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ] = ACTIONS(1728), + [anon_sym_PLUS_EQ] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_DASH_EQ] = ACTIONS(1726), + [anon_sym_LT_EQ] = ACTIONS(1726), + [anon_sym_GT_EQ] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1726), }, [757] = { - [aux_sym_concatenation_repeat1] = STATE(1239), - [sym_file_descriptor] = ACTIONS(1128), - [sym__concat] = ACTIONS(1130), - [sym_variable_name] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1132), - [anon_sym_RPAREN] = ACTIONS(1128), - [anon_sym_SEMI_SEMI] = ACTIONS(1128), - [anon_sym_PIPE_AMP] = ACTIONS(1128), - [anon_sym_AMP_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1132), - [anon_sym_GT] = ACTIONS(1132), - [anon_sym_GT_GT] = ACTIONS(1128), - [anon_sym_AMP_GT] = ACTIONS(1132), - [anon_sym_AMP_GT_GT] = ACTIONS(1128), - [anon_sym_LT_AMP] = ACTIONS(1128), - [anon_sym_GT_AMP] = ACTIONS(1128), - [sym__special_characters] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [anon_sym_DOLLAR] = ACTIONS(1132), - [sym_raw_string] = ACTIONS(1128), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1128), - [anon_sym_LT_LPAREN] = ACTIONS(1128), - [anon_sym_GT_LPAREN] = ACTIONS(1128), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1132), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1132), + [aux_sym_concatenation_repeat1] = STATE(757), + [sym__concat] = ACTIONS(2614), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_RBRACK] = ACTIONS(1726), + [anon_sym_EQ_TILDE] = ACTIONS(1726), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ] = ACTIONS(1728), + [anon_sym_PLUS_EQ] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_DASH_EQ] = ACTIONS(1726), + [anon_sym_LT_EQ] = ACTIONS(1726), + [anon_sym_GT_EQ] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1726), }, [758] = { - [aux_sym_concatenation_repeat1] = STATE(1239), - [sym_file_descriptor] = ACTIONS(1106), - [sym__concat] = ACTIONS(1130), - [sym_variable_name] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_RPAREN] = ACTIONS(1106), - [anon_sym_SEMI_SEMI] = ACTIONS(1106), - [anon_sym_PIPE_AMP] = ACTIONS(1106), - [anon_sym_AMP_AMP] = ACTIONS(1106), - [anon_sym_PIPE_PIPE] = ACTIONS(1106), - [anon_sym_LT] = ACTIONS(1108), - [anon_sym_GT] = ACTIONS(1108), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_AMP_GT] = ACTIONS(1108), - [anon_sym_AMP_GT_GT] = ACTIONS(1106), - [anon_sym_LT_AMP] = ACTIONS(1106), - [anon_sym_GT_AMP] = ACTIONS(1106), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [sym_raw_string] = ACTIONS(1106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), - [anon_sym_BQUOTE] = ACTIONS(1106), - [anon_sym_LT_LPAREN] = ACTIONS(1106), - [anon_sym_GT_LPAREN] = ACTIONS(1106), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1108), - [anon_sym_LF] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), + [sym__concat] = ACTIONS(1733), + [anon_sym_AMP_AMP] = ACTIONS(1733), + [anon_sym_PIPE_PIPE] = ACTIONS(1733), + [anon_sym_RBRACK] = ACTIONS(1733), + [anon_sym_EQ_TILDE] = ACTIONS(1733), + [anon_sym_EQ_EQ] = ACTIONS(1733), + [anon_sym_EQ] = ACTIONS(1735), + [anon_sym_PLUS_EQ] = ACTIONS(1733), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_BANG_EQ] = ACTIONS(1733), + [anon_sym_PLUS] = ACTIONS(1735), + [anon_sym_DASH] = ACTIONS(1735), + [anon_sym_DASH_EQ] = ACTIONS(1733), + [anon_sym_LT_EQ] = ACTIONS(1733), + [anon_sym_GT_EQ] = ACTIONS(1733), + [anon_sym_PLUS_PLUS] = ACTIONS(1733), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1733), }, [759] = { - [sym_file_redirect] = STATE(1243), - [sym_heredoc_redirect] = STATE(1243), - [sym_herestring_redirect] = STATE(1243), - [aux_sym_while_statement_repeat1] = STATE(1243), - [sym_file_descriptor] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1300), - [anon_sym_SEMI_SEMI] = ACTIONS(1300), - [anon_sym_PIPE_AMP] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(2618), - [anon_sym_GT] = ACTIONS(2618), - [anon_sym_GT_GT] = ACTIONS(2620), - [anon_sym_AMP_GT] = ACTIONS(2618), - [anon_sym_AMP_GT_GT] = ACTIONS(2620), - [anon_sym_LT_AMP] = ACTIONS(2620), - [anon_sym_GT_AMP] = ACTIONS(2620), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_LT_LT_DASH] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(2622), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(2617), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [760] = { - [sym_file_redirect] = STATE(1244), - [sym_heredoc_redirect] = STATE(1244), - [sym_heredoc_body] = STATE(699), - [sym_herestring_redirect] = STATE(1244), - [aux_sym_while_statement_repeat1] = STATE(1244), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(633), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1340), - [anon_sym_RPAREN] = ACTIONS(1338), - [anon_sym_SEMI_SEMI] = ACTIONS(1338), - [anon_sym_PIPE_AMP] = ACTIONS(1338), - [anon_sym_AMP_AMP] = ACTIONS(1338), - [anon_sym_PIPE_PIPE] = ACTIONS(1338), - [anon_sym_LT] = ACTIONS(637), - [anon_sym_GT] = ACTIONS(637), - [anon_sym_GT_GT] = ACTIONS(639), - [anon_sym_AMP_GT] = ACTIONS(637), - [anon_sym_AMP_GT_GT] = ACTIONS(639), - [anon_sym_LT_AMP] = ACTIONS(639), - [anon_sym_GT_AMP] = ACTIONS(639), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(641), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1340), + [sym_concatenation] = STATE(1222), + [sym_string] = STATE(1221), + [sym_simple_expansion] = STATE(1221), + [sym_string_expansion] = STATE(1221), + [sym_expansion] = STATE(1221), + [sym_command_substitution] = STATE(1221), + [sym_process_substitution] = STATE(1221), + [anon_sym_RBRACE] = ACTIONS(2619), + [sym__special_characters] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(2623), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2623), }, [761] = { - [anon_sym_RPAREN] = ACTIONS(2624), - [sym_comment] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(2625), + [sym_comment] = ACTIONS(57), }, [762] = { - [sym_file_redirect] = STATE(756), - [sym_file_descriptor] = ACTIONS(2626), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1430), - [anon_sym_SEMI_SEMI] = ACTIONS(1430), - [anon_sym_PIPE_AMP] = ACTIONS(1430), - [anon_sym_AMP_AMP] = ACTIONS(1430), - [anon_sym_PIPE_PIPE] = ACTIONS(1430), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_GT] = ACTIONS(2628), - [anon_sym_GT_GT] = ACTIONS(2630), - [anon_sym_AMP_GT] = ACTIONS(2628), - [anon_sym_AMP_GT_GT] = ACTIONS(2630), - [anon_sym_LT_AMP] = ACTIONS(2630), - [anon_sym_GT_AMP] = ACTIONS(2630), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1432), + [sym_concatenation] = STATE(1226), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1226), + [anon_sym_RBRACE] = ACTIONS(2627), + [anon_sym_EQ] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2629), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(2633), + [anon_sym_COLON] = ACTIONS(2629), + [anon_sym_COLON_QMARK] = ACTIONS(2629), + [anon_sym_COLON_DASH] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [763] = { - [sym_concatenation] = STATE(818), + [sym_concatenation] = STATE(1228), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1228), + [anon_sym_RBRACE] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2635), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2637), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_COLON] = ACTIONS(2635), + [anon_sym_COLON_QMARK] = ACTIONS(2635), + [anon_sym_COLON_DASH] = ACTIONS(2635), + [anon_sym_PERCENT] = ACTIONS(2635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [764] = { + [sym__concat] = ACTIONS(1834), + [anon_sym_AMP_AMP] = ACTIONS(1834), + [anon_sym_PIPE_PIPE] = ACTIONS(1834), + [anon_sym_RBRACK] = ACTIONS(1834), + [anon_sym_EQ_TILDE] = ACTIONS(1834), + [anon_sym_EQ_EQ] = ACTIONS(1834), + [anon_sym_EQ] = ACTIONS(1836), + [anon_sym_PLUS_EQ] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1836), + [anon_sym_GT] = ACTIONS(1836), + [anon_sym_BANG_EQ] = ACTIONS(1834), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_DASH_EQ] = ACTIONS(1834), + [anon_sym_LT_EQ] = ACTIONS(1834), + [anon_sym_GT_EQ] = ACTIONS(1834), + [anon_sym_PLUS_PLUS] = ACTIONS(1834), + [anon_sym_DASH_DASH] = ACTIONS(1834), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1834), + }, + [765] = { + [sym_concatenation] = STATE(1231), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1231), + [sym_regex] = ACTIONS(2641), + [anon_sym_RBRACE] = ACTIONS(2643), + [anon_sym_EQ] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2645), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2647), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(2645), + [anon_sym_COLON_QMARK] = ACTIONS(2645), + [anon_sym_COLON_DASH] = ACTIONS(2645), + [anon_sym_PERCENT] = ACTIONS(2645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [766] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(2643), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [767] = { + [sym__concat] = ACTIONS(1882), + [anon_sym_AMP_AMP] = ACTIONS(1882), + [anon_sym_PIPE_PIPE] = ACTIONS(1882), + [anon_sym_RBRACK] = ACTIONS(1882), + [anon_sym_EQ_TILDE] = ACTIONS(1882), + [anon_sym_EQ_EQ] = ACTIONS(1882), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_PLUS_EQ] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_BANG_EQ] = ACTIONS(1882), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_DASH_EQ] = ACTIONS(1882), + [anon_sym_LT_EQ] = ACTIONS(1882), + [anon_sym_GT_EQ] = ACTIONS(1882), + [anon_sym_PLUS_PLUS] = ACTIONS(1882), + [anon_sym_DASH_DASH] = ACTIONS(1882), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1882), + }, + [768] = { + [sym_concatenation] = STATE(1228), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1228), + [sym_regex] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2635), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2637), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(2635), + [anon_sym_COLON_QMARK] = ACTIONS(2635), + [anon_sym_COLON_DASH] = ACTIONS(2635), + [anon_sym_PERCENT] = ACTIONS(2635), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [769] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [770] = { + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(2651), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), + }, + [771] = { + [sym__concat] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_RBRACK] = ACTIONS(1890), + [anon_sym_EQ_TILDE] = ACTIONS(1890), + [anon_sym_EQ_EQ] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_PLUS_EQ] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_BANG_EQ] = ACTIONS(1890), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_DASH_EQ] = ACTIONS(1890), + [anon_sym_LT_EQ] = ACTIONS(1890), + [anon_sym_GT_EQ] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1890), + }, + [772] = { + [anon_sym_SEMI] = ACTIONS(2653), + [anon_sym_RPAREN] = ACTIONS(2651), + [anon_sym_SEMI_SEMI] = ACTIONS(2655), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2655), + [anon_sym_AMP] = ACTIONS(2655), + }, + [773] = { + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1236), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2651), + [anon_sym_SEMI_SEMI] = ACTIONS(2659), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2657), + }, + [774] = { + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1236), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2651), + [anon_sym_SEMI_SEMI] = ACTIONS(2659), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2657), + }, + [775] = { + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(2651), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), + }, + [776] = { + [anon_sym_SEMI] = ACTIONS(2661), + [anon_sym_SEMI_SEMI] = ACTIONS(2663), + [anon_sym_BQUOTE] = ACTIONS(2651), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2663), + }, + [777] = { + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1239), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(2667), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(2651), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2665), + }, + [778] = { + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1239), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(2667), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(2651), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2665), + }, + [779] = { + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(2669), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), + }, + [780] = { + [sym__concat] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [anon_sym_RBRACK] = ACTIONS(1924), + [anon_sym_EQ_TILDE] = ACTIONS(1924), + [anon_sym_EQ_EQ] = ACTIONS(1924), + [anon_sym_EQ] = ACTIONS(1926), + [anon_sym_PLUS_EQ] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_BANG_EQ] = ACTIONS(1924), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_DASH_EQ] = ACTIONS(1924), + [anon_sym_LT_EQ] = ACTIONS(1924), + [anon_sym_GT_EQ] = ACTIONS(1924), + [anon_sym_PLUS_PLUS] = ACTIONS(1924), + [anon_sym_DASH_DASH] = ACTIONS(1924), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1924), + }, + [781] = { + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym_RPAREN] = ACTIONS(2669), + [anon_sym_SEMI_SEMI] = ACTIONS(2673), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2673), + [anon_sym_AMP] = ACTIONS(2673), + }, + [782] = { + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1243), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(2675), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2669), + [anon_sym_SEMI_SEMI] = ACTIONS(2677), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2675), + }, + [783] = { + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1243), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2675), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2669), + [anon_sym_SEMI_SEMI] = ACTIONS(2677), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2675), + }, + [784] = { + [anon_sym_AMP_AMP] = ACTIONS(2377), + [anon_sym_PIPE_PIPE] = ACTIONS(2377), + [anon_sym_RBRACK] = ACTIONS(2377), + [anon_sym_EQ_TILDE] = ACTIONS(2377), + [anon_sym_EQ_EQ] = ACTIONS(2377), + [anon_sym_EQ] = ACTIONS(2379), + [anon_sym_PLUS_EQ] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2379), + [anon_sym_GT] = ACTIONS(2379), + [anon_sym_BANG_EQ] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_DASH_EQ] = ACTIONS(2377), + [anon_sym_LT_EQ] = ACTIONS(2377), + [anon_sym_GT_EQ] = ACTIONS(2377), + [anon_sym_PLUS_PLUS] = ACTIONS(2377), + [anon_sym_DASH_DASH] = ACTIONS(2377), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2377), + }, + [785] = { + [anon_sym_AMP_AMP] = ACTIONS(2377), + [anon_sym_PIPE_PIPE] = ACTIONS(2377), + [anon_sym_RBRACK] = ACTIONS(2377), + [anon_sym_EQ_TILDE] = ACTIONS(2377), + [anon_sym_EQ_EQ] = ACTIONS(2377), + [anon_sym_EQ] = ACTIONS(2379), + [anon_sym_PLUS_EQ] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2379), + [anon_sym_GT] = ACTIONS(2379), + [anon_sym_BANG_EQ] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_DASH_EQ] = ACTIONS(2377), + [anon_sym_LT_EQ] = ACTIONS(2377), + [anon_sym_GT_EQ] = ACTIONS(2377), + [anon_sym_PLUS_PLUS] = ACTIONS(2377), + [anon_sym_DASH_DASH] = ACTIONS(2377), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2377), + }, + [786] = { + [aux_sym_concatenation_repeat1] = STATE(786), + [sym__concat] = ACTIONS(2312), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1726), + [anon_sym_EQ_TILDE] = ACTIONS(1726), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ] = ACTIONS(1728), + [anon_sym_PLUS_EQ] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_DASH_EQ] = ACTIONS(1726), + [anon_sym_LT_EQ] = ACTIONS(1726), + [anon_sym_GT_EQ] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1726), + }, + [787] = { + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym_variable_name] = ACTIONS(1085), + [ts_builtin_sym_end] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1087), + [anon_sym_RPAREN] = ACTIONS(1085), + [anon_sym_SEMI_SEMI] = ACTIONS(1085), + [anon_sym_PIPE_AMP] = ACTIONS(1085), + [anon_sym_AMP_AMP] = ACTIONS(1085), + [anon_sym_PIPE_PIPE] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_AMP_GT] = ACTIONS(1087), + [anon_sym_AMP_GT_GT] = ACTIONS(1085), + [anon_sym_LT_AMP] = ACTIONS(1085), + [anon_sym_GT_AMP] = ACTIONS(1085), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_LT_LT_DASH] = ACTIONS(1085), + [anon_sym_LT_LT_LT] = ACTIONS(1085), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1087), + [sym_raw_string] = ACTIONS(1085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_LT_LPAREN] = ACTIONS(1085), + [anon_sym_GT_LPAREN] = ACTIONS(1085), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1087), + [sym_word] = ACTIONS(1087), + [anon_sym_LF] = ACTIONS(1085), + [anon_sym_AMP] = ACTIONS(1087), + }, + [788] = { + [sym_concatenation] = STATE(1245), + [sym_string] = STATE(537), + [sym_simple_expansion] = STATE(537), + [sym_string_expansion] = STATE(537), + [sym_expansion] = STATE(537), + [sym_command_substitution] = STATE(537), + [sym_process_substitution] = STATE(537), + [aux_sym_for_statement_repeat1] = STATE(1245), + [anon_sym_RPAREN] = ACTIONS(2679), + [sym__special_characters] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1095), + [sym_raw_string] = ACTIONS(1097), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1099), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1103), + [anon_sym_LT_LPAREN] = ACTIONS(1105), + [anon_sym_GT_LPAREN] = ACTIONS(1105), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1097), + }, + [789] = { + [aux_sym_concatenation_repeat1] = STATE(373), + [sym__simple_heredoc_body] = ACTIONS(1107), + [sym__heredoc_body_beginning] = ACTIONS(1107), + [sym_file_descriptor] = ACTIONS(1107), + [sym__concat] = ACTIONS(671), + [sym_variable_name] = ACTIONS(1107), + [ts_builtin_sym_end] = ACTIONS(1107), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_SEMI_SEMI] = ACTIONS(1107), + [anon_sym_PIPE_AMP] = ACTIONS(1107), + [anon_sym_AMP_AMP] = ACTIONS(1107), + [anon_sym_PIPE_PIPE] = ACTIONS(1107), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1107), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1107), + [anon_sym_LT_AMP] = ACTIONS(1107), + [anon_sym_GT_AMP] = ACTIONS(1107), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_LT_LT_DASH] = ACTIONS(1107), + [anon_sym_LT_LT_LT] = ACTIONS(1107), + [sym__special_characters] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(1107), + [anon_sym_DOLLAR] = ACTIONS(1111), + [sym_raw_string] = ACTIONS(1107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1107), + [anon_sym_BQUOTE] = ACTIONS(1107), + [anon_sym_LT_LPAREN] = ACTIONS(1107), + [anon_sym_GT_LPAREN] = ACTIONS(1107), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1111), + [sym_word] = ACTIONS(1111), + [anon_sym_LF] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1111), + }, + [790] = { + [aux_sym_concatenation_repeat1] = STATE(373), + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(671), + [sym_variable_name] = ACTIONS(1085), + [ts_builtin_sym_end] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1087), + [anon_sym_SEMI_SEMI] = ACTIONS(1085), + [anon_sym_PIPE_AMP] = ACTIONS(1085), + [anon_sym_AMP_AMP] = ACTIONS(1085), + [anon_sym_PIPE_PIPE] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_AMP_GT] = ACTIONS(1087), + [anon_sym_AMP_GT_GT] = ACTIONS(1085), + [anon_sym_LT_AMP] = ACTIONS(1085), + [anon_sym_GT_AMP] = ACTIONS(1085), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_LT_LT_DASH] = ACTIONS(1085), + [anon_sym_LT_LT_LT] = ACTIONS(1085), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1087), + [sym_raw_string] = ACTIONS(1085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_LT_LPAREN] = ACTIONS(1085), + [anon_sym_GT_LPAREN] = ACTIONS(1085), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1087), + [sym_word] = ACTIONS(1087), + [anon_sym_LF] = ACTIONS(1085), + [anon_sym_AMP] = ACTIONS(1087), + }, + [791] = { + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(1726), + [sym_variable_name] = ACTIONS(1726), + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1728), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), + }, + [792] = { + [aux_sym_concatenation_repeat1] = STATE(792), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(2681), + [sym_variable_name] = ACTIONS(1726), + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1728), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), + }, + [793] = { + [sym__simple_heredoc_body] = ACTIONS(1733), + [sym__heredoc_body_beginning] = ACTIONS(1733), + [sym_file_descriptor] = ACTIONS(1733), + [sym__concat] = ACTIONS(1733), + [sym_variable_name] = ACTIONS(1733), + [ts_builtin_sym_end] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_RPAREN] = ACTIONS(1733), + [anon_sym_SEMI_SEMI] = ACTIONS(1733), + [anon_sym_PIPE_AMP] = ACTIONS(1733), + [anon_sym_AMP_AMP] = ACTIONS(1733), + [anon_sym_PIPE_PIPE] = ACTIONS(1733), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1733), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_AMP_GT_GT] = ACTIONS(1733), + [anon_sym_LT_AMP] = ACTIONS(1733), + [anon_sym_GT_AMP] = ACTIONS(1733), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_LT_LT_DASH] = ACTIONS(1733), + [anon_sym_LT_LT_LT] = ACTIONS(1733), + [sym__special_characters] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1733), + [anon_sym_BQUOTE] = ACTIONS(1733), + [anon_sym_LT_LPAREN] = ACTIONS(1733), + [anon_sym_GT_LPAREN] = ACTIONS(1733), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1735), + [sym_word] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1733), + [anon_sym_AMP] = ACTIONS(1735), + }, + [794] = { + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(2684), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + }, + [795] = { + [sym_concatenation] = STATE(1250), [sym_string] = STATE(1249), - [sym_array] = STATE(818), [sym_simple_expansion] = STATE(1249), [sym_string_expansion] = STATE(1249), [sym_expansion] = STATE(1249), [sym_command_substitution] = STATE(1249), [sym_process_substitution] = STATE(1249), - [sym__empty_value] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1542), - [sym__special_characters] = ACTIONS(2632), - [anon_sym_DQUOTE] = ACTIONS(205), - [anon_sym_DOLLAR] = ACTIONS(207), - [sym_raw_string] = ACTIONS(2634), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), - [anon_sym_BQUOTE] = ACTIONS(215), - [anon_sym_LT_LPAREN] = ACTIONS(217), - [anon_sym_GT_LPAREN] = ACTIONS(217), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2634), - }, - [764] = { - [aux_sym_concatenation_repeat1] = STATE(1250), - [sym__concat] = ACTIONS(697), - [sym_variable_name] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [sym__special_characters] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_LT_LPAREN] = ACTIONS(807), - [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(809), - [sym_word] = ACTIONS(809), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), - }, - [765] = { - [sym_variable_assignment] = STATE(765), - [sym_subscript] = STATE(336), - [sym_concatenation] = STATE(765), - [sym_string] = STATE(335), - [sym_simple_expansion] = STATE(335), - [sym_string_expansion] = STATE(335), - [sym_expansion] = STATE(335), - [sym_command_substitution] = STATE(335), - [sym_process_substitution] = STATE(335), - [aux_sym_declaration_command_repeat1] = STATE(765), - [sym_variable_name] = ACTIONS(2636), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym_PIPE] = ACTIONS(1601), - [anon_sym_RPAREN] = ACTIONS(1599), - [anon_sym_SEMI_SEMI] = ACTIONS(1599), - [anon_sym_PIPE_AMP] = ACTIONS(1599), - [anon_sym_AMP_AMP] = ACTIONS(1599), - [anon_sym_PIPE_PIPE] = ACTIONS(1599), - [sym__special_characters] = ACTIONS(2639), - [anon_sym_DQUOTE] = ACTIONS(1606), - [anon_sym_DOLLAR] = ACTIONS(1609), - [sym_raw_string] = ACTIONS(2642), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1615), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1618), - [anon_sym_BQUOTE] = ACTIONS(1621), - [anon_sym_LT_LPAREN] = ACTIONS(1624), - [anon_sym_GT_LPAREN] = ACTIONS(1624), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2645), - [sym_word] = ACTIONS(2648), - [anon_sym_LF] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1601), - }, - [766] = { - [aux_sym_concatenation_repeat1] = STATE(1251), - [sym__concat] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [sym__special_characters] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_LT_LPAREN] = ACTIONS(807), - [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(809), - [sym_word] = ACTIONS(809), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), - }, - [767] = { - [sym_concatenation] = STATE(767), - [sym_string] = STATE(339), - [sym_simple_expansion] = STATE(339), - [sym_string_expansion] = STATE(339), - [sym_expansion] = STATE(339), - [sym_command_substitution] = STATE(339), - [sym_process_substitution] = STATE(339), - [aux_sym_unset_command_repeat1] = STATE(767), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_RPAREN] = ACTIONS(1681), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [sym__special_characters] = ACTIONS(2651), - [anon_sym_DQUOTE] = ACTIONS(1688), - [anon_sym_DOLLAR] = ACTIONS(1691), - [sym_raw_string] = ACTIONS(2654), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1697), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1700), - [anon_sym_BQUOTE] = ACTIONS(1703), - [anon_sym_LT_LPAREN] = ACTIONS(1706), - [anon_sym_GT_LPAREN] = ACTIONS(1706), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2657), - [sym_word] = ACTIONS(2660), - [anon_sym_LF] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - }, - [768] = { - [aux_sym_concatenation_repeat1] = STATE(768), - [sym__simple_heredoc_body] = ACTIONS(1763), - [sym__heredoc_body_beginning] = ACTIONS(1763), - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_LT_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT_LT] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - }, - [769] = { - [sym_compound_statement] = STATE(1252), - [anon_sym_LBRACE] = ACTIONS(595), - [sym_comment] = ACTIONS(55), - }, - [770] = { - [ts_builtin_sym_end] = ACTIONS(2663), - [anon_sym_SEMI] = ACTIONS(2665), - [anon_sym_esac] = ACTIONS(2663), - [anon_sym_PIPE] = ACTIONS(2665), - [anon_sym_RPAREN] = ACTIONS(2663), - [anon_sym_SEMI_SEMI] = ACTIONS(2663), - [anon_sym_PIPE_AMP] = ACTIONS(2663), - [anon_sym_AMP_AMP] = ACTIONS(2663), - [anon_sym_PIPE_PIPE] = ACTIONS(2663), - [anon_sym_BQUOTE] = ACTIONS(2663), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2663), - [anon_sym_AMP] = ACTIONS(2665), - }, - [771] = { - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1971), - [anon_sym_SEMI_SEMI] = ACTIONS(1971), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1971), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1973), - }, - [772] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(1971), - [anon_sym_SEMI_SEMI] = ACTIONS(1971), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1973), - }, - [773] = { - [sym_concatenation] = STATE(994), - [sym_string] = STATE(1254), - [sym_simple_expansion] = STATE(1254), - [sym_string_expansion] = STATE(1254), - [sym_expansion] = STATE(1254), - [sym_command_substitution] = STATE(1254), - [sym_process_substitution] = STATE(1254), - [sym__special_characters] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(2669), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2669), - }, - [774] = { - [aux_sym_concatenation_repeat1] = STATE(341), - [sym__simple_heredoc_body] = ACTIONS(2007), - [sym__heredoc_body_beginning] = ACTIONS(2007), - [sym_file_descriptor] = ACTIONS(2007), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_PIPE] = ACTIONS(2009), - [anon_sym_RPAREN] = ACTIONS(2007), - [anon_sym_SEMI_SEMI] = ACTIONS(2007), - [anon_sym_PIPE_AMP] = ACTIONS(2007), - [anon_sym_AMP_AMP] = ACTIONS(2007), - [anon_sym_PIPE_PIPE] = ACTIONS(2007), - [anon_sym_EQ_TILDE] = ACTIONS(2009), - [anon_sym_EQ_EQ] = ACTIONS(2009), - [anon_sym_LT] = ACTIONS(2009), - [anon_sym_GT] = ACTIONS(2009), - [anon_sym_GT_GT] = ACTIONS(2007), - [anon_sym_AMP_GT] = ACTIONS(2009), - [anon_sym_AMP_GT_GT] = ACTIONS(2007), - [anon_sym_LT_AMP] = ACTIONS(2007), - [anon_sym_GT_AMP] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2009), - [anon_sym_LT_LT_DASH] = ACTIONS(2007), - [anon_sym_LT_LT_LT] = ACTIONS(2007), - [sym__special_characters] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), - [sym_raw_string] = ACTIONS(2007), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2007), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2007), - [anon_sym_BQUOTE] = ACTIONS(2007), - [anon_sym_LT_LPAREN] = ACTIONS(2007), - [anon_sym_GT_LPAREN] = ACTIONS(2007), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2009), - [anon_sym_LF] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2009), - }, - [775] = { - [aux_sym_concatenation_repeat1] = STATE(341), - [sym__simple_heredoc_body] = ACTIONS(2003), - [sym__heredoc_body_beginning] = ACTIONS(2003), - [sym_file_descriptor] = ACTIONS(2003), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_PIPE] = ACTIONS(2005), - [anon_sym_RPAREN] = ACTIONS(2003), - [anon_sym_SEMI_SEMI] = ACTIONS(2003), - [anon_sym_PIPE_AMP] = ACTIONS(2003), - [anon_sym_AMP_AMP] = ACTIONS(2003), - [anon_sym_PIPE_PIPE] = ACTIONS(2003), - [anon_sym_EQ_TILDE] = ACTIONS(2005), - [anon_sym_EQ_EQ] = ACTIONS(2005), - [anon_sym_LT] = ACTIONS(2005), - [anon_sym_GT] = ACTIONS(2005), - [anon_sym_GT_GT] = ACTIONS(2003), - [anon_sym_AMP_GT] = ACTIONS(2005), - [anon_sym_AMP_GT_GT] = ACTIONS(2003), - [anon_sym_LT_AMP] = ACTIONS(2003), - [anon_sym_GT_AMP] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2005), - [anon_sym_LT_LT_DASH] = ACTIONS(2003), - [anon_sym_LT_LT_LT] = ACTIONS(2003), - [sym__special_characters] = ACTIONS(2003), - [anon_sym_DQUOTE] = ACTIONS(2003), - [anon_sym_DOLLAR] = ACTIONS(2005), - [sym_raw_string] = ACTIONS(2003), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2003), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2003), - [anon_sym_BQUOTE] = ACTIONS(2003), - [anon_sym_LT_LPAREN] = ACTIONS(2003), - [anon_sym_GT_LPAREN] = ACTIONS(2003), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2005), - [anon_sym_LF] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(2005), - }, - [776] = { - [aux_sym_concatenation_repeat1] = STATE(1255), - [sym__simple_heredoc_body] = ACTIONS(773), - [sym__heredoc_body_beginning] = ACTIONS(773), - [sym_file_descriptor] = ACTIONS(773), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(773), - [anon_sym_AMP_GT] = ACTIONS(777), - [anon_sym_AMP_GT_GT] = ACTIONS(773), - [anon_sym_LT_AMP] = ACTIONS(773), - [anon_sym_GT_AMP] = ACTIONS(773), - [anon_sym_LT_LT] = ACTIONS(777), - [anon_sym_LT_LT_DASH] = ACTIONS(773), - [anon_sym_LT_LT_LT] = ACTIONS(773), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(777), - }, - [777] = { - [aux_sym_concatenation_repeat1] = STATE(1255), - [sym__simple_heredoc_body] = ACTIONS(791), - [sym__heredoc_body_beginning] = ACTIONS(791), - [sym_file_descriptor] = ACTIONS(791), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_SEMI_SEMI] = ACTIONS(791), - [anon_sym_PIPE_AMP] = ACTIONS(791), - [anon_sym_AMP_AMP] = ACTIONS(791), - [anon_sym_PIPE_PIPE] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_GT_GT] = ACTIONS(791), - [anon_sym_AMP_GT] = ACTIONS(793), - [anon_sym_AMP_GT_GT] = ACTIONS(791), - [anon_sym_LT_AMP] = ACTIONS(791), - [anon_sym_GT_AMP] = ACTIONS(791), - [anon_sym_LT_LT] = ACTIONS(793), - [anon_sym_LT_LT_DASH] = ACTIONS(791), - [anon_sym_LT_LT_LT] = ACTIONS(791), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_AMP] = ACTIONS(793), - }, - [778] = { - [aux_sym_concatenation_repeat1] = STATE(1255), - [sym__simple_heredoc_body] = ACTIONS(2015), - [sym__heredoc_body_beginning] = ACTIONS(2015), - [sym_file_descriptor] = ACTIONS(2015), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(2017), - [anon_sym_PIPE] = ACTIONS(2017), - [anon_sym_RPAREN] = ACTIONS(2015), - [anon_sym_SEMI_SEMI] = ACTIONS(2015), - [anon_sym_PIPE_AMP] = ACTIONS(2015), - [anon_sym_AMP_AMP] = ACTIONS(2015), - [anon_sym_PIPE_PIPE] = ACTIONS(2015), - [anon_sym_LT] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2017), - [anon_sym_GT_GT] = ACTIONS(2015), - [anon_sym_AMP_GT] = ACTIONS(2017), - [anon_sym_AMP_GT_GT] = ACTIONS(2015), - [anon_sym_LT_AMP] = ACTIONS(2015), - [anon_sym_GT_AMP] = ACTIONS(2015), - [anon_sym_LT_LT] = ACTIONS(2017), - [anon_sym_LT_LT_DASH] = ACTIONS(2015), - [anon_sym_LT_LT_LT] = ACTIONS(2015), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2017), - }, - [779] = { - [aux_sym_concatenation_repeat1] = STATE(1255), - [sym__simple_heredoc_body] = ACTIONS(2019), - [sym__heredoc_body_beginning] = ACTIONS(2019), - [sym_file_descriptor] = ACTIONS(2019), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2019), - [anon_sym_SEMI_SEMI] = ACTIONS(2019), - [anon_sym_PIPE_AMP] = ACTIONS(2019), - [anon_sym_AMP_AMP] = ACTIONS(2019), - [anon_sym_PIPE_PIPE] = ACTIONS(2019), - [anon_sym_LT] = ACTIONS(2021), - [anon_sym_GT] = ACTIONS(2021), - [anon_sym_GT_GT] = ACTIONS(2019), - [anon_sym_AMP_GT] = ACTIONS(2021), - [anon_sym_AMP_GT_GT] = ACTIONS(2019), - [anon_sym_LT_AMP] = ACTIONS(2019), - [anon_sym_GT_AMP] = ACTIONS(2019), - [anon_sym_LT_LT] = ACTIONS(2021), - [anon_sym_LT_LT_DASH] = ACTIONS(2019), - [anon_sym_LT_LT_LT] = ACTIONS(2019), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2019), - [anon_sym_AMP] = ACTIONS(2021), - }, - [780] = { - [sym_file_redirect] = STATE(780), - [sym_heredoc_redirect] = STATE(780), - [sym_herestring_redirect] = STATE(780), - [aux_sym_while_statement_repeat1] = STATE(780), - [sym__simple_heredoc_body] = ACTIONS(2027), - [sym__heredoc_body_beginning] = ACTIONS(2027), - [sym_file_descriptor] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_RPAREN] = ACTIONS(2027), - [anon_sym_SEMI_SEMI] = ACTIONS(2027), - [anon_sym_PIPE_AMP] = ACTIONS(2027), - [anon_sym_AMP_AMP] = ACTIONS(2027), - [anon_sym_PIPE_PIPE] = ACTIONS(2027), - [anon_sym_LT] = ACTIONS(2674), - [anon_sym_GT] = ACTIONS(2674), - [anon_sym_GT_GT] = ACTIONS(2677), - [anon_sym_AMP_GT] = ACTIONS(2674), - [anon_sym_AMP_GT_GT] = ACTIONS(2677), - [anon_sym_LT_AMP] = ACTIONS(2677), - [anon_sym_GT_AMP] = ACTIONS(2677), - [anon_sym_LT_LT] = ACTIONS(2040), - [anon_sym_LT_LT_DASH] = ACTIONS(2043), - [anon_sym_LT_LT_LT] = ACTIONS(2680), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(2032), - }, - [781] = { - [sym_file_redirect] = STATE(780), - [sym_heredoc_redirect] = STATE(780), - [sym_heredoc_body] = STATE(996), - [sym_herestring_redirect] = STATE(780), - [aux_sym_while_statement_repeat1] = STATE(780), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(633), - [anon_sym_SEMI] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_RPAREN] = ACTIONS(2023), - [anon_sym_SEMI_SEMI] = ACTIONS(2023), - [anon_sym_PIPE_AMP] = ACTIONS(2023), - [anon_sym_AMP_AMP] = ACTIONS(2023), - [anon_sym_PIPE_PIPE] = ACTIONS(2023), - [anon_sym_LT] = ACTIONS(637), - [anon_sym_GT] = ACTIONS(637), - [anon_sym_GT_GT] = ACTIONS(639), - [anon_sym_AMP_GT] = ACTIONS(637), - [anon_sym_AMP_GT_GT] = ACTIONS(639), - [anon_sym_LT_AMP] = ACTIONS(639), - [anon_sym_GT_AMP] = ACTIONS(639), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(641), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2025), - }, - [782] = { - [sym_concatenation] = STATE(782), - [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), - [aux_sym_command_repeat2] = STATE(782), - [sym__simple_heredoc_body] = ACTIONS(2003), - [sym__heredoc_body_beginning] = ACTIONS(2003), - [sym_file_descriptor] = ACTIONS(2003), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_PIPE] = ACTIONS(2005), - [anon_sym_RPAREN] = ACTIONS(2003), - [anon_sym_SEMI_SEMI] = ACTIONS(2003), - [anon_sym_PIPE_AMP] = ACTIONS(2003), - [anon_sym_AMP_AMP] = ACTIONS(2003), - [anon_sym_PIPE_PIPE] = ACTIONS(2003), - [anon_sym_EQ_TILDE] = ACTIONS(2683), - [anon_sym_EQ_EQ] = ACTIONS(2683), - [anon_sym_LT] = ACTIONS(2005), - [anon_sym_GT] = ACTIONS(2005), - [anon_sym_GT_GT] = ACTIONS(2003), - [anon_sym_AMP_GT] = ACTIONS(2005), - [anon_sym_AMP_GT_GT] = ACTIONS(2003), - [anon_sym_LT_AMP] = ACTIONS(2003), - [anon_sym_GT_AMP] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2005), - [anon_sym_LT_LT_DASH] = ACTIONS(2003), - [anon_sym_LT_LT_LT] = ACTIONS(2003), - [sym__special_characters] = ACTIONS(2686), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_DOLLAR] = ACTIONS(2058), - [sym_raw_string] = ACTIONS(2689), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2067), - [anon_sym_BQUOTE] = ACTIONS(2070), - [anon_sym_LT_LPAREN] = ACTIONS(2073), - [anon_sym_GT_LPAREN] = ACTIONS(2073), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2692), - [anon_sym_LF] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(2005), - }, - [783] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(2695), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), - }, - [784] = { - [sym_file_redirect] = STATE(1257), - [sym_heredoc_redirect] = STATE(1257), - [sym_heredoc_body] = STATE(996), - [sym_herestring_redirect] = STATE(1257), - [sym_concatenation] = STATE(782), - [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), - [aux_sym_while_statement_repeat1] = STATE(1257), - [aux_sym_command_repeat2] = STATE(782), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(633), - [anon_sym_SEMI] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_RPAREN] = ACTIONS(2023), - [anon_sym_SEMI_SEMI] = ACTIONS(2023), - [anon_sym_PIPE_AMP] = ACTIONS(2023), - [anon_sym_AMP_AMP] = ACTIONS(2023), - [anon_sym_PIPE_PIPE] = ACTIONS(2023), - [anon_sym_EQ_TILDE] = ACTIONS(635), - [anon_sym_EQ_EQ] = ACTIONS(635), - [anon_sym_LT] = ACTIONS(637), - [anon_sym_GT] = ACTIONS(637), - [anon_sym_GT_GT] = ACTIONS(639), - [anon_sym_AMP_GT] = ACTIONS(637), - [anon_sym_AMP_GT_GT] = ACTIONS(639), - [anon_sym_LT_AMP] = ACTIONS(639), - [anon_sym_GT_AMP] = ACTIONS(639), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(641), - [sym__special_characters] = ACTIONS(643), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(647), - [anon_sym_LF] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2025), - }, - [785] = { - [sym_file_descriptor] = ACTIONS(1106), - [sym_variable_name] = ACTIONS(1106), - [anon_sym_LT] = ACTIONS(1108), - [anon_sym_GT] = ACTIONS(1108), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_AMP_GT] = ACTIONS(1108), - [anon_sym_AMP_GT_GT] = ACTIONS(1106), - [anon_sym_LT_AMP] = ACTIONS(1106), - [anon_sym_GT_AMP] = ACTIONS(1106), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [sym_raw_string] = ACTIONS(1106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), - [anon_sym_BQUOTE] = ACTIONS(1106), - [anon_sym_LT_LPAREN] = ACTIONS(1106), - [anon_sym_GT_LPAREN] = ACTIONS(1106), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1106), - }, - [786] = { - [sym_concatenation] = STATE(1259), - [sym_string] = STATE(558), - [sym_simple_expansion] = STATE(558), - [sym_string_expansion] = STATE(558), - [sym_expansion] = STATE(558), - [sym_command_substitution] = STATE(558), - [sym_process_substitution] = STATE(558), - [aux_sym_for_statement_repeat1] = STATE(1259), - [anon_sym_RPAREN] = ACTIONS(2697), - [sym__special_characters] = ACTIONS(1112), - [anon_sym_DQUOTE] = ACTIONS(1114), - [anon_sym_DOLLAR] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), - [anon_sym_BQUOTE] = ACTIONS(1124), - [anon_sym_LT_LPAREN] = ACTIONS(1126), - [anon_sym_GT_LPAREN] = ACTIONS(1126), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1118), - }, - [787] = { - [aux_sym_concatenation_repeat1] = STATE(435), - [sym_file_descriptor] = ACTIONS(1128), - [sym__concat] = ACTIONS(775), - [sym_variable_name] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1132), - [anon_sym_GT] = ACTIONS(1132), - [anon_sym_GT_GT] = ACTIONS(1128), - [anon_sym_AMP_GT] = ACTIONS(1132), - [anon_sym_AMP_GT_GT] = ACTIONS(1128), - [anon_sym_LT_AMP] = ACTIONS(1128), - [anon_sym_GT_AMP] = ACTIONS(1128), - [sym__special_characters] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [anon_sym_DOLLAR] = ACTIONS(1132), - [sym_raw_string] = ACTIONS(1128), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1128), - [anon_sym_LT_LPAREN] = ACTIONS(1128), - [anon_sym_GT_LPAREN] = ACTIONS(1128), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1128), - }, - [788] = { - [aux_sym_concatenation_repeat1] = STATE(435), - [sym_file_descriptor] = ACTIONS(1106), - [sym__concat] = ACTIONS(775), - [sym_variable_name] = ACTIONS(1106), - [anon_sym_LT] = ACTIONS(1108), - [anon_sym_GT] = ACTIONS(1108), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_AMP_GT] = ACTIONS(1108), - [anon_sym_AMP_GT_GT] = ACTIONS(1106), - [anon_sym_LT_AMP] = ACTIONS(1106), - [anon_sym_GT_AMP] = ACTIONS(1106), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [sym_raw_string] = ACTIONS(1106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), - [anon_sym_BQUOTE] = ACTIONS(1106), - [anon_sym_LT_LPAREN] = ACTIONS(1106), - [anon_sym_GT_LPAREN] = ACTIONS(1106), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1106), - }, - [789] = { - [anon_sym_AMP_AMP] = ACTIONS(2331), - [anon_sym_PIPE_PIPE] = ACTIONS(2331), - [anon_sym_RBRACK] = ACTIONS(2331), - [anon_sym_EQ_TILDE] = ACTIONS(2331), - [anon_sym_EQ_EQ] = ACTIONS(2331), - [anon_sym_EQ] = ACTIONS(2333), - [anon_sym_PLUS_EQ] = ACTIONS(2331), - [anon_sym_LT] = ACTIONS(2333), - [anon_sym_GT] = ACTIONS(2333), - [anon_sym_BANG_EQ] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_DASH_EQ] = ACTIONS(2331), - [anon_sym_LT_EQ] = ACTIONS(2331), - [anon_sym_GT_EQ] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2331), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(2331), - }, - [790] = { - [sym__concat] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_RBRACK] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym_PLUS_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_DASH_EQ] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1763), - }, - [791] = { - [aux_sym_concatenation_repeat1] = STATE(791), - [sym__concat] = ACTIONS(2699), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_RBRACK] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym_PLUS_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_DASH_EQ] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1763), - }, - [792] = { - [sym__concat] = ACTIONS(1770), - [anon_sym_AMP_AMP] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1770), - [anon_sym_RBRACK] = ACTIONS(1770), - [anon_sym_EQ_TILDE] = ACTIONS(1770), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1770), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1770), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_DASH_DASH] = ACTIONS(1770), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1770), - }, - [793] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(2702), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), - }, - [794] = { - [sym_concatenation] = STATE(1264), - [sym_string] = STATE(1263), - [sym_simple_expansion] = STATE(1263), - [sym_string_expansion] = STATE(1263), - [sym_expansion] = STATE(1263), - [sym_command_substitution] = STATE(1263), - [sym_process_substitution] = STATE(1263), - [anon_sym_RBRACE] = ACTIONS(2704), - [sym__special_characters] = ACTIONS(2706), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(2708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2708), - }, - [795] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(2710), - [sym_comment] = ACTIONS(55), + [anon_sym_RBRACE] = ACTIONS(2686), + [sym__special_characters] = ACTIONS(2688), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(2690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2690), }, [796] = { - [sym_concatenation] = STATE(1268), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1268), - [anon_sym_RBRACE] = ACTIONS(2712), - [anon_sym_EQ] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2714), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2716), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(2718), - [anon_sym_COLON] = ACTIONS(2714), - [anon_sym_COLON_QMARK] = ACTIONS(2714), - [anon_sym_COLON_DASH] = ACTIONS(2714), - [anon_sym_PERCENT] = ACTIONS(2714), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(2692), + [sym_comment] = ACTIONS(57), }, [797] = { - [sym_concatenation] = STATE(1270), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1270), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_EQ] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2722), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(2724), - [anon_sym_COLON] = ACTIONS(2720), - [anon_sym_COLON_QMARK] = ACTIONS(2720), - [anon_sym_COLON_DASH] = ACTIONS(2720), - [anon_sym_PERCENT] = ACTIONS(2720), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1254), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1254), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_EQ] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2698), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(2700), + [anon_sym_COLON] = ACTIONS(2696), + [anon_sym_COLON_QMARK] = ACTIONS(2696), + [anon_sym_COLON_DASH] = ACTIONS(2696), + [anon_sym_PERCENT] = ACTIONS(2696), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [798] = { - [sym__concat] = ACTIONS(1871), - [anon_sym_AMP_AMP] = ACTIONS(1871), - [anon_sym_PIPE_PIPE] = ACTIONS(1871), - [anon_sym_RBRACK] = ACTIONS(1871), - [anon_sym_EQ_TILDE] = ACTIONS(1871), - [anon_sym_EQ_EQ] = ACTIONS(1871), - [anon_sym_EQ] = ACTIONS(1873), - [anon_sym_PLUS_EQ] = ACTIONS(1871), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_GT] = ACTIONS(1873), - [anon_sym_BANG_EQ] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1873), - [anon_sym_DASH_EQ] = ACTIONS(1871), - [anon_sym_LT_EQ] = ACTIONS(1871), - [anon_sym_GT_EQ] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1871), + [sym_concatenation] = STATE(1256), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1256), + [anon_sym_RBRACE] = ACTIONS(2686), + [anon_sym_EQ] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2702), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(2706), + [anon_sym_COLON] = ACTIONS(2702), + [anon_sym_COLON_QMARK] = ACTIONS(2702), + [anon_sym_COLON_DASH] = ACTIONS(2702), + [anon_sym_PERCENT] = ACTIONS(2702), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [799] = { - [sym_concatenation] = STATE(1273), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1273), - [sym_regex] = ACTIONS(2726), - [anon_sym_RBRACE] = ACTIONS(2728), - [anon_sym_EQ] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2732), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(2730), - [anon_sym_COLON_QMARK] = ACTIONS(2730), - [anon_sym_COLON_DASH] = ACTIONS(2730), - [anon_sym_PERCENT] = ACTIONS(2730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(1834), + [sym__heredoc_body_beginning] = ACTIONS(1834), + [sym_file_descriptor] = ACTIONS(1834), + [sym__concat] = ACTIONS(1834), + [sym_variable_name] = ACTIONS(1834), + [ts_builtin_sym_end] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_PIPE] = ACTIONS(1836), + [anon_sym_RPAREN] = ACTIONS(1834), + [anon_sym_SEMI_SEMI] = ACTIONS(1834), + [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP_AMP] = ACTIONS(1834), + [anon_sym_PIPE_PIPE] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1836), + [anon_sym_GT] = ACTIONS(1836), + [anon_sym_GT_GT] = ACTIONS(1834), + [anon_sym_AMP_GT] = ACTIONS(1836), + [anon_sym_AMP_GT_GT] = ACTIONS(1834), + [anon_sym_LT_AMP] = ACTIONS(1834), + [anon_sym_GT_AMP] = ACTIONS(1834), + [anon_sym_LT_LT] = ACTIONS(1836), + [anon_sym_LT_LT_DASH] = ACTIONS(1834), + [anon_sym_LT_LT_LT] = ACTIONS(1834), + [sym__special_characters] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1836), + [sym_raw_string] = ACTIONS(1834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), + [anon_sym_BQUOTE] = ACTIONS(1834), + [anon_sym_LT_LPAREN] = ACTIONS(1834), + [anon_sym_GT_LPAREN] = ACTIONS(1834), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1836), + [sym_word] = ACTIONS(1836), + [anon_sym_LF] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1836), }, [800] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(2728), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1259), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1259), + [sym_regex] = ACTIONS(2708), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_EQ] = ACTIONS(2712), + [anon_sym_DASH] = ACTIONS(2712), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2714), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(2712), + [anon_sym_COLON_QMARK] = ACTIONS(2712), + [anon_sym_COLON_DASH] = ACTIONS(2712), + [anon_sym_PERCENT] = ACTIONS(2712), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [801] = { - [sym__concat] = ACTIONS(1919), - [anon_sym_AMP_AMP] = ACTIONS(1919), - [anon_sym_PIPE_PIPE] = ACTIONS(1919), - [anon_sym_RBRACK] = ACTIONS(1919), - [anon_sym_EQ_TILDE] = ACTIONS(1919), - [anon_sym_EQ_EQ] = ACTIONS(1919), - [anon_sym_EQ] = ACTIONS(1921), - [anon_sym_PLUS_EQ] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1921), - [anon_sym_BANG_EQ] = ACTIONS(1919), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_DASH_EQ] = ACTIONS(1919), - [anon_sym_LT_EQ] = ACTIONS(1919), - [anon_sym_GT_EQ] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1919), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [802] = { - [sym_concatenation] = STATE(1270), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1270), - [sym_regex] = ACTIONS(2734), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_EQ] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2720), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2722), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(2720), - [anon_sym_COLON_QMARK] = ACTIONS(2720), - [anon_sym_COLON_DASH] = ACTIONS(2720), - [anon_sym_PERCENT] = ACTIONS(2720), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(1882), + [sym__heredoc_body_beginning] = ACTIONS(1882), + [sym_file_descriptor] = ACTIONS(1882), + [sym__concat] = ACTIONS(1882), + [sym_variable_name] = ACTIONS(1882), + [ts_builtin_sym_end] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_SEMI_SEMI] = ACTIONS(1882), + [anon_sym_PIPE_AMP] = ACTIONS(1882), + [anon_sym_AMP_AMP] = ACTIONS(1882), + [anon_sym_PIPE_PIPE] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1882), + [anon_sym_AMP_GT] = ACTIONS(1884), + [anon_sym_AMP_GT_GT] = ACTIONS(1882), + [anon_sym_LT_AMP] = ACTIONS(1882), + [anon_sym_GT_AMP] = ACTIONS(1882), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1882), + [anon_sym_LT_LT_LT] = ACTIONS(1882), + [sym__special_characters] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1882), + [anon_sym_BQUOTE] = ACTIONS(1882), + [anon_sym_LT_LPAREN] = ACTIONS(1882), + [anon_sym_GT_LPAREN] = ACTIONS(1882), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1884), + [sym_word] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1884), }, [803] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1256), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1256), + [sym_regex] = ACTIONS(2716), + [anon_sym_RBRACE] = ACTIONS(2686), + [anon_sym_EQ] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2702), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(2702), + [anon_sym_COLON_QMARK] = ACTIONS(2702), + [anon_sym_COLON_DASH] = ACTIONS(2702), + [anon_sym_PERCENT] = ACTIONS(2702), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [804] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(2686), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [805] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [anon_sym_RBRACK] = ACTIONS(1927), - [anon_sym_EQ_TILDE] = ACTIONS(1927), - [anon_sym_EQ_EQ] = ACTIONS(1927), - [anon_sym_EQ] = ACTIONS(1929), - [anon_sym_PLUS_EQ] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1929), - [anon_sym_BANG_EQ] = ACTIONS(1927), - [anon_sym_PLUS] = ACTIONS(1929), - [anon_sym_DASH] = ACTIONS(1929), - [anon_sym_DASH_EQ] = ACTIONS(1927), - [anon_sym_LT_EQ] = ACTIONS(1927), - [anon_sym_GT_EQ] = ACTIONS(1927), - [anon_sym_PLUS_PLUS] = ACTIONS(1927), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1927), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [806] = { - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_SEMI_SEMI] = ACTIONS(2740), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2738), + [sym__simple_heredoc_body] = ACTIONS(1890), + [sym__heredoc_body_beginning] = ACTIONS(1890), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [sym_variable_name] = ACTIONS(1890), + [ts_builtin_sym_end] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1892), + [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(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), + [sym_word] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1892), }, [807] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_SEMI_SEMI] = ACTIONS(2740), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2720), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_SEMI_SEMI] = ACTIONS(2722), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2722), + [anon_sym_AMP] = ACTIONS(2722), }, [808] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(2736), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1264), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_SEMI_SEMI] = ACTIONS(2726), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2726), + [anon_sym_AMP] = ACTIONS(2724), }, [809] = { - [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(2744), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(2736), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2742), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1264), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_SEMI_SEMI] = ACTIONS(2726), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2726), + [anon_sym_AMP] = ACTIONS(2724), }, [810] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(2718), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), + }, + [811] = { + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_SEMI_SEMI] = ACTIONS(2730), + [anon_sym_BQUOTE] = ACTIONS(2718), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2730), + [anon_sym_AMP] = ACTIONS(2730), + }, + [812] = { + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1267), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(2734), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(2718), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2732), + }, + [813] = { + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1267), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(2734), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(2718), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2734), + [anon_sym_AMP] = ACTIONS(2732), + }, + [814] = { + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(2736), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), + }, + [815] = { + [sym__simple_heredoc_body] = ACTIONS(1924), + [sym__heredoc_body_beginning] = ACTIONS(1924), + [sym_file_descriptor] = ACTIONS(1924), + [sym__concat] = ACTIONS(1924), + [sym_variable_name] = ACTIONS(1924), + [ts_builtin_sym_end] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_RPAREN] = ACTIONS(1924), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [anon_sym_PIPE_AMP] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_GT_GT] = ACTIONS(1924), + [anon_sym_AMP_GT] = ACTIONS(1926), + [anon_sym_AMP_GT_GT] = ACTIONS(1924), + [anon_sym_LT_AMP] = ACTIONS(1924), + [anon_sym_GT_AMP] = ACTIONS(1924), + [anon_sym_LT_LT] = ACTIONS(1926), + [anon_sym_LT_LT_DASH] = ACTIONS(1924), + [anon_sym_LT_LT_LT] = ACTIONS(1924), + [sym__special_characters] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(1924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), + [anon_sym_BQUOTE] = ACTIONS(1924), + [anon_sym_LT_LPAREN] = ACTIONS(1924), + [anon_sym_GT_LPAREN] = ACTIONS(1924), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1926), + [sym_word] = ACTIONS(1926), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1926), + }, + [816] = { + [anon_sym_SEMI] = ACTIONS(2738), + [anon_sym_RPAREN] = ACTIONS(2736), + [anon_sym_SEMI_SEMI] = ACTIONS(2740), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(2740), + }, + [817] = { + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1271), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2736), [anon_sym_SEMI_SEMI] = ACTIONS(2744), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(2736), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), [anon_sym_LF] = ACTIONS(2744), [anon_sym_AMP] = ACTIONS(2742), }, - [811] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(2746), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), - }, - [812] = { - [sym__concat] = ACTIONS(1959), - [anon_sym_AMP_AMP] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1959), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_EQ_TILDE] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1961), - [anon_sym_PLUS_EQ] = ACTIONS(1959), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG_EQ] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_DASH_EQ] = ACTIONS(1959), - [anon_sym_LT_EQ] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1959), - [anon_sym_PLUS_PLUS] = ACTIONS(1959), - [anon_sym_DASH_DASH] = ACTIONS(1959), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1959), - }, - [813] = { - [anon_sym_SEMI] = ACTIONS(2748), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2746), - [anon_sym_SEMI_SEMI] = ACTIONS(2750), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2750), - [anon_sym_AMP] = ACTIONS(2748), - }, - [814] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2748), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2746), - [anon_sym_SEMI_SEMI] = ACTIONS(2750), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2750), - [anon_sym_AMP] = ACTIONS(2748), - }, - [815] = { - [anon_sym_AMP_AMP] = ACTIONS(2420), - [anon_sym_PIPE_PIPE] = ACTIONS(2420), - [anon_sym_RBRACK] = ACTIONS(2420), - [anon_sym_EQ_TILDE] = ACTIONS(2420), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_EQ] = ACTIONS(2422), - [anon_sym_PLUS_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_PLUS] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_DASH_EQ] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(2420), - [anon_sym_GT_EQ] = ACTIONS(2420), - [anon_sym_PLUS_PLUS] = ACTIONS(2420), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(2420), - }, - [816] = { - [anon_sym_AMP_AMP] = ACTIONS(2420), - [anon_sym_PIPE_PIPE] = ACTIONS(2420), - [anon_sym_RBRACK] = ACTIONS(2420), - [anon_sym_EQ_TILDE] = ACTIONS(2420), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_EQ] = ACTIONS(2422), - [anon_sym_PLUS_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_PLUS] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_DASH_EQ] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(2420), - [anon_sym_GT_EQ] = ACTIONS(2420), - [anon_sym_PLUS_PLUS] = ACTIONS(2420), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(2420), - }, - [817] = { - [aux_sym_concatenation_repeat1] = STATE(817), - [sym__concat] = ACTIONS(2337), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym_PLUS_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_DASH_EQ] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1763), - }, [818] = { - [sym_variable_name] = ACTIONS(1106), - [ts_builtin_sym_end] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_RPAREN] = ACTIONS(1106), - [anon_sym_SEMI_SEMI] = ACTIONS(1106), - [anon_sym_PIPE_AMP] = ACTIONS(1106), - [anon_sym_AMP_AMP] = ACTIONS(1106), - [anon_sym_PIPE_PIPE] = ACTIONS(1106), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [sym_raw_string] = ACTIONS(1106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), - [anon_sym_BQUOTE] = ACTIONS(1106), - [anon_sym_LT_LPAREN] = ACTIONS(1106), - [anon_sym_GT_LPAREN] = ACTIONS(1106), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1108), - [sym_word] = ACTIONS(1108), - [anon_sym_LF] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1271), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2742), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2736), + [anon_sym_SEMI_SEMI] = ACTIONS(2744), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2744), + [anon_sym_AMP] = ACTIONS(2742), }, [819] = { - [sym_concatenation] = STATE(1281), - [sym_string] = STATE(558), - [sym_simple_expansion] = STATE(558), - [sym_string_expansion] = STATE(558), - [sym_expansion] = STATE(558), - [sym_command_substitution] = STATE(558), - [sym_process_substitution] = STATE(558), - [aux_sym_for_statement_repeat1] = STATE(1281), - [anon_sym_RPAREN] = ACTIONS(2752), - [sym__special_characters] = ACTIONS(1112), - [anon_sym_DQUOTE] = ACTIONS(1114), - [anon_sym_DOLLAR] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), - [anon_sym_BQUOTE] = ACTIONS(1124), - [anon_sym_LT_LPAREN] = ACTIONS(1126), - [anon_sym_GT_LPAREN] = ACTIONS(1126), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1118), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(1726), + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1728), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), }, [820] = { - [aux_sym_concatenation_repeat1] = STATE(391), - [sym__concat] = ACTIONS(697), - [sym_variable_name] = ACTIONS(1128), - [ts_builtin_sym_end] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1132), - [anon_sym_SEMI_SEMI] = ACTIONS(1128), - [anon_sym_PIPE_AMP] = ACTIONS(1128), - [anon_sym_AMP_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1128), - [sym__special_characters] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [anon_sym_DOLLAR] = ACTIONS(1132), - [sym_raw_string] = ACTIONS(1128), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1128), - [anon_sym_LT_LPAREN] = ACTIONS(1128), - [anon_sym_GT_LPAREN] = ACTIONS(1128), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1132), - [sym_word] = ACTIONS(1132), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1132), + [aux_sym_concatenation_repeat1] = STATE(820), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(2746), + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1728), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), }, [821] = { - [aux_sym_concatenation_repeat1] = STATE(391), - [sym__concat] = ACTIONS(697), - [sym_variable_name] = ACTIONS(1106), - [ts_builtin_sym_end] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_SEMI_SEMI] = ACTIONS(1106), - [anon_sym_PIPE_AMP] = ACTIONS(1106), - [anon_sym_AMP_AMP] = ACTIONS(1106), - [anon_sym_PIPE_PIPE] = ACTIONS(1106), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [sym_raw_string] = ACTIONS(1106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), - [anon_sym_BQUOTE] = ACTIONS(1106), - [anon_sym_LT_LPAREN] = ACTIONS(1106), - [anon_sym_GT_LPAREN] = ACTIONS(1106), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1108), - [sym_word] = ACTIONS(1108), - [anon_sym_LF] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), + [sym__simple_heredoc_body] = ACTIONS(1733), + [sym__heredoc_body_beginning] = ACTIONS(1733), + [sym_file_descriptor] = ACTIONS(1733), + [sym__concat] = ACTIONS(1733), + [ts_builtin_sym_end] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_RPAREN] = ACTIONS(1733), + [anon_sym_SEMI_SEMI] = ACTIONS(1733), + [anon_sym_PIPE_AMP] = ACTIONS(1733), + [anon_sym_AMP_AMP] = ACTIONS(1733), + [anon_sym_PIPE_PIPE] = ACTIONS(1733), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1733), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_AMP_GT_GT] = ACTIONS(1733), + [anon_sym_LT_AMP] = ACTIONS(1733), + [anon_sym_GT_AMP] = ACTIONS(1733), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_LT_LT_DASH] = ACTIONS(1733), + [anon_sym_LT_LT_LT] = ACTIONS(1733), + [sym__special_characters] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1733), + [anon_sym_BQUOTE] = ACTIONS(1733), + [anon_sym_LT_LPAREN] = ACTIONS(1733), + [anon_sym_GT_LPAREN] = ACTIONS(1733), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1735), + [sym_word] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1733), + [anon_sym_AMP] = ACTIONS(1735), }, [822] = { - [sym__concat] = ACTIONS(1763), - [sym_variable_name] = ACTIONS(1763), - [ts_builtin_sym_end] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(2749), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [823] = { - [aux_sym_concatenation_repeat1] = STATE(823), - [sym__concat] = ACTIONS(2754), - [sym_variable_name] = ACTIONS(1763), - [ts_builtin_sym_end] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym_concatenation] = STATE(1276), + [sym_string] = STATE(1275), + [sym_simple_expansion] = STATE(1275), + [sym_string_expansion] = STATE(1275), + [sym_expansion] = STATE(1275), + [sym_command_substitution] = STATE(1275), + [sym_process_substitution] = STATE(1275), + [anon_sym_RBRACE] = ACTIONS(2751), + [sym__special_characters] = ACTIONS(2753), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(2755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2755), }, [824] = { - [sym__concat] = ACTIONS(1770), - [sym_variable_name] = ACTIONS(1770), - [ts_builtin_sym_end] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1770), - [anon_sym_SEMI_SEMI] = ACTIONS(1770), - [anon_sym_PIPE_AMP] = ACTIONS(1770), - [anon_sym_AMP_AMP] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1770), - [sym__special_characters] = ACTIONS(1770), - [anon_sym_DQUOTE] = ACTIONS(1770), - [anon_sym_DOLLAR] = ACTIONS(1772), - [sym_raw_string] = ACTIONS(1770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), - [anon_sym_BQUOTE] = ACTIONS(1770), - [anon_sym_LT_LPAREN] = ACTIONS(1770), - [anon_sym_GT_LPAREN] = ACTIONS(1770), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1772), - [sym_word] = ACTIONS(1772), - [anon_sym_LF] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(2757), + [sym_comment] = ACTIONS(57), }, [825] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(2757), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [sym_concatenation] = STATE(1280), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1280), + [anon_sym_RBRACE] = ACTIONS(2759), + [anon_sym_EQ] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(2761), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(2765), + [anon_sym_COLON] = ACTIONS(2761), + [anon_sym_COLON_QMARK] = ACTIONS(2761), + [anon_sym_COLON_DASH] = ACTIONS(2761), + [anon_sym_PERCENT] = ACTIONS(2761), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [826] = { - [sym_concatenation] = STATE(1286), - [sym_string] = STATE(1285), - [sym_simple_expansion] = STATE(1285), - [sym_string_expansion] = STATE(1285), - [sym_expansion] = STATE(1285), - [sym_command_substitution] = STATE(1285), - [sym_process_substitution] = STATE(1285), - [anon_sym_RBRACE] = ACTIONS(2759), - [sym__special_characters] = ACTIONS(2761), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(2763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2763), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1282), + [anon_sym_RBRACE] = ACTIONS(2751), + [anon_sym_EQ] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2767), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2769), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(2771), + [anon_sym_COLON] = ACTIONS(2767), + [anon_sym_COLON_QMARK] = ACTIONS(2767), + [anon_sym_COLON_DASH] = ACTIONS(2767), + [anon_sym_PERCENT] = ACTIONS(2767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [827] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(2765), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(1834), + [sym__heredoc_body_beginning] = ACTIONS(1834), + [sym_file_descriptor] = ACTIONS(1834), + [sym__concat] = ACTIONS(1834), + [ts_builtin_sym_end] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_PIPE] = ACTIONS(1836), + [anon_sym_RPAREN] = ACTIONS(1834), + [anon_sym_SEMI_SEMI] = ACTIONS(1834), + [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP_AMP] = ACTIONS(1834), + [anon_sym_PIPE_PIPE] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1836), + [anon_sym_GT] = ACTIONS(1836), + [anon_sym_GT_GT] = ACTIONS(1834), + [anon_sym_AMP_GT] = ACTIONS(1836), + [anon_sym_AMP_GT_GT] = ACTIONS(1834), + [anon_sym_LT_AMP] = ACTIONS(1834), + [anon_sym_GT_AMP] = ACTIONS(1834), + [anon_sym_LT_LT] = ACTIONS(1836), + [anon_sym_LT_LT_DASH] = ACTIONS(1834), + [anon_sym_LT_LT_LT] = ACTIONS(1834), + [sym__special_characters] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1836), + [sym_raw_string] = ACTIONS(1834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), + [anon_sym_BQUOTE] = ACTIONS(1834), + [anon_sym_LT_LPAREN] = ACTIONS(1834), + [anon_sym_GT_LPAREN] = ACTIONS(1834), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1836), + [sym_word] = ACTIONS(1836), + [anon_sym_LF] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1836), }, [828] = { - [sym_concatenation] = STATE(1290), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1290), - [anon_sym_RBRACE] = ACTIONS(2767), - [anon_sym_EQ] = ACTIONS(2769), - [anon_sym_DASH] = ACTIONS(2769), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2771), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(2773), - [anon_sym_COLON] = ACTIONS(2769), - [anon_sym_COLON_QMARK] = ACTIONS(2769), - [anon_sym_COLON_DASH] = ACTIONS(2769), - [anon_sym_PERCENT] = ACTIONS(2769), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1285), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1285), + [sym_regex] = ACTIONS(2773), + [anon_sym_RBRACE] = ACTIONS(2775), + [anon_sym_EQ] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(2777), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(2777), + [anon_sym_COLON_QMARK] = ACTIONS(2777), + [anon_sym_COLON_DASH] = ACTIONS(2777), + [anon_sym_PERCENT] = ACTIONS(2777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [829] = { - [sym_concatenation] = STATE(1292), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1292), - [anon_sym_RBRACE] = ACTIONS(2759), - [anon_sym_EQ] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2775), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2777), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(2779), - [anon_sym_COLON] = ACTIONS(2775), - [anon_sym_COLON_QMARK] = ACTIONS(2775), - [anon_sym_COLON_DASH] = ACTIONS(2775), - [anon_sym_PERCENT] = ACTIONS(2775), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(2775), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [830] = { - [sym__concat] = ACTIONS(1871), - [sym_variable_name] = ACTIONS(1871), - [ts_builtin_sym_end] = ACTIONS(1871), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_RPAREN] = ACTIONS(1871), - [anon_sym_SEMI_SEMI] = ACTIONS(1871), - [anon_sym_PIPE_AMP] = ACTIONS(1871), - [anon_sym_AMP_AMP] = ACTIONS(1871), - [anon_sym_PIPE_PIPE] = ACTIONS(1871), - [sym__special_characters] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1871), - [anon_sym_DOLLAR] = ACTIONS(1873), - [sym_raw_string] = ACTIONS(1871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), - [anon_sym_BQUOTE] = ACTIONS(1871), - [anon_sym_LT_LPAREN] = ACTIONS(1871), - [anon_sym_GT_LPAREN] = ACTIONS(1871), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1873), - [sym_word] = ACTIONS(1873), - [anon_sym_LF] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1873), + [sym__simple_heredoc_body] = ACTIONS(1882), + [sym__heredoc_body_beginning] = ACTIONS(1882), + [sym_file_descriptor] = ACTIONS(1882), + [sym__concat] = ACTIONS(1882), + [ts_builtin_sym_end] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_SEMI_SEMI] = ACTIONS(1882), + [anon_sym_PIPE_AMP] = ACTIONS(1882), + [anon_sym_AMP_AMP] = ACTIONS(1882), + [anon_sym_PIPE_PIPE] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1882), + [anon_sym_AMP_GT] = ACTIONS(1884), + [anon_sym_AMP_GT_GT] = ACTIONS(1882), + [anon_sym_LT_AMP] = ACTIONS(1882), + [anon_sym_GT_AMP] = ACTIONS(1882), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1882), + [anon_sym_LT_LT_LT] = ACTIONS(1882), + [sym__special_characters] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1882), + [anon_sym_BQUOTE] = ACTIONS(1882), + [anon_sym_LT_LPAREN] = ACTIONS(1882), + [anon_sym_GT_LPAREN] = ACTIONS(1882), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1884), + [sym_word] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1884), }, [831] = { - [sym_concatenation] = STATE(1295), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1295), + [sym_concatenation] = STATE(1282), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1282), [sym_regex] = ACTIONS(2781), - [anon_sym_RBRACE] = ACTIONS(2783), - [anon_sym_EQ] = ACTIONS(2785), - [anon_sym_DASH] = ACTIONS(2785), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2787), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(2785), - [anon_sym_COLON_QMARK] = ACTIONS(2785), - [anon_sym_COLON_DASH] = ACTIONS(2785), - [anon_sym_PERCENT] = ACTIONS(2785), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(2751), + [anon_sym_EQ] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2767), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2769), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(2767), + [anon_sym_COLON_QMARK] = ACTIONS(2767), + [anon_sym_COLON_DASH] = ACTIONS(2767), + [anon_sym_PERCENT] = ACTIONS(2767), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [832] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(2783), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(2751), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [833] = { - [sym__concat] = ACTIONS(1919), - [sym_variable_name] = ACTIONS(1919), - [ts_builtin_sym_end] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1919), - [anon_sym_SEMI_SEMI] = ACTIONS(1919), - [anon_sym_PIPE_AMP] = ACTIONS(1919), - [anon_sym_AMP_AMP] = ACTIONS(1919), - [anon_sym_PIPE_PIPE] = ACTIONS(1919), - [sym__special_characters] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1921), - [sym_raw_string] = ACTIONS(1919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), - [anon_sym_BQUOTE] = ACTIONS(1919), - [anon_sym_LT_LPAREN] = ACTIONS(1919), - [anon_sym_GT_LPAREN] = ACTIONS(1919), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1921), - [sym_word] = ACTIONS(1921), - [anon_sym_LF] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1921), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(2783), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [834] = { - [sym_concatenation] = STATE(1292), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1292), - [sym_regex] = ACTIONS(2789), - [anon_sym_RBRACE] = ACTIONS(2759), - [anon_sym_EQ] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2775), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2777), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(2775), - [anon_sym_COLON_QMARK] = ACTIONS(2775), - [anon_sym_COLON_DASH] = ACTIONS(2775), - [anon_sym_PERCENT] = ACTIONS(2775), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(1890), + [sym__heredoc_body_beginning] = ACTIONS(1890), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [ts_builtin_sym_end] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1892), + [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(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), + [sym_word] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1892), }, [835] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(2759), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(2785), + [anon_sym_RPAREN] = ACTIONS(2783), + [anon_sym_SEMI_SEMI] = ACTIONS(2787), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2787), + [anon_sym_AMP] = ACTIONS(2787), }, [836] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(2791), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1290), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(2789), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2783), + [anon_sym_SEMI_SEMI] = ACTIONS(2791), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2791), + [anon_sym_AMP] = ACTIONS(2789), }, [837] = { - [sym__concat] = ACTIONS(1927), - [sym_variable_name] = ACTIONS(1927), - [ts_builtin_sym_end] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_SEMI_SEMI] = ACTIONS(1927), - [anon_sym_PIPE_AMP] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [sym__special_characters] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1929), - [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(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1929), - [sym_word] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1927), - [anon_sym_AMP] = ACTIONS(1929), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1290), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2789), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2783), + [anon_sym_SEMI_SEMI] = ACTIONS(2791), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2791), + [anon_sym_AMP] = ACTIONS(2789), }, [838] = { - [anon_sym_SEMI] = ACTIONS(2793), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2791), - [anon_sym_SEMI_SEMI] = ACTIONS(2795), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2793), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(2783), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [839] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), [anon_sym_SEMI] = ACTIONS(2793), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2791), [anon_sym_SEMI_SEMI] = ACTIONS(2795), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), + [anon_sym_BQUOTE] = ACTIONS(2783), + [sym_comment] = ACTIONS(57), [anon_sym_LF] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2795), }, [840] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(2791), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1293), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(2799), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(2783), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2797), }, [841] = { + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1293), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), [anon_sym_SEMI] = ACTIONS(2797), - [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(889), [anon_sym_SEMI_SEMI] = ACTIONS(2799), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(2791), - [sym_comment] = ACTIONS(55), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(2783), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), [anon_sym_LF] = ACTIONS(2799), [anon_sym_AMP] = ACTIONS(2797), }, [842] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2797), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(2799), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(2791), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2799), - [anon_sym_AMP] = ACTIONS(2797), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(2801), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [843] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(2801), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__simple_heredoc_body] = ACTIONS(1924), + [sym__heredoc_body_beginning] = ACTIONS(1924), + [sym_file_descriptor] = ACTIONS(1924), + [sym__concat] = ACTIONS(1924), + [ts_builtin_sym_end] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_RPAREN] = ACTIONS(1924), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [anon_sym_PIPE_AMP] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_GT_GT] = ACTIONS(1924), + [anon_sym_AMP_GT] = ACTIONS(1926), + [anon_sym_AMP_GT_GT] = ACTIONS(1924), + [anon_sym_LT_AMP] = ACTIONS(1924), + [anon_sym_GT_AMP] = ACTIONS(1924), + [anon_sym_LT_LT] = ACTIONS(1926), + [anon_sym_LT_LT_DASH] = ACTIONS(1924), + [anon_sym_LT_LT_LT] = ACTIONS(1924), + [sym__special_characters] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(1924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), + [anon_sym_BQUOTE] = ACTIONS(1924), + [anon_sym_LT_LPAREN] = ACTIONS(1924), + [anon_sym_GT_LPAREN] = ACTIONS(1924), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1926), + [sym_word] = ACTIONS(1926), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1926), }, [844] = { - [sym__concat] = ACTIONS(1959), - [sym_variable_name] = ACTIONS(1959), - [ts_builtin_sym_end] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_SEMI_SEMI] = ACTIONS(1959), - [anon_sym_PIPE_AMP] = ACTIONS(1959), - [anon_sym_AMP_AMP] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1959), - [sym__special_characters] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), - [anon_sym_BQUOTE] = ACTIONS(1959), - [anon_sym_LT_LPAREN] = ACTIONS(1959), - [anon_sym_GT_LPAREN] = ACTIONS(1959), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1961), - [sym_word] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_RPAREN] = ACTIONS(2801), + [anon_sym_SEMI_SEMI] = ACTIONS(2805), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2805), + [anon_sym_AMP] = ACTIONS(2805), }, [845] = { - [anon_sym_SEMI] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(623), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1297), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(2807), + [anon_sym_PIPE] = ACTIONS(587), [anon_sym_RPAREN] = ACTIONS(2801), - [anon_sym_SEMI_SEMI] = ACTIONS(2805), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2805), - [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI_SEMI] = ACTIONS(2809), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2807), }, [846] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(623), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1297), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2807), + [anon_sym_PIPE] = ACTIONS(587), [anon_sym_RPAREN] = ACTIONS(2801), - [anon_sym_SEMI_SEMI] = ACTIONS(2805), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2805), - [anon_sym_AMP] = ACTIONS(2803), + [anon_sym_SEMI_SEMI] = ACTIONS(2809), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2807), }, [847] = { - [sym__concat] = ACTIONS(1763), - [ts_builtin_sym_end] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(1726), + [sym_variable_name] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1726), }, [848] = { [aux_sym_concatenation_repeat1] = STATE(848), - [sym__concat] = ACTIONS(2807), - [ts_builtin_sym_end] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(2811), + [sym_variable_name] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1726), }, [849] = { - [sym__concat] = ACTIONS(1770), - [ts_builtin_sym_end] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1770), - [anon_sym_SEMI_SEMI] = ACTIONS(1770), - [anon_sym_PIPE_AMP] = ACTIONS(1770), - [anon_sym_AMP_AMP] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1770), - [sym__special_characters] = ACTIONS(1770), - [anon_sym_DQUOTE] = ACTIONS(1770), - [anon_sym_DOLLAR] = ACTIONS(1772), - [sym_raw_string] = ACTIONS(1770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), - [anon_sym_BQUOTE] = ACTIONS(1770), - [anon_sym_LT_LPAREN] = ACTIONS(1770), - [anon_sym_GT_LPAREN] = ACTIONS(1770), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1772), - [sym_word] = ACTIONS(1772), - [anon_sym_LF] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1772), + [sym_file_descriptor] = ACTIONS(1733), + [sym__concat] = ACTIONS(1733), + [sym_variable_name] = ACTIONS(1733), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1733), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_AMP_GT_GT] = ACTIONS(1733), + [anon_sym_LT_AMP] = ACTIONS(1733), + [anon_sym_GT_AMP] = ACTIONS(1733), + [sym__special_characters] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1733), + [anon_sym_BQUOTE] = ACTIONS(1733), + [anon_sym_LT_LPAREN] = ACTIONS(1733), + [anon_sym_GT_LPAREN] = ACTIONS(1733), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1733), }, [850] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(2810), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(2814), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [851] = { - [sym_concatenation] = STATE(1306), - [sym_string] = STATE(1305), - [sym_simple_expansion] = STATE(1305), - [sym_string_expansion] = STATE(1305), - [sym_expansion] = STATE(1305), - [sym_command_substitution] = STATE(1305), - [sym_process_substitution] = STATE(1305), - [anon_sym_RBRACE] = ACTIONS(2812), - [sym__special_characters] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(2816), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2816), + [sym_concatenation] = STATE(1302), + [sym_string] = STATE(1301), + [sym_simple_expansion] = STATE(1301), + [sym_string_expansion] = STATE(1301), + [sym_expansion] = STATE(1301), + [sym_command_substitution] = STATE(1301), + [sym_process_substitution] = STATE(1301), + [anon_sym_RBRACE] = ACTIONS(2816), + [sym__special_characters] = ACTIONS(2818), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(2820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2820), }, [852] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(2818), - [sym_comment] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(2822), + [sym_comment] = ACTIONS(57), }, [853] = { - [sym_concatenation] = STATE(1310), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1310), - [anon_sym_RBRACE] = ACTIONS(2820), - [anon_sym_EQ] = ACTIONS(2822), - [anon_sym_DASH] = ACTIONS(2822), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(2826), - [anon_sym_COLON] = ACTIONS(2822), - [anon_sym_COLON_QMARK] = ACTIONS(2822), - [anon_sym_COLON_DASH] = ACTIONS(2822), - [anon_sym_PERCENT] = ACTIONS(2822), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1306), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1306), + [anon_sym_RBRACE] = ACTIONS(2824), + [anon_sym_EQ] = ACTIONS(2826), + [anon_sym_DASH] = ACTIONS(2826), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(2830), + [anon_sym_COLON] = ACTIONS(2826), + [anon_sym_COLON_QMARK] = ACTIONS(2826), + [anon_sym_COLON_DASH] = ACTIONS(2826), + [anon_sym_PERCENT] = ACTIONS(2826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [854] = { - [sym_concatenation] = STATE(1312), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1312), - [anon_sym_RBRACE] = ACTIONS(2812), - [anon_sym_EQ] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_COLON] = ACTIONS(2828), - [anon_sym_COLON_QMARK] = ACTIONS(2828), - [anon_sym_COLON_DASH] = ACTIONS(2828), - [anon_sym_PERCENT] = ACTIONS(2828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1308), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1308), + [anon_sym_RBRACE] = ACTIONS(2816), + [anon_sym_EQ] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2832), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(2836), + [anon_sym_COLON] = ACTIONS(2832), + [anon_sym_COLON_QMARK] = ACTIONS(2832), + [anon_sym_COLON_DASH] = ACTIONS(2832), + [anon_sym_PERCENT] = ACTIONS(2832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [855] = { - [sym__concat] = ACTIONS(1871), - [ts_builtin_sym_end] = ACTIONS(1871), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_RPAREN] = ACTIONS(1871), - [anon_sym_SEMI_SEMI] = ACTIONS(1871), - [anon_sym_PIPE_AMP] = ACTIONS(1871), - [anon_sym_AMP_AMP] = ACTIONS(1871), - [anon_sym_PIPE_PIPE] = ACTIONS(1871), - [sym__special_characters] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1871), - [anon_sym_DOLLAR] = ACTIONS(1873), - [sym_raw_string] = ACTIONS(1871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), - [anon_sym_BQUOTE] = ACTIONS(1871), - [anon_sym_LT_LPAREN] = ACTIONS(1871), - [anon_sym_GT_LPAREN] = ACTIONS(1871), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1873), - [sym_word] = ACTIONS(1873), - [anon_sym_LF] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1873), + [sym_file_descriptor] = ACTIONS(1834), + [sym__concat] = ACTIONS(1834), + [sym_variable_name] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1836), + [anon_sym_GT] = ACTIONS(1836), + [anon_sym_GT_GT] = ACTIONS(1834), + [anon_sym_AMP_GT] = ACTIONS(1836), + [anon_sym_AMP_GT_GT] = ACTIONS(1834), + [anon_sym_LT_AMP] = ACTIONS(1834), + [anon_sym_GT_AMP] = ACTIONS(1834), + [sym__special_characters] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1836), + [sym_raw_string] = ACTIONS(1834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), + [anon_sym_BQUOTE] = ACTIONS(1834), + [anon_sym_LT_LPAREN] = ACTIONS(1834), + [anon_sym_GT_LPAREN] = ACTIONS(1834), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1834), }, [856] = { - [sym_concatenation] = STATE(1315), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1315), - [sym_regex] = ACTIONS(2834), - [anon_sym_RBRACE] = ACTIONS(2836), - [anon_sym_EQ] = ACTIONS(2838), - [anon_sym_DASH] = ACTIONS(2838), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2840), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(2838), - [anon_sym_COLON_QMARK] = ACTIONS(2838), - [anon_sym_COLON_DASH] = ACTIONS(2838), - [anon_sym_PERCENT] = ACTIONS(2838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1311), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1311), + [sym_regex] = ACTIONS(2838), + [anon_sym_RBRACE] = ACTIONS(2840), + [anon_sym_EQ] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2842), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2844), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(2842), + [anon_sym_COLON_QMARK] = ACTIONS(2842), + [anon_sym_COLON_DASH] = ACTIONS(2842), + [anon_sym_PERCENT] = ACTIONS(2842), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [857] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(2836), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(2840), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [858] = { - [sym__concat] = ACTIONS(1919), - [ts_builtin_sym_end] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1919), - [anon_sym_SEMI_SEMI] = ACTIONS(1919), - [anon_sym_PIPE_AMP] = ACTIONS(1919), - [anon_sym_AMP_AMP] = ACTIONS(1919), - [anon_sym_PIPE_PIPE] = ACTIONS(1919), - [sym__special_characters] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1921), - [sym_raw_string] = ACTIONS(1919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), - [anon_sym_BQUOTE] = ACTIONS(1919), - [anon_sym_LT_LPAREN] = ACTIONS(1919), - [anon_sym_GT_LPAREN] = ACTIONS(1919), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1921), - [sym_word] = ACTIONS(1921), - [anon_sym_LF] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1921), + [sym_file_descriptor] = ACTIONS(1882), + [sym__concat] = ACTIONS(1882), + [sym_variable_name] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1882), + [anon_sym_AMP_GT] = ACTIONS(1884), + [anon_sym_AMP_GT_GT] = ACTIONS(1882), + [anon_sym_LT_AMP] = ACTIONS(1882), + [anon_sym_GT_AMP] = ACTIONS(1882), + [sym__special_characters] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1882), + [anon_sym_BQUOTE] = ACTIONS(1882), + [anon_sym_LT_LPAREN] = ACTIONS(1882), + [anon_sym_GT_LPAREN] = ACTIONS(1882), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1882), }, [859] = { - [sym_concatenation] = STATE(1312), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1312), - [sym_regex] = ACTIONS(2842), - [anon_sym_RBRACE] = ACTIONS(2812), - [anon_sym_EQ] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(2828), - [anon_sym_COLON_QMARK] = ACTIONS(2828), - [anon_sym_COLON_DASH] = ACTIONS(2828), - [anon_sym_PERCENT] = ACTIONS(2828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1308), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1308), + [sym_regex] = ACTIONS(2846), + [anon_sym_RBRACE] = ACTIONS(2816), + [anon_sym_EQ] = ACTIONS(2832), + [anon_sym_DASH] = ACTIONS(2832), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(2832), + [anon_sym_COLON_QMARK] = ACTIONS(2832), + [anon_sym_COLON_DASH] = ACTIONS(2832), + [anon_sym_PERCENT] = ACTIONS(2832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [860] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(2812), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(2816), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [861] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(2844), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(2848), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [862] = { - [sym__concat] = ACTIONS(1927), - [ts_builtin_sym_end] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_SEMI_SEMI] = ACTIONS(1927), - [anon_sym_PIPE_AMP] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [sym__special_characters] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1929), - [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(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1929), - [sym_word] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1927), - [anon_sym_AMP] = ACTIONS(1929), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1892), + [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(57), + [sym_word] = ACTIONS(1890), }, [863] = { - [anon_sym_SEMI] = ACTIONS(2846), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2844), - [anon_sym_SEMI_SEMI] = ACTIONS(2848), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2846), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym_RPAREN] = ACTIONS(2848), + [anon_sym_SEMI_SEMI] = ACTIONS(2852), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2852), }, [864] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2846), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2844), - [anon_sym_SEMI_SEMI] = ACTIONS(2848), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2846), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1316), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2848), + [anon_sym_SEMI_SEMI] = ACTIONS(2856), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2856), + [anon_sym_AMP] = ACTIONS(2854), }, [865] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(2844), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1316), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2848), + [anon_sym_SEMI_SEMI] = ACTIONS(2856), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2856), + [anon_sym_AMP] = ACTIONS(2854), }, [866] = { - [anon_sym_SEMI] = ACTIONS(2850), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(2852), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(2844), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2850), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(2848), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [867] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2850), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(2852), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(2844), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym_SEMI_SEMI] = ACTIONS(2860), + [anon_sym_BQUOTE] = ACTIONS(2848), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2860), + [anon_sym_AMP] = ACTIONS(2860), }, [868] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(2854), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1319), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(2864), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(2848), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2862), }, [869] = { - [sym__concat] = ACTIONS(1959), - [ts_builtin_sym_end] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_SEMI_SEMI] = ACTIONS(1959), - [anon_sym_PIPE_AMP] = ACTIONS(1959), - [anon_sym_AMP_AMP] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1959), - [sym__special_characters] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), - [anon_sym_BQUOTE] = ACTIONS(1959), - [anon_sym_LT_LPAREN] = ACTIONS(1959), - [anon_sym_GT_LPAREN] = ACTIONS(1959), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1961), - [sym_word] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1961), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1319), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(2864), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(2848), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2862), }, [870] = { - [anon_sym_SEMI] = ACTIONS(2856), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2854), - [anon_sym_SEMI_SEMI] = ACTIONS(2858), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2856), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(2866), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [871] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2856), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2854), - [anon_sym_SEMI_SEMI] = ACTIONS(2858), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2856), + [sym_file_descriptor] = ACTIONS(1924), + [sym__concat] = ACTIONS(1924), + [sym_variable_name] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_GT_GT] = ACTIONS(1924), + [anon_sym_AMP_GT] = ACTIONS(1926), + [anon_sym_AMP_GT_GT] = ACTIONS(1924), + [anon_sym_LT_AMP] = ACTIONS(1924), + [anon_sym_GT_AMP] = ACTIONS(1924), + [sym__special_characters] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(1924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), + [anon_sym_BQUOTE] = ACTIONS(1924), + [anon_sym_LT_LPAREN] = ACTIONS(1924), + [anon_sym_GT_LPAREN] = ACTIONS(1924), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1924), }, [872] = { - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(1763), - [sym_variable_name] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(2868), + [anon_sym_RPAREN] = ACTIONS(2866), + [anon_sym_SEMI_SEMI] = ACTIONS(2870), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2870), + [anon_sym_AMP] = ACTIONS(2870), }, [873] = { - [aux_sym_concatenation_repeat1] = STATE(873), - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(2860), - [sym_variable_name] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1763), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1323), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2866), + [anon_sym_SEMI_SEMI] = ACTIONS(2874), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2872), }, [874] = { - [sym_file_descriptor] = ACTIONS(1770), - [sym__concat] = ACTIONS(1770), - [sym_variable_name] = ACTIONS(1770), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1772), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_AMP_GT] = ACTIONS(1772), - [anon_sym_AMP_GT_GT] = ACTIONS(1770), - [anon_sym_LT_AMP] = ACTIONS(1770), - [anon_sym_GT_AMP] = ACTIONS(1770), - [sym__special_characters] = ACTIONS(1770), - [anon_sym_DQUOTE] = ACTIONS(1770), - [anon_sym_DOLLAR] = ACTIONS(1772), - [sym_raw_string] = ACTIONS(1770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), - [anon_sym_BQUOTE] = ACTIONS(1770), - [anon_sym_LT_LPAREN] = ACTIONS(1770), - [anon_sym_GT_LPAREN] = ACTIONS(1770), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1770), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1323), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2866), + [anon_sym_SEMI_SEMI] = ACTIONS(2874), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2874), + [anon_sym_AMP] = ACTIONS(2872), }, [875] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(2863), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(2876), + [anon_sym_DOLLAR] = ACTIONS(2876), + [sym__string_content] = ACTIONS(2878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2876), + [anon_sym_BQUOTE] = ACTIONS(2876), + [sym_comment] = ACTIONS(265), }, [876] = { - [sym_concatenation] = STATE(1326), - [sym_string] = STATE(1325), - [sym_simple_expansion] = STATE(1325), - [sym_string_expansion] = STATE(1325), - [sym_expansion] = STATE(1325), - [sym_command_substitution] = STATE(1325), - [sym_process_substitution] = STATE(1325), - [anon_sym_RBRACE] = ACTIONS(2865), - [sym__special_characters] = ACTIONS(2867), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(2869), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2869), + [sym_concatenation] = STATE(1327), + [sym_string] = STATE(1326), + [sym_simple_expansion] = STATE(1326), + [sym_string_expansion] = STATE(1326), + [sym_expansion] = STATE(1326), + [sym_command_substitution] = STATE(1326), + [sym_process_substitution] = STATE(1326), + [anon_sym_RBRACE] = ACTIONS(2880), + [sym__special_characters] = ACTIONS(2882), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(2884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2884), }, [877] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(2871), - [sym_comment] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(2886), + [sym_comment] = ACTIONS(57), }, [878] = { - [sym_concatenation] = STATE(1330), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1330), - [anon_sym_RBRACE] = ACTIONS(2873), - [anon_sym_EQ] = ACTIONS(2875), - [anon_sym_DASH] = ACTIONS(2875), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(2879), - [anon_sym_COLON] = ACTIONS(2875), - [anon_sym_COLON_QMARK] = ACTIONS(2875), - [anon_sym_COLON_DASH] = ACTIONS(2875), - [anon_sym_PERCENT] = ACTIONS(2875), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1331), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1331), + [anon_sym_RBRACE] = ACTIONS(2888), + [anon_sym_EQ] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2890), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(2894), + [anon_sym_COLON] = ACTIONS(2890), + [anon_sym_COLON_QMARK] = ACTIONS(2890), + [anon_sym_COLON_DASH] = ACTIONS(2890), + [anon_sym_PERCENT] = ACTIONS(2890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [879] = { - [sym_concatenation] = STATE(1332), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1332), - [anon_sym_RBRACE] = ACTIONS(2865), - [anon_sym_EQ] = ACTIONS(2881), - [anon_sym_DASH] = ACTIONS(2881), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(2885), - [anon_sym_COLON] = ACTIONS(2881), - [anon_sym_COLON_QMARK] = ACTIONS(2881), - [anon_sym_COLON_DASH] = ACTIONS(2881), - [anon_sym_PERCENT] = ACTIONS(2881), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1333), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1333), + [anon_sym_RBRACE] = ACTIONS(2880), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_DASH] = ACTIONS(2896), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2898), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(2900), + [anon_sym_COLON] = ACTIONS(2896), + [anon_sym_COLON_QMARK] = ACTIONS(2896), + [anon_sym_COLON_DASH] = ACTIONS(2896), + [anon_sym_PERCENT] = ACTIONS(2896), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [880] = { - [sym_file_descriptor] = ACTIONS(1871), - [sym__concat] = ACTIONS(1871), - [sym_variable_name] = ACTIONS(1871), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_GT] = ACTIONS(1873), - [anon_sym_GT_GT] = ACTIONS(1871), - [anon_sym_AMP_GT] = ACTIONS(1873), - [anon_sym_AMP_GT_GT] = ACTIONS(1871), - [anon_sym_LT_AMP] = ACTIONS(1871), - [anon_sym_GT_AMP] = ACTIONS(1871), - [sym__special_characters] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1871), - [anon_sym_DOLLAR] = ACTIONS(1873), - [sym_raw_string] = ACTIONS(1871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), - [anon_sym_BQUOTE] = ACTIONS(1871), - [anon_sym_LT_LPAREN] = ACTIONS(1871), - [anon_sym_GT_LPAREN] = ACTIONS(1871), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1871), + [sym__concat] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1836), + [anon_sym_DOLLAR] = ACTIONS(1836), + [sym__string_content] = ACTIONS(1834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1836), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1836), + [anon_sym_BQUOTE] = ACTIONS(1836), + [sym_comment] = ACTIONS(265), }, [881] = { - [sym_concatenation] = STATE(1335), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1335), - [sym_regex] = ACTIONS(2887), - [anon_sym_RBRACE] = ACTIONS(2889), - [anon_sym_EQ] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2893), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(2891), - [anon_sym_COLON_QMARK] = ACTIONS(2891), - [anon_sym_COLON_DASH] = ACTIONS(2891), - [anon_sym_PERCENT] = ACTIONS(2891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1336), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1336), + [sym_regex] = ACTIONS(2902), + [anon_sym_RBRACE] = ACTIONS(2904), + [anon_sym_EQ] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2906), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2908), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(2906), + [anon_sym_COLON_QMARK] = ACTIONS(2906), + [anon_sym_COLON_DASH] = ACTIONS(2906), + [anon_sym_PERCENT] = ACTIONS(2906), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [882] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(2889), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(2904), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [883] = { - [sym_file_descriptor] = ACTIONS(1919), - [sym__concat] = ACTIONS(1919), - [sym_variable_name] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1921), - [anon_sym_GT_GT] = ACTIONS(1919), - [anon_sym_AMP_GT] = ACTIONS(1921), - [anon_sym_AMP_GT_GT] = ACTIONS(1919), - [anon_sym_LT_AMP] = ACTIONS(1919), - [anon_sym_GT_AMP] = ACTIONS(1919), - [sym__special_characters] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1921), - [sym_raw_string] = ACTIONS(1919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), - [anon_sym_BQUOTE] = ACTIONS(1919), - [anon_sym_LT_LPAREN] = ACTIONS(1919), - [anon_sym_GT_LPAREN] = ACTIONS(1919), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1919), + [sym__concat] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1884), + [anon_sym_DOLLAR] = ACTIONS(1884), + [sym__string_content] = ACTIONS(1882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1884), + [anon_sym_BQUOTE] = ACTIONS(1884), + [sym_comment] = ACTIONS(265), }, [884] = { - [sym_concatenation] = STATE(1332), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1332), - [sym_regex] = ACTIONS(2895), - [anon_sym_RBRACE] = ACTIONS(2865), - [anon_sym_EQ] = ACTIONS(2881), - [anon_sym_DASH] = ACTIONS(2881), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(2881), - [anon_sym_COLON_QMARK] = ACTIONS(2881), - [anon_sym_COLON_DASH] = ACTIONS(2881), - [anon_sym_PERCENT] = ACTIONS(2881), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1333), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1333), + [sym_regex] = ACTIONS(2910), + [anon_sym_RBRACE] = ACTIONS(2880), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_DASH] = ACTIONS(2896), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2898), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(2896), + [anon_sym_COLON_QMARK] = ACTIONS(2896), + [anon_sym_COLON_DASH] = ACTIONS(2896), + [anon_sym_PERCENT] = ACTIONS(2896), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [885] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(2865), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(2880), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [886] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(2897), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(2912), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [887] = { - [sym_file_descriptor] = ACTIONS(1927), - [sym__concat] = ACTIONS(1927), - [sym_variable_name] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1929), - [anon_sym_GT_GT] = ACTIONS(1927), - [anon_sym_AMP_GT] = ACTIONS(1929), - [anon_sym_AMP_GT_GT] = ACTIONS(1927), - [anon_sym_LT_AMP] = ACTIONS(1927), - [anon_sym_GT_AMP] = ACTIONS(1927), - [sym__special_characters] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1929), - [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(55), - [sym_word] = ACTIONS(1927), + [sym__concat] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym__string_content] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [sym_comment] = ACTIONS(265), }, [888] = { - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2897), - [anon_sym_SEMI_SEMI] = ACTIONS(2901), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2901), - [anon_sym_AMP] = ACTIONS(2899), + [anon_sym_SEMI] = ACTIONS(2914), + [anon_sym_RPAREN] = ACTIONS(2912), + [anon_sym_SEMI_SEMI] = ACTIONS(2916), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2916), + [anon_sym_AMP] = ACTIONS(2916), }, [889] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2897), - [anon_sym_SEMI_SEMI] = ACTIONS(2901), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2901), - [anon_sym_AMP] = ACTIONS(2899), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1341), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(2918), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2912), + [anon_sym_SEMI_SEMI] = ACTIONS(2920), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2920), + [anon_sym_AMP] = ACTIONS(2918), }, [890] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(2897), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1341), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2918), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(2912), + [anon_sym_SEMI_SEMI] = ACTIONS(2920), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2920), + [anon_sym_AMP] = ACTIONS(2918), }, [891] = { - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(2905), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(2897), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2903), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(2912), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [892] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(2905), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(2897), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_SEMI_SEMI] = ACTIONS(2924), + [anon_sym_BQUOTE] = ACTIONS(2912), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2924), }, [893] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(2907), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1344), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(2926), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(2928), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(2912), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2928), + [anon_sym_AMP] = ACTIONS(2926), }, [894] = { - [sym_file_descriptor] = ACTIONS(1959), - [sym__concat] = ACTIONS(1959), - [sym_variable_name] = ACTIONS(1959), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_AMP_GT] = ACTIONS(1961), - [anon_sym_AMP_GT_GT] = ACTIONS(1959), - [anon_sym_LT_AMP] = ACTIONS(1959), - [anon_sym_GT_AMP] = ACTIONS(1959), - [sym__special_characters] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), - [anon_sym_BQUOTE] = ACTIONS(1959), - [anon_sym_LT_LPAREN] = ACTIONS(1959), - [anon_sym_GT_LPAREN] = ACTIONS(1959), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1959), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1344), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2926), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(2928), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(2912), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2928), + [anon_sym_AMP] = ACTIONS(2926), }, [895] = { - [anon_sym_SEMI] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2907), - [anon_sym_SEMI_SEMI] = ACTIONS(2911), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2909), + [sym__simple_heredoc_body] = ACTIONS(2930), + [sym__heredoc_body_beginning] = ACTIONS(2930), + [sym_file_descriptor] = ACTIONS(2930), + [sym__concat] = ACTIONS(2930), + [ts_builtin_sym_end] = ACTIONS(2930), + [anon_sym_SEMI] = ACTIONS(2932), + [anon_sym_PIPE] = ACTIONS(2932), + [anon_sym_RPAREN] = ACTIONS(2930), + [anon_sym_SEMI_SEMI] = ACTIONS(2930), + [anon_sym_PIPE_AMP] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_PIPE_PIPE] = ACTIONS(2930), + [anon_sym_EQ_TILDE] = ACTIONS(2932), + [anon_sym_EQ_EQ] = ACTIONS(2932), + [anon_sym_LT] = ACTIONS(2932), + [anon_sym_GT] = ACTIONS(2932), + [anon_sym_GT_GT] = ACTIONS(2930), + [anon_sym_AMP_GT] = ACTIONS(2932), + [anon_sym_AMP_GT_GT] = ACTIONS(2930), + [anon_sym_LT_AMP] = ACTIONS(2930), + [anon_sym_GT_AMP] = ACTIONS(2930), + [anon_sym_LT_LT] = ACTIONS(2932), + [anon_sym_LT_LT_DASH] = ACTIONS(2930), + [anon_sym_LT_LT_LT] = ACTIONS(2930), + [sym__special_characters] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [anon_sym_DOLLAR] = ACTIONS(2932), + [sym_raw_string] = ACTIONS(2930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2930), + [anon_sym_BQUOTE] = ACTIONS(2930), + [anon_sym_LT_LPAREN] = ACTIONS(2930), + [anon_sym_GT_LPAREN] = ACTIONS(2930), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2932), + [anon_sym_LF] = ACTIONS(2930), + [anon_sym_AMP] = ACTIONS(2932), }, [896] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2907), - [anon_sym_SEMI_SEMI] = ACTIONS(2911), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2909), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [897] = { - [anon_sym_DQUOTE] = ACTIONS(2913), - [anon_sym_DOLLAR] = ACTIONS(2913), - [sym__string_content] = ACTIONS(2915), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2913), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2913), - [anon_sym_BQUOTE] = ACTIONS(2913), - [sym_comment] = ACTIONS(281), + [aux_sym_concatenation_repeat1] = STATE(529), + [sym__concat] = ACTIONS(2934), + [anon_sym_RBRACK] = ACTIONS(2936), + [sym_comment] = ACTIONS(57), }, [898] = { - [sym_concatenation] = STATE(1345), - [sym_string] = STATE(1344), - [sym_simple_expansion] = STATE(1344), - [sym_string_expansion] = STATE(1344), - [sym_expansion] = STATE(1344), - [sym_command_substitution] = STATE(1344), - [sym_process_substitution] = STATE(1344), - [anon_sym_RBRACE] = ACTIONS(2917), - [sym__special_characters] = ACTIONS(2919), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(2921), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2921), + [aux_sym_concatenation_repeat1] = STATE(529), + [sym__concat] = ACTIONS(2938), + [anon_sym_RBRACK] = ACTIONS(2940), + [sym_comment] = ACTIONS(57), }, [899] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(2923), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(2942), + [anon_sym_RBRACK] = ACTIONS(2940), + [sym_comment] = ACTIONS(57), }, [900] = { - [sym_concatenation] = STATE(1349), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1349), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_EQ] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2929), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(2931), - [anon_sym_COLON] = ACTIONS(2927), - [anon_sym_COLON_QMARK] = ACTIONS(2927), - [anon_sym_COLON_DASH] = ACTIONS(2927), - [anon_sym_PERCENT] = ACTIONS(2927), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(2944), + [sym__heredoc_body_beginning] = ACTIONS(2944), + [sym_file_descriptor] = ACTIONS(2944), + [sym__concat] = ACTIONS(2944), + [ts_builtin_sym_end] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_PIPE] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(2944), + [anon_sym_SEMI_SEMI] = ACTIONS(2944), + [anon_sym_PIPE_AMP] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_EQ_TILDE] = ACTIONS(2946), + [anon_sym_EQ_EQ] = ACTIONS(2946), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_GT] = ACTIONS(2946), + [anon_sym_GT_GT] = ACTIONS(2944), + [anon_sym_AMP_GT] = ACTIONS(2946), + [anon_sym_AMP_GT_GT] = ACTIONS(2944), + [anon_sym_LT_AMP] = ACTIONS(2944), + [anon_sym_GT_AMP] = ACTIONS(2944), + [anon_sym_LT_LT] = ACTIONS(2946), + [anon_sym_LT_LT_DASH] = ACTIONS(2944), + [anon_sym_LT_LT_LT] = ACTIONS(2944), + [sym__special_characters] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_DOLLAR] = ACTIONS(2946), + [sym_raw_string] = ACTIONS(2944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2944), + [anon_sym_BQUOTE] = ACTIONS(2944), + [anon_sym_LT_LPAREN] = ACTIONS(2944), + [anon_sym_GT_LPAREN] = ACTIONS(2944), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2946), + [anon_sym_LF] = ACTIONS(2944), + [anon_sym_AMP] = ACTIONS(2946), }, [901] = { - [sym_concatenation] = STATE(1351), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1351), - [anon_sym_RBRACE] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2933), - [anon_sym_DASH] = ACTIONS(2933), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2935), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(2937), - [anon_sym_COLON] = ACTIONS(2933), - [anon_sym_COLON_QMARK] = ACTIONS(2933), - [anon_sym_COLON_DASH] = ACTIONS(2933), - [anon_sym_PERCENT] = ACTIONS(2933), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(2950), + [sym_comment] = ACTIONS(57), }, [902] = { - [sym__concat] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1873), - [anon_sym_DOLLAR] = ACTIONS(1873), - [sym__string_content] = ACTIONS(1871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1873), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1873), - [anon_sym_BQUOTE] = ACTIONS(1873), - [sym_comment] = ACTIONS(281), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(1355), + [anon_sym_DQUOTE] = ACTIONS(2952), + [anon_sym_DOLLAR] = ACTIONS(2954), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [903] = { - [sym_concatenation] = STATE(1354), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1354), - [sym_regex] = ACTIONS(2939), - [anon_sym_RBRACE] = ACTIONS(2941), - [anon_sym_EQ] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2943), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2945), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(2943), - [anon_sym_COLON_QMARK] = ACTIONS(2943), - [anon_sym_COLON_DASH] = ACTIONS(2943), - [anon_sym_PERCENT] = ACTIONS(2943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_string] = STATE(1357), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(2956), + [sym_raw_string] = ACTIONS(2958), + [anon_sym_POUND] = ACTIONS(2956), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2960), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_AT] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_0] = ACTIONS(2960), + [anon_sym__] = ACTIONS(2960), }, [904] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(2941), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(2964), + [sym_comment] = ACTIONS(57), }, [905] = { - [sym__concat] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1921), - [sym__string_content] = ACTIONS(1919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1921), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1921), - [anon_sym_BQUOTE] = ACTIONS(1921), - [sym_comment] = ACTIONS(281), + [sym_subscript] = STATE(1363), + [sym_variable_name] = ACTIONS(2966), + [anon_sym_BANG] = ACTIONS(2968), + [anon_sym_DASH] = ACTIONS(2970), + [anon_sym_DOLLAR] = ACTIONS(2970), + [anon_sym_POUND] = ACTIONS(2968), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2972), + [anon_sym_STAR] = ACTIONS(2974), + [anon_sym_AT] = ACTIONS(2974), + [anon_sym_QMARK] = ACTIONS(2974), + [anon_sym_0] = ACTIONS(2972), + [anon_sym__] = ACTIONS(2972), }, [906] = { - [sym_concatenation] = STATE(1351), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1351), - [sym_regex] = ACTIONS(2947), - [anon_sym_RBRACE] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2933), - [anon_sym_DASH] = ACTIONS(2933), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(2935), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(2933), - [anon_sym_COLON_QMARK] = ACTIONS(2933), - [anon_sym_COLON_DASH] = ACTIONS(2933), - [anon_sym_PERCENT] = ACTIONS(2933), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__terminated_statement] = STATE(1366), + [sym_redirected_statement] = STATE(1364), + [sym_for_statement] = STATE(1364), + [sym_c_style_for_statement] = STATE(1364), + [sym_while_statement] = STATE(1364), + [sym_if_statement] = STATE(1364), + [sym_case_statement] = STATE(1364), + [sym_function_definition] = STATE(1364), + [sym_compound_statement] = STATE(1364), + [sym_subshell] = STATE(1364), + [sym_pipeline] = STATE(1364), + [sym_list] = STATE(1364), + [sym_negated_command] = STATE(1364), + [sym_test_command] = STATE(1364), + [sym_declaration_command] = STATE(1364), + [sym_unset_command] = STATE(1364), + [sym_command] = STATE(1364), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(1365), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(1366), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [907] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__terminated_statement] = STATE(1369), + [sym_redirected_statement] = STATE(1367), + [sym_for_statement] = STATE(1367), + [sym_c_style_for_statement] = STATE(1367), + [sym_while_statement] = STATE(1367), + [sym_if_statement] = STATE(1367), + [sym_case_statement] = STATE(1367), + [sym_function_definition] = STATE(1367), + [sym_compound_statement] = STATE(1367), + [sym_subshell] = STATE(1367), + [sym_pipeline] = STATE(1367), + [sym_list] = STATE(1367), + [sym_negated_command] = STATE(1367), + [sym_test_command] = STATE(1367), + [sym_declaration_command] = STATE(1367), + [sym_unset_command] = STATE(1367), + [sym_command] = STATE(1367), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(1368), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(1369), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [908] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(2949), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__terminated_statement] = STATE(1372), + [sym_redirected_statement] = STATE(1370), + [sym_for_statement] = STATE(1370), + [sym_c_style_for_statement] = STATE(1370), + [sym_while_statement] = STATE(1370), + [sym_if_statement] = STATE(1370), + [sym_case_statement] = STATE(1370), + [sym_function_definition] = STATE(1370), + [sym_compound_statement] = STATE(1370), + [sym_subshell] = STATE(1370), + [sym_pipeline] = STATE(1370), + [sym_list] = STATE(1370), + [sym_negated_command] = STATE(1370), + [sym_test_command] = STATE(1370), + [sym_declaration_command] = STATE(1370), + [sym_unset_command] = STATE(1370), + [sym_command] = STATE(1370), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(1371), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(1372), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [909] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1929), - [anon_sym_DOLLAR] = ACTIONS(1929), - [sym__string_content] = ACTIONS(1927), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), - [anon_sym_BQUOTE] = ACTIONS(1929), - [sym_comment] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(2964), + [sym_comment] = ACTIONS(57), }, [910] = { - [anon_sym_SEMI] = ACTIONS(2951), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2949), - [anon_sym_SEMI_SEMI] = ACTIONS(2953), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2951), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1374), + [sym_simple_expansion] = STATE(1374), + [sym_string_expansion] = STATE(1374), + [sym_expansion] = STATE(1374), + [sym_command_substitution] = STATE(1374), + [sym_process_substitution] = STATE(1374), + [anon_sym_RBRACE] = ACTIONS(2964), + [sym__special_characters] = ACTIONS(2976), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(2978), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2978), }, [911] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2951), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(2949), - [anon_sym_SEMI_SEMI] = ACTIONS(2953), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2951), + [sym__simple_heredoc_body] = ACTIONS(2980), + [sym__heredoc_body_beginning] = ACTIONS(2980), + [sym_file_descriptor] = ACTIONS(2980), + [sym__concat] = ACTIONS(2980), + [ts_builtin_sym_end] = ACTIONS(2980), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2982), + [anon_sym_RPAREN] = ACTIONS(2980), + [anon_sym_SEMI_SEMI] = ACTIONS(2980), + [anon_sym_PIPE_AMP] = ACTIONS(2980), + [anon_sym_AMP_AMP] = ACTIONS(2980), + [anon_sym_PIPE_PIPE] = ACTIONS(2980), + [anon_sym_EQ_TILDE] = ACTIONS(2982), + [anon_sym_EQ_EQ] = ACTIONS(2982), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_GT] = ACTIONS(2982), + [anon_sym_GT_GT] = ACTIONS(2980), + [anon_sym_AMP_GT] = ACTIONS(2982), + [anon_sym_AMP_GT_GT] = ACTIONS(2980), + [anon_sym_LT_AMP] = ACTIONS(2980), + [anon_sym_GT_AMP] = ACTIONS(2980), + [anon_sym_LT_LT] = ACTIONS(2982), + [anon_sym_LT_LT_DASH] = ACTIONS(2980), + [anon_sym_LT_LT_LT] = ACTIONS(2980), + [sym__special_characters] = ACTIONS(2980), + [anon_sym_DQUOTE] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2982), + [sym_raw_string] = ACTIONS(2980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2980), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2980), + [anon_sym_BQUOTE] = ACTIONS(2980), + [anon_sym_LT_LPAREN] = ACTIONS(2980), + [anon_sym_GT_LPAREN] = ACTIONS(2980), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2982), + [anon_sym_LF] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), }, [912] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(2949), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_concatenation] = STATE(1378), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1378), + [sym_regex] = ACTIONS(2984), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_EQ] = ACTIONS(2988), + [anon_sym_DASH] = ACTIONS(2988), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2990), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(2988), + [anon_sym_COLON_QMARK] = ACTIONS(2988), + [anon_sym_COLON_DASH] = ACTIONS(2988), + [anon_sym_PERCENT] = ACTIONS(2988), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [913] = { - [anon_sym_SEMI] = ACTIONS(2955), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(2957), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(2949), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2955), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [914] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2955), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(2957), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(2949), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2955), + [sym_concatenation] = STATE(1380), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1380), + [sym_regex] = ACTIONS(2992), + [anon_sym_RBRACE] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2994), + [anon_sym_DASH] = ACTIONS(2994), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2996), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(2994), + [anon_sym_COLON_QMARK] = ACTIONS(2994), + [anon_sym_COLON_DASH] = ACTIONS(2994), + [anon_sym_PERCENT] = ACTIONS(2994), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [915] = { - [sym__simple_heredoc_body] = ACTIONS(2959), - [sym__heredoc_body_beginning] = ACTIONS(2959), - [sym_file_descriptor] = ACTIONS(2959), - [sym__concat] = ACTIONS(2959), - [ts_builtin_sym_end] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2961), - [anon_sym_RPAREN] = ACTIONS(2959), - [anon_sym_SEMI_SEMI] = ACTIONS(2959), - [anon_sym_PIPE_AMP] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_EQ_TILDE] = ACTIONS(2961), - [anon_sym_EQ_EQ] = ACTIONS(2961), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_GT] = ACTIONS(2961), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_AMP_GT] = ACTIONS(2961), - [anon_sym_AMP_GT_GT] = ACTIONS(2959), - [anon_sym_LT_AMP] = ACTIONS(2959), - [anon_sym_GT_AMP] = ACTIONS(2959), - [anon_sym_LT_LT] = ACTIONS(2961), - [anon_sym_LT_LT_DASH] = ACTIONS(2959), - [anon_sym_LT_LT_LT] = ACTIONS(2959), - [sym__special_characters] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_DOLLAR] = ACTIONS(2961), - [sym_raw_string] = ACTIONS(2959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), - [anon_sym_BQUOTE] = ACTIONS(2959), - [anon_sym_LT_LPAREN] = ACTIONS(2959), - [anon_sym_GT_LPAREN] = ACTIONS(2959), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2961), - [anon_sym_LF] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [916] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [sym_string] = STATE(1381), + [sym_simple_expansion] = STATE(1381), + [sym_string_expansion] = STATE(1381), + [sym_expansion] = STATE(1381), + [sym_command_substitution] = STATE(1381), + [sym_process_substitution] = STATE(1381), + [sym__special_characters] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(2998), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2998), }, [917] = { - [aux_sym_concatenation_repeat1] = STATE(550), - [sym__concat] = ACTIONS(2963), - [anon_sym_RBRACK] = ACTIONS(2965), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(1382), + [sym__concat] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [sym__special_characters] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(781), + [sym_raw_string] = ACTIONS(779), + [anon_sym_POUND] = ACTIONS(779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(781), + [anon_sym_COLON_QMARK] = ACTIONS(781), + [anon_sym_COLON_DASH] = ACTIONS(781), + [anon_sym_PERCENT] = ACTIONS(781), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(779), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(781), }, [918] = { - [aux_sym_concatenation_repeat1] = STATE(550), - [sym__concat] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(2969), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(783), + [anon_sym_RBRACE] = ACTIONS(783), + [anon_sym_EQ] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [sym__special_characters] = ACTIONS(785), + [anon_sym_DQUOTE] = ACTIONS(783), + [anon_sym_DOLLAR] = ACTIONS(785), + [sym_raw_string] = ACTIONS(783), + [anon_sym_POUND] = ACTIONS(783), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(783), + [anon_sym_COLON] = ACTIONS(785), + [anon_sym_COLON_QMARK] = ACTIONS(785), + [anon_sym_COLON_DASH] = ACTIONS(785), + [anon_sym_PERCENT] = ACTIONS(785), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(783), + [anon_sym_BQUOTE] = ACTIONS(783), + [anon_sym_LT_LPAREN] = ACTIONS(783), + [anon_sym_GT_LPAREN] = ACTIONS(783), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(785), }, [919] = { - [sym__concat] = ACTIONS(2971), - [anon_sym_RBRACK] = ACTIONS(2969), - [sym_comment] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [920] = { - [sym__simple_heredoc_body] = ACTIONS(2973), - [sym__heredoc_body_beginning] = ACTIONS(2973), - [sym_file_descriptor] = ACTIONS(2973), - [sym__concat] = ACTIONS(2973), - [ts_builtin_sym_end] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym_PIPE] = ACTIONS(2975), - [anon_sym_RPAREN] = ACTIONS(2973), - [anon_sym_SEMI_SEMI] = ACTIONS(2973), - [anon_sym_PIPE_AMP] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_EQ_TILDE] = ACTIONS(2975), - [anon_sym_EQ_EQ] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_GT] = ACTIONS(2975), - [anon_sym_GT_GT] = ACTIONS(2973), - [anon_sym_AMP_GT] = ACTIONS(2975), - [anon_sym_AMP_GT_GT] = ACTIONS(2973), - [anon_sym_LT_AMP] = ACTIONS(2973), - [anon_sym_GT_AMP] = ACTIONS(2973), - [anon_sym_LT_LT] = ACTIONS(2975), - [anon_sym_LT_LT_DASH] = ACTIONS(2973), - [anon_sym_LT_LT_LT] = ACTIONS(2973), - [sym__special_characters] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_DOLLAR] = ACTIONS(2975), - [sym_raw_string] = ACTIONS(2973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), - [anon_sym_BQUOTE] = ACTIONS(2973), - [anon_sym_LT_LPAREN] = ACTIONS(2973), - [anon_sym_GT_LPAREN] = ACTIONS(2973), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2975), - [anon_sym_LF] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2975), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(455), + [anon_sym_DQUOTE] = ACTIONS(3000), + [anon_sym_DOLLAR] = ACTIONS(3002), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [921] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(2979), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(817), + [anon_sym_RBRACE] = ACTIONS(817), + [anon_sym_EQ] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [sym__special_characters] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_POUND] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_COLON] = ACTIONS(819), + [anon_sym_COLON_QMARK] = ACTIONS(819), + [anon_sym_COLON_DASH] = ACTIONS(819), + [anon_sym_PERCENT] = ACTIONS(819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(819), }, [922] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(1369), - [anon_sym_DQUOTE] = ACTIONS(2981), - [anon_sym_DOLLAR] = ACTIONS(2983), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym__concat] = ACTIONS(821), + [anon_sym_RBRACE] = ACTIONS(821), + [anon_sym_EQ] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [sym__special_characters] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(823), + [sym_raw_string] = ACTIONS(821), + [anon_sym_POUND] = ACTIONS(821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(821), + [anon_sym_COLON] = ACTIONS(823), + [anon_sym_COLON_QMARK] = ACTIONS(823), + [anon_sym_COLON_DASH] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(821), + [anon_sym_BQUOTE] = ACTIONS(821), + [anon_sym_LT_LPAREN] = ACTIONS(821), + [anon_sym_GT_LPAREN] = ACTIONS(821), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(823), }, [923] = { - [sym_string] = STATE(1371), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(2985), - [sym_raw_string] = ACTIONS(2987), - [anon_sym_POUND] = ACTIONS(2985), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_AT] = ACTIONS(2991), - [anon_sym_QMARK] = ACTIONS(2991), - [anon_sym_0] = ACTIONS(2989), - [anon_sym__] = ACTIONS(2989), + [sym__concat] = ACTIONS(825), + [anon_sym_RBRACE] = ACTIONS(825), + [anon_sym_EQ] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [sym__special_characters] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(825), + [anon_sym_DOLLAR] = ACTIONS(827), + [sym_raw_string] = ACTIONS(825), + [anon_sym_POUND] = ACTIONS(825), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(825), + [anon_sym_COLON] = ACTIONS(827), + [anon_sym_COLON_QMARK] = ACTIONS(827), + [anon_sym_COLON_DASH] = ACTIONS(827), + [anon_sym_PERCENT] = ACTIONS(827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_LT_LPAREN] = ACTIONS(825), + [anon_sym_GT_LPAREN] = ACTIONS(825), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(827), }, [924] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(2993), - [sym_comment] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(3004), + [sym_comment] = ACTIONS(57), }, [925] = { - [sym_subscript] = STATE(1377), - [sym_variable_name] = ACTIONS(2995), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_DOLLAR] = ACTIONS(2999), - [anon_sym_POUND] = ACTIONS(2997), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(3003), - [anon_sym_AT] = ACTIONS(3003), - [anon_sym_QMARK] = ACTIONS(3003), - [anon_sym_0] = ACTIONS(3001), - [anon_sym__] = ACTIONS(3001), + [sym_subscript] = STATE(1388), + [sym_variable_name] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3008), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3010), + [anon_sym_STAR] = ACTIONS(3012), + [anon_sym_AT] = ACTIONS(3012), + [anon_sym_QMARK] = ACTIONS(3012), + [anon_sym_0] = ACTIONS(3010), + [anon_sym__] = ACTIONS(3010), }, [926] = { - [sym__terminated_statement] = STATE(1380), - [sym_for_statement] = STATE(1378), - [sym_c_style_for_statement] = STATE(1378), - [sym_while_statement] = STATE(1378), - [sym_if_statement] = STATE(1378), - [sym_case_statement] = STATE(1378), - [sym_function_definition] = STATE(1378), - [sym_subshell] = STATE(1378), - [sym_pipeline] = STATE(1378), - [sym_list] = STATE(1378), - [sym_negated_command] = STATE(1378), - [sym_test_command] = STATE(1378), - [sym_declaration_command] = STATE(1378), - [sym_unset_command] = STATE(1378), - [sym_command] = STATE(1378), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(1379), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(1380), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_concatenation] = STATE(1391), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1391), + [anon_sym_RBRACE] = ACTIONS(3014), + [anon_sym_EQ] = ACTIONS(3016), + [anon_sym_DASH] = ACTIONS(3016), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(3020), + [anon_sym_COLON] = ACTIONS(3016), + [anon_sym_COLON_QMARK] = ACTIONS(3016), + [anon_sym_COLON_DASH] = ACTIONS(3016), + [anon_sym_PERCENT] = ACTIONS(3016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [927] = { - [sym__terminated_statement] = STATE(1383), - [sym_for_statement] = STATE(1381), - [sym_c_style_for_statement] = STATE(1381), - [sym_while_statement] = STATE(1381), - [sym_if_statement] = STATE(1381), - [sym_case_statement] = STATE(1381), - [sym_function_definition] = STATE(1381), - [sym_subshell] = STATE(1381), - [sym_pipeline] = STATE(1381), - [sym_list] = STATE(1381), - [sym_negated_command] = STATE(1381), - [sym_test_command] = STATE(1381), - [sym_declaration_command] = STATE(1381), - [sym_unset_command] = STATE(1381), - [sym_command] = STATE(1381), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(1382), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(1383), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym_concatenation] = STATE(1394), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1394), + [anon_sym_RBRACE] = ACTIONS(3022), + [anon_sym_EQ] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(3028), + [anon_sym_COLON] = ACTIONS(3024), + [anon_sym_COLON_QMARK] = ACTIONS(3024), + [anon_sym_COLON_DASH] = ACTIONS(3024), + [anon_sym_PERCENT] = ACTIONS(3024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [928] = { - [sym__terminated_statement] = STATE(1386), - [sym_for_statement] = STATE(1384), - [sym_c_style_for_statement] = STATE(1384), - [sym_while_statement] = STATE(1384), - [sym_if_statement] = STATE(1384), - [sym_case_statement] = STATE(1384), - [sym_function_definition] = STATE(1384), - [sym_subshell] = STATE(1384), - [sym_pipeline] = STATE(1384), - [sym_list] = STATE(1384), - [sym_negated_command] = STATE(1384), - [sym_test_command] = STATE(1384), - [sym_declaration_command] = STATE(1384), - [sym_unset_command] = STATE(1384), - [sym_command] = STATE(1384), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(1385), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(1386), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_concatenation] = STATE(1396), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1396), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_EQ] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3032), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_COLON_QMARK] = ACTIONS(3032), + [anon_sym_COLON_DASH] = ACTIONS(3032), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [929] = { - [anon_sym_RBRACE] = ACTIONS(2993), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(3036), + [sym__heredoc_body_beginning] = ACTIONS(3036), + [sym_file_descriptor] = ACTIONS(3036), + [sym__concat] = ACTIONS(3036), + [ts_builtin_sym_end] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_PIPE] = ACTIONS(3038), + [anon_sym_RPAREN] = ACTIONS(3036), + [anon_sym_SEMI_SEMI] = ACTIONS(3036), + [anon_sym_PIPE_AMP] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [anon_sym_EQ_TILDE] = ACTIONS(3038), + [anon_sym_EQ_EQ] = ACTIONS(3038), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3038), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_AMP_GT] = ACTIONS(3038), + [anon_sym_AMP_GT_GT] = ACTIONS(3036), + [anon_sym_LT_AMP] = ACTIONS(3036), + [anon_sym_GT_AMP] = ACTIONS(3036), + [anon_sym_LT_LT] = ACTIONS(3038), + [anon_sym_LT_LT_DASH] = ACTIONS(3036), + [anon_sym_LT_LT_LT] = ACTIONS(3036), + [sym__special_characters] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_DOLLAR] = ACTIONS(3038), + [sym_raw_string] = ACTIONS(3036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3036), + [anon_sym_BQUOTE] = ACTIONS(3036), + [anon_sym_LT_LPAREN] = ACTIONS(3036), + [anon_sym_GT_LPAREN] = ACTIONS(3036), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3038), + [anon_sym_LF] = ACTIONS(3036), + [anon_sym_AMP] = ACTIONS(3038), }, [930] = { - [sym_concatenation] = STATE(1389), - [sym_string] = STATE(1388), - [sym_simple_expansion] = STATE(1388), - [sym_string_expansion] = STATE(1388), - [sym_expansion] = STATE(1388), - [sym_command_substitution] = STATE(1388), - [sym_process_substitution] = STATE(1388), - [anon_sym_RBRACE] = ACTIONS(2993), - [sym__special_characters] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(3007), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3007), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [931] = { - [sym__simple_heredoc_body] = ACTIONS(3009), - [sym__heredoc_body_beginning] = ACTIONS(3009), - [sym_file_descriptor] = ACTIONS(3009), - [sym__concat] = ACTIONS(3009), - [ts_builtin_sym_end] = ACTIONS(3009), - [anon_sym_SEMI] = ACTIONS(3011), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_RPAREN] = ACTIONS(3009), - [anon_sym_SEMI_SEMI] = ACTIONS(3009), - [anon_sym_PIPE_AMP] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3009), - [anon_sym_EQ_TILDE] = ACTIONS(3011), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_LT] = ACTIONS(3011), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_GT_GT] = ACTIONS(3009), - [anon_sym_AMP_GT] = ACTIONS(3011), - [anon_sym_AMP_GT_GT] = ACTIONS(3009), - [anon_sym_LT_AMP] = ACTIONS(3009), - [anon_sym_GT_AMP] = ACTIONS(3009), - [anon_sym_LT_LT] = ACTIONS(3011), - [anon_sym_LT_LT_DASH] = ACTIONS(3009), - [anon_sym_LT_LT_LT] = ACTIONS(3009), - [sym__special_characters] = ACTIONS(3009), - [anon_sym_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3011), - [sym_raw_string] = ACTIONS(3009), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), - [anon_sym_BQUOTE] = ACTIONS(3009), - [anon_sym_LT_LPAREN] = ACTIONS(3009), - [anon_sym_GT_LPAREN] = ACTIONS(3009), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3011), - [anon_sym_LF] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3011), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1399), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(3040), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3042), + [anon_sym_SEMI_SEMI] = ACTIONS(3044), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3040), }, [932] = { - [sym_concatenation] = STATE(1392), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1392), - [sym_regex] = ACTIONS(3013), - [anon_sym_RBRACE] = ACTIONS(3015), - [anon_sym_EQ] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3019), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3017), - [anon_sym_COLON_QMARK] = ACTIONS(3017), - [anon_sym_COLON_DASH] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1399), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(3040), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3042), + [anon_sym_SEMI_SEMI] = ACTIONS(3044), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3040), }, [933] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3015), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(1400), + [sym_for_statement] = STATE(1400), + [sym_c_style_for_statement] = STATE(1400), + [sym_while_statement] = STATE(1400), + [sym_if_statement] = STATE(1400), + [sym_case_statement] = STATE(1400), + [sym_function_definition] = STATE(1400), + [sym_compound_statement] = STATE(1400), + [sym_subshell] = STATE(1400), + [sym_pipeline] = STATE(1400), + [sym_list] = STATE(1400), + [sym_negated_command] = STATE(1400), + [sym_test_command] = STATE(1400), + [sym_declaration_command] = STATE(1400), + [sym_unset_command] = STATE(1400), + [sym_command] = STATE(1400), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(1401), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [934] = { - [sym_concatenation] = STATE(1394), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1394), - [sym_regex] = ACTIONS(3021), - [anon_sym_RBRACE] = ACTIONS(2993), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3023), - [anon_sym_COLON_QMARK] = ACTIONS(3023), - [anon_sym_COLON_DASH] = ACTIONS(3023), - [anon_sym_PERCENT] = ACTIONS(3023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1403), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(3048), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(3042), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3046), }, [935] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(2993), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1403), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(3048), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(3042), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3046), }, [936] = { - [sym_string] = STATE(1395), - [sym_simple_expansion] = STATE(1395), - [sym_string_expansion] = STATE(1395), - [sym_expansion] = STATE(1395), - [sym_command_substitution] = STATE(1395), - [sym_process_substitution] = STATE(1395), - [sym__special_characters] = ACTIONS(3027), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(3027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3027), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(1404), + [sym_for_statement] = STATE(1404), + [sym_c_style_for_statement] = STATE(1404), + [sym_while_statement] = STATE(1404), + [sym_if_statement] = STATE(1404), + [sym_case_statement] = STATE(1404), + [sym_function_definition] = STATE(1404), + [sym_compound_statement] = STATE(1404), + [sym_subshell] = STATE(1404), + [sym_pipeline] = STATE(1404), + [sym_list] = STATE(1404), + [sym_negated_command] = STATE(1404), + [sym_test_command] = STATE(1404), + [sym_declaration_command] = STATE(1404), + [sym_unset_command] = STATE(1404), + [sym_command] = STATE(1404), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(1405), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [937] = { - [aux_sym_concatenation_repeat1] = STATE(1396), - [sym__concat] = ACTIONS(1875), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(809), - [sym__special_characters] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(807), - [anon_sym_POUND] = ACTIONS(807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), - [anon_sym_COLON] = ACTIONS(809), - [anon_sym_COLON_QMARK] = ACTIONS(809), - [anon_sym_COLON_DASH] = ACTIONS(809), - [anon_sym_PERCENT] = ACTIONS(809), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_LT_LPAREN] = ACTIONS(807), - [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(809), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1408), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3052), + [anon_sym_SEMI_SEMI] = ACTIONS(3054), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3050), }, [938] = { - [sym__concat] = ACTIONS(811), - [anon_sym_RBRACE] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [sym__special_characters] = ACTIONS(813), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(813), - [sym_raw_string] = ACTIONS(811), - [anon_sym_POUND] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [anon_sym_COLON] = ACTIONS(813), - [anon_sym_COLON_QMARK] = ACTIONS(813), - [anon_sym_COLON_DASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(813), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(813), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1408), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3052), + [anon_sym_SEMI_SEMI] = ACTIONS(3054), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(3054), + [anon_sym_AMP] = ACTIONS(3050), }, [939] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(1409), + [sym_for_statement] = STATE(1409), + [sym_c_style_for_statement] = STATE(1409), + [sym_while_statement] = STATE(1409), + [sym_if_statement] = STATE(1409), + [sym_case_statement] = STATE(1409), + [sym_function_definition] = STATE(1409), + [sym_compound_statement] = STATE(1409), + [sym_subshell] = STATE(1409), + [sym_pipeline] = STATE(1409), + [sym_list] = STATE(1409), + [sym_negated_command] = STATE(1409), + [sym_test_command] = STATE(1409), + [sym_declaration_command] = STATE(1409), + [sym_unset_command] = STATE(1409), + [sym_command] = STATE(1409), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(1410), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [940] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(473), - [anon_sym_DQUOTE] = ACTIONS(3029), - [anon_sym_DOLLAR] = ACTIONS(3031), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3056), + [anon_sym_EQ] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3058), + [sym__special_characters] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(3064), + [anon_sym_DOLLAR] = ACTIONS(3067), + [sym_raw_string] = ACTIONS(3070), + [anon_sym_POUND] = ACTIONS(3073), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3076), + [anon_sym_COLON] = ACTIONS(3058), + [anon_sym_COLON_QMARK] = ACTIONS(3058), + [anon_sym_COLON_DASH] = ACTIONS(3058), + [anon_sym_PERCENT] = ACTIONS(3058), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3079), + [anon_sym_BQUOTE] = ACTIONS(3082), + [anon_sym_LT_LPAREN] = ACTIONS(3085), + [anon_sym_GT_LPAREN] = ACTIONS(3085), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(3088), }, [941] = { - [sym__concat] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_EQ] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [sym__special_characters] = ACTIONS(847), - [anon_sym_DQUOTE] = ACTIONS(845), - [anon_sym_DOLLAR] = ACTIONS(847), - [sym_raw_string] = ACTIONS(845), - [anon_sym_POUND] = ACTIONS(845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), - [anon_sym_COLON] = ACTIONS(847), - [anon_sym_COLON_QMARK] = ACTIONS(847), - [anon_sym_COLON_DASH] = ACTIONS(847), - [anon_sym_PERCENT] = ACTIONS(847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(845), - [anon_sym_LT_LPAREN] = ACTIONS(845), - [anon_sym_GT_LPAREN] = ACTIONS(845), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(847), + [sym_concatenation] = STATE(1380), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1380), + [anon_sym_RBRACE] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2994), + [anon_sym_DASH] = ACTIONS(2994), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(2996), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(2994), + [anon_sym_COLON_QMARK] = ACTIONS(2994), + [anon_sym_COLON_DASH] = ACTIONS(2994), + [anon_sym_PERCENT] = ACTIONS(2994), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [942] = { - [sym__concat] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_EQ] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(851), - [sym__special_characters] = ACTIONS(851), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(851), - [sym_raw_string] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), - [anon_sym_COLON] = ACTIONS(851), - [anon_sym_COLON_QMARK] = ACTIONS(851), - [anon_sym_COLON_DASH] = ACTIONS(851), - [anon_sym_PERCENT] = ACTIONS(851), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(849), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(851), + [sym__simple_heredoc_body] = ACTIONS(3091), + [sym__heredoc_body_beginning] = ACTIONS(3091), + [sym_file_descriptor] = ACTIONS(3091), + [sym__concat] = ACTIONS(3091), + [ts_builtin_sym_end] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3093), + [anon_sym_RPAREN] = ACTIONS(3091), + [anon_sym_SEMI_SEMI] = ACTIONS(3091), + [anon_sym_PIPE_AMP] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_EQ_TILDE] = ACTIONS(3093), + [anon_sym_EQ_EQ] = ACTIONS(3093), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_GT] = ACTIONS(3093), + [anon_sym_GT_GT] = ACTIONS(3091), + [anon_sym_AMP_GT] = ACTIONS(3093), + [anon_sym_AMP_GT_GT] = ACTIONS(3091), + [anon_sym_LT_AMP] = ACTIONS(3091), + [anon_sym_GT_AMP] = ACTIONS(3091), + [anon_sym_LT_LT] = ACTIONS(3093), + [anon_sym_LT_LT_DASH] = ACTIONS(3091), + [anon_sym_LT_LT_LT] = ACTIONS(3091), + [sym__special_characters] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [anon_sym_DOLLAR] = ACTIONS(3093), + [sym_raw_string] = ACTIONS(3091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3091), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(3091), + [anon_sym_LT_LPAREN] = ACTIONS(3091), + [anon_sym_GT_LPAREN] = ACTIONS(3091), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3093), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3093), }, [943] = { - [sym__concat] = ACTIONS(853), - [anon_sym_RBRACE] = ACTIONS(853), - [anon_sym_EQ] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(855), - [sym__special_characters] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(855), - [sym_raw_string] = ACTIONS(853), - [anon_sym_POUND] = ACTIONS(853), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), - [anon_sym_COLON] = ACTIONS(855), - [anon_sym_COLON_QMARK] = ACTIONS(855), - [anon_sym_COLON_DASH] = ACTIONS(855), - [anon_sym_PERCENT] = ACTIONS(855), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), - [anon_sym_BQUOTE] = ACTIONS(853), - [anon_sym_LT_LPAREN] = ACTIONS(853), - [anon_sym_GT_LPAREN] = ACTIONS(853), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(855), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(3095), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [944] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(3033), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(3095), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [945] = { - [sym_subscript] = STATE(1402), - [sym_variable_name] = ACTIONS(3035), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_DOLLAR] = ACTIONS(3037), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_AT] = ACTIONS(3041), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_0] = ACTIONS(3039), - [anon_sym__] = ACTIONS(3039), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym_RPAREN] = ACTIONS(3095), + [anon_sym_SEMI_SEMI] = ACTIONS(3099), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3099), + [anon_sym_AMP] = ACTIONS(3099), }, [946] = { - [sym_concatenation] = STATE(1405), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1405), - [anon_sym_RBRACE] = ACTIONS(3043), - [anon_sym_EQ] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3047), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(3049), - [anon_sym_COLON] = ACTIONS(3045), - [anon_sym_COLON_QMARK] = ACTIONS(3045), - [anon_sym_COLON_DASH] = ACTIONS(3045), - [anon_sym_PERCENT] = ACTIONS(3045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(975), + [sym_string] = STATE(1414), + [sym_simple_expansion] = STATE(1414), + [sym_string_expansion] = STATE(1414), + [sym_expansion] = STATE(1414), + [sym_command_substitution] = STATE(1414), + [sym_process_substitution] = STATE(1414), + [sym__special_characters] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(3103), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3103), }, [947] = { - [sym_concatenation] = STATE(1408), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1408), - [anon_sym_RBRACE] = ACTIONS(3051), - [anon_sym_EQ] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3053), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(3057), - [anon_sym_COLON] = ACTIONS(3053), - [anon_sym_COLON_QMARK] = ACTIONS(3053), - [anon_sym_COLON_DASH] = ACTIONS(3053), - [anon_sym_PERCENT] = ACTIONS(3053), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(1964), + [sym__heredoc_body_beginning] = ACTIONS(1964), + [sym_file_descriptor] = ACTIONS(1964), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_SEMI_SEMI] = ACTIONS(1964), + [anon_sym_PIPE_AMP] = ACTIONS(1964), + [anon_sym_AMP_AMP] = ACTIONS(1964), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_LT] = ACTIONS(1966), + [anon_sym_GT] = ACTIONS(1966), + [anon_sym_GT_GT] = ACTIONS(1964), + [anon_sym_AMP_GT] = ACTIONS(1966), + [anon_sym_AMP_GT_GT] = ACTIONS(1964), + [anon_sym_LT_AMP] = ACTIONS(1964), + [anon_sym_GT_AMP] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(1966), + [anon_sym_LT_LT_DASH] = ACTIONS(1964), + [anon_sym_LT_LT_LT] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1964), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1964), + [anon_sym_AMP] = ACTIONS(1966), }, [948] = { - [sym_concatenation] = STATE(1410), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1410), - [anon_sym_RBRACE] = ACTIONS(3059), - [anon_sym_EQ] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3063), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3061), - [anon_sym_COLON_QMARK] = ACTIONS(3061), - [anon_sym_COLON_DASH] = ACTIONS(3061), - [anon_sym_PERCENT] = ACTIONS(3061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(1964), + [sym__heredoc_body_beginning] = ACTIONS(1964), + [sym_file_descriptor] = ACTIONS(1964), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_SEMI_SEMI] = ACTIONS(1964), + [anon_sym_PIPE_AMP] = ACTIONS(1964), + [anon_sym_AMP_AMP] = ACTIONS(1964), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_LT] = ACTIONS(1966), + [anon_sym_GT] = ACTIONS(1966), + [anon_sym_GT_GT] = ACTIONS(1964), + [anon_sym_AMP_GT] = ACTIONS(1966), + [anon_sym_AMP_GT_GT] = ACTIONS(1964), + [anon_sym_LT_AMP] = ACTIONS(1964), + [anon_sym_GT_AMP] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(1966), + [anon_sym_LT_LT_DASH] = ACTIONS(1964), + [anon_sym_LT_LT_LT] = ACTIONS(1964), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(1964), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1964), + [anon_sym_AMP] = ACTIONS(1966), }, [949] = { - [sym__simple_heredoc_body] = ACTIONS(3065), - [sym__heredoc_body_beginning] = ACTIONS(3065), - [sym_file_descriptor] = ACTIONS(3065), - [sym__concat] = ACTIONS(3065), - [ts_builtin_sym_end] = ACTIONS(3065), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_RPAREN] = ACTIONS(3065), - [anon_sym_SEMI_SEMI] = ACTIONS(3065), - [anon_sym_PIPE_AMP] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_PIPE_PIPE] = ACTIONS(3065), - [anon_sym_EQ_TILDE] = ACTIONS(3067), - [anon_sym_EQ_EQ] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_GT_GT] = ACTIONS(3065), - [anon_sym_AMP_GT] = ACTIONS(3067), - [anon_sym_AMP_GT_GT] = ACTIONS(3065), - [anon_sym_LT_AMP] = ACTIONS(3065), - [anon_sym_GT_AMP] = ACTIONS(3065), - [anon_sym_LT_LT] = ACTIONS(3067), - [anon_sym_LT_LT_DASH] = ACTIONS(3065), - [anon_sym_LT_LT_LT] = ACTIONS(3065), - [sym__special_characters] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [anon_sym_DOLLAR] = ACTIONS(3067), - [sym_raw_string] = ACTIONS(3065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), - [anon_sym_BQUOTE] = ACTIONS(3065), - [anon_sym_LT_LPAREN] = ACTIONS(3065), - [anon_sym_GT_LPAREN] = ACTIONS(3065), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3067), - [anon_sym_LF] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(1968), + [sym__heredoc_body_beginning] = ACTIONS(1968), + [sym_file_descriptor] = ACTIONS(1968), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(1968), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(1970), + [anon_sym_GT_GT] = ACTIONS(1968), + [anon_sym_AMP_GT] = ACTIONS(1970), + [anon_sym_AMP_GT_GT] = ACTIONS(1968), + [anon_sym_LT_AMP] = ACTIONS(1968), + [anon_sym_GT_AMP] = ACTIONS(1968), + [anon_sym_LT_LT] = ACTIONS(1970), + [anon_sym_LT_LT_DASH] = ACTIONS(1968), + [anon_sym_LT_LT_LT] = ACTIONS(1968), + [anon_sym_BQUOTE] = ACTIONS(1968), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1970), }, [950] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3059), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(1968), + [sym__heredoc_body_beginning] = ACTIONS(1968), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(1968), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(1970), + [anon_sym_LT_LT_DASH] = ACTIONS(1968), + [anon_sym_LT_LT_LT] = ACTIONS(1968), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1970), }, [951] = { - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3071), - [anon_sym_SEMI_SEMI] = ACTIONS(3073), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3069), + [aux_sym_concatenation_repeat1] = STATE(1415), + [sym__simple_heredoc_body] = ACTIONS(745), + [sym__heredoc_body_beginning] = ACTIONS(745), + [sym_file_descriptor] = ACTIONS(745), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(749), + [anon_sym_SEMI_SEMI] = ACTIONS(745), + [anon_sym_PIPE_AMP] = ACTIONS(745), + [anon_sym_AMP_AMP] = ACTIONS(745), + [anon_sym_PIPE_PIPE] = ACTIONS(745), + [anon_sym_LT] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(749), + [anon_sym_GT_GT] = ACTIONS(745), + [anon_sym_AMP_GT] = ACTIONS(749), + [anon_sym_AMP_GT_GT] = ACTIONS(745), + [anon_sym_LT_AMP] = ACTIONS(745), + [anon_sym_GT_AMP] = ACTIONS(745), + [anon_sym_LT_LT] = ACTIONS(749), + [anon_sym_LT_LT_DASH] = ACTIONS(745), + [anon_sym_LT_LT_LT] = ACTIONS(745), + [anon_sym_BQUOTE] = ACTIONS(745), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(745), + [anon_sym_AMP] = ACTIONS(749), }, [952] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3071), - [anon_sym_SEMI_SEMI] = ACTIONS(3073), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3069), + [aux_sym_concatenation_repeat1] = STATE(1415), + [sym__simple_heredoc_body] = ACTIONS(763), + [sym__heredoc_body_beginning] = ACTIONS(763), + [sym_file_descriptor] = ACTIONS(763), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_SEMI_SEMI] = ACTIONS(763), + [anon_sym_PIPE_AMP] = ACTIONS(763), + [anon_sym_AMP_AMP] = ACTIONS(763), + [anon_sym_PIPE_PIPE] = ACTIONS(763), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(763), + [anon_sym_AMP_GT] = ACTIONS(765), + [anon_sym_AMP_GT_GT] = ACTIONS(763), + [anon_sym_LT_AMP] = ACTIONS(763), + [anon_sym_GT_AMP] = ACTIONS(763), + [anon_sym_LT_LT] = ACTIONS(765), + [anon_sym_LT_LT_DASH] = ACTIONS(763), + [anon_sym_LT_LT_LT] = ACTIONS(763), + [anon_sym_BQUOTE] = ACTIONS(763), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(763), + [anon_sym_AMP] = ACTIONS(765), }, [953] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(1413), - [sym_c_style_for_statement] = STATE(1413), - [sym_while_statement] = STATE(1413), - [sym_if_statement] = STATE(1413), - [sym_case_statement] = STATE(1413), - [sym_function_definition] = STATE(1413), - [sym_subshell] = STATE(1413), - [sym_pipeline] = STATE(1413), - [sym_list] = STATE(1413), - [sym_negated_command] = STATE(1413), - [sym_test_command] = STATE(1413), - [sym_declaration_command] = STATE(1413), - [sym_unset_command] = STATE(1413), - [sym_command] = STATE(1413), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(1414), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [aux_sym_concatenation_repeat1] = STATE(1415), + [sym__simple_heredoc_body] = ACTIONS(1976), + [sym__heredoc_body_beginning] = ACTIONS(1976), + [sym_file_descriptor] = ACTIONS(1976), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_PIPE] = ACTIONS(1978), + [anon_sym_SEMI_SEMI] = ACTIONS(1976), + [anon_sym_PIPE_AMP] = ACTIONS(1976), + [anon_sym_AMP_AMP] = ACTIONS(1976), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_LT] = ACTIONS(1978), + [anon_sym_GT] = ACTIONS(1978), + [anon_sym_GT_GT] = ACTIONS(1976), + [anon_sym_AMP_GT] = ACTIONS(1978), + [anon_sym_AMP_GT_GT] = ACTIONS(1976), + [anon_sym_LT_AMP] = ACTIONS(1976), + [anon_sym_GT_AMP] = ACTIONS(1976), + [anon_sym_LT_LT] = ACTIONS(1978), + [anon_sym_LT_LT_DASH] = ACTIONS(1976), + [anon_sym_LT_LT_LT] = ACTIONS(1976), + [anon_sym_BQUOTE] = ACTIONS(1976), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1978), }, [954] = { - [anon_sym_SEMI] = ACTIONS(3075), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(3077), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(3071), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3075), + [aux_sym_concatenation_repeat1] = STATE(1415), + [sym__simple_heredoc_body] = ACTIONS(1980), + [sym__heredoc_body_beginning] = ACTIONS(1980), + [sym_file_descriptor] = ACTIONS(1980), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_SEMI_SEMI] = ACTIONS(1980), + [anon_sym_PIPE_AMP] = ACTIONS(1980), + [anon_sym_AMP_AMP] = ACTIONS(1980), + [anon_sym_PIPE_PIPE] = ACTIONS(1980), + [anon_sym_LT] = ACTIONS(1982), + [anon_sym_GT] = ACTIONS(1982), + [anon_sym_GT_GT] = ACTIONS(1980), + [anon_sym_AMP_GT] = ACTIONS(1982), + [anon_sym_AMP_GT_GT] = ACTIONS(1980), + [anon_sym_LT_AMP] = ACTIONS(1980), + [anon_sym_GT_AMP] = ACTIONS(1980), + [anon_sym_LT_LT] = ACTIONS(1982), + [anon_sym_LT_LT_DASH] = ACTIONS(1980), + [anon_sym_LT_LT_LT] = ACTIONS(1980), + [anon_sym_BQUOTE] = ACTIONS(1980), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1980), + [anon_sym_AMP] = ACTIONS(1982), }, [955] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(3075), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(3077), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(3071), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3075), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(3095), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [956] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(1416), - [sym_c_style_for_statement] = STATE(1416), - [sym_while_statement] = STATE(1416), - [sym_if_statement] = STATE(1416), - [sym_case_statement] = STATE(1416), - [sym_function_definition] = STATE(1416), - [sym_subshell] = STATE(1416), - [sym_pipeline] = STATE(1416), - [sym_list] = STATE(1416), - [sym_negated_command] = STATE(1416), - [sym_test_command] = STATE(1416), - [sym_declaration_command] = STATE(1416), - [sym_unset_command] = STATE(1416), - [sym_command] = STATE(1416), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(1417), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym_file_redirect] = STATE(956), + [sym_heredoc_redirect] = STATE(956), + [sym_herestring_redirect] = STATE(956), + [aux_sym_redirected_statement_repeat1] = STATE(956), + [sym__simple_heredoc_body] = ACTIONS(1990), + [sym__heredoc_body_beginning] = ACTIONS(1990), + [sym_file_descriptor] = ACTIONS(3105), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_SEMI_SEMI] = ACTIONS(1990), + [anon_sym_PIPE_AMP] = ACTIONS(1990), + [anon_sym_AMP_AMP] = ACTIONS(1990), + [anon_sym_PIPE_PIPE] = ACTIONS(1990), + [anon_sym_LT] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3108), + [anon_sym_GT_GT] = ACTIONS(3111), + [anon_sym_AMP_GT] = ACTIONS(3108), + [anon_sym_AMP_GT_GT] = ACTIONS(3111), + [anon_sym_LT_AMP] = ACTIONS(3111), + [anon_sym_GT_AMP] = ACTIONS(3111), + [anon_sym_LT_LT] = ACTIONS(2003), + [anon_sym_LT_LT_DASH] = ACTIONS(2006), + [anon_sym_LT_LT_LT] = ACTIONS(3114), + [anon_sym_BQUOTE] = ACTIONS(1990), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1995), }, [957] = { - [anon_sym_SEMI] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3081), - [anon_sym_SEMI_SEMI] = ACTIONS(3083), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3079), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(3095), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [958] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3081), - [anon_sym_SEMI_SEMI] = ACTIONS(3083), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_SEMI_SEMI] = ACTIONS(3119), + [anon_sym_BQUOTE] = ACTIONS(3095), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3119), }, [959] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(1420), - [sym_c_style_for_statement] = STATE(1420), - [sym_while_statement] = STATE(1420), - [sym_if_statement] = STATE(1420), - [sym_case_statement] = STATE(1420), - [sym_function_definition] = STATE(1420), - [sym_subshell] = STATE(1420), - [sym_pipeline] = STATE(1420), - [sym_list] = STATE(1420), - [sym_negated_command] = STATE(1420), - [sym_test_command] = STATE(1420), - [sym_declaration_command] = STATE(1420), - [sym_unset_command] = STATE(1420), - [sym_command] = STATE(1420), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(1421), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_concatenation] = STATE(683), + [sym_string] = STATE(279), + [sym_simple_expansion] = STATE(279), + [sym_string_expansion] = STATE(279), + [sym_expansion] = STATE(279), + [sym_command_substitution] = STATE(279), + [sym_process_substitution] = STATE(279), + [aux_sym_command_repeat2] = STATE(683), + [sym__simple_heredoc_body] = ACTIONS(2058), + [sym__heredoc_body_beginning] = ACTIONS(2058), + [sym_file_descriptor] = ACTIONS(2058), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_SEMI_SEMI] = ACTIONS(2058), + [anon_sym_PIPE_AMP] = ACTIONS(2058), + [anon_sym_AMP_AMP] = ACTIONS(2058), + [anon_sym_PIPE_PIPE] = ACTIONS(2058), + [anon_sym_EQ_TILDE] = ACTIONS(513), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(2060), + [anon_sym_GT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2058), + [anon_sym_AMP_GT] = ACTIONS(2060), + [anon_sym_AMP_GT_GT] = ACTIONS(2058), + [anon_sym_LT_AMP] = ACTIONS(2058), + [anon_sym_GT_AMP] = ACTIONS(2058), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_LT_LT_DASH] = ACTIONS(2058), + [anon_sym_LT_LT_LT] = ACTIONS(2058), + [sym__special_characters] = ACTIONS(515), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(2058), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(519), + [anon_sym_LF] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2060), }, [960] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_EQ] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [sym__special_characters] = ACTIONS(3090), - [anon_sym_DQUOTE] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3096), - [sym_raw_string] = ACTIONS(3099), - [anon_sym_POUND] = ACTIONS(3102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3105), - [anon_sym_COLON] = ACTIONS(3087), - [anon_sym_COLON_QMARK] = ACTIONS(3087), - [anon_sym_COLON_DASH] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3108), - [anon_sym_BQUOTE] = ACTIONS(3111), - [anon_sym_LT_LPAREN] = ACTIONS(3114), - [anon_sym_GT_LPAREN] = ACTIONS(3114), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(3117), + [sym__simple_heredoc_body] = ACTIONS(3121), + [sym__heredoc_body_beginning] = ACTIONS(3121), + [sym_file_descriptor] = ACTIONS(3121), + [sym__concat] = ACTIONS(3121), + [ts_builtin_sym_end] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_PIPE] = ACTIONS(3123), + [anon_sym_RPAREN] = ACTIONS(3121), + [anon_sym_SEMI_SEMI] = ACTIONS(3121), + [anon_sym_PIPE_AMP] = ACTIONS(3121), + [anon_sym_AMP_AMP] = ACTIONS(3121), + [anon_sym_PIPE_PIPE] = ACTIONS(3121), + [anon_sym_EQ_TILDE] = ACTIONS(3123), + [anon_sym_EQ_EQ] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3123), + [anon_sym_GT] = ACTIONS(3123), + [anon_sym_GT_GT] = ACTIONS(3121), + [anon_sym_AMP_GT] = ACTIONS(3123), + [anon_sym_AMP_GT_GT] = ACTIONS(3121), + [anon_sym_LT_AMP] = ACTIONS(3121), + [anon_sym_GT_AMP] = ACTIONS(3121), + [anon_sym_LT_LT] = ACTIONS(3123), + [anon_sym_LT_LT_DASH] = ACTIONS(3121), + [anon_sym_LT_LT_LT] = ACTIONS(3121), + [sym__special_characters] = ACTIONS(3121), + [anon_sym_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3123), + [sym_raw_string] = ACTIONS(3121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3121), + [anon_sym_BQUOTE] = ACTIONS(3121), + [anon_sym_LT_LPAREN] = ACTIONS(3121), + [anon_sym_GT_LPAREN] = ACTIONS(3121), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3123), + [anon_sym_LF] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), }, [961] = { - [sym_concatenation] = STATE(1394), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1394), - [anon_sym_RBRACE] = ACTIONS(2993), - [anon_sym_EQ] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3023), - [anon_sym_COLON_QMARK] = ACTIONS(3023), - [anon_sym_COLON_DASH] = ACTIONS(3023), - [anon_sym_PERCENT] = ACTIONS(3023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(3125), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [962] = { - [sym__simple_heredoc_body] = ACTIONS(3120), - [sym__heredoc_body_beginning] = ACTIONS(3120), - [sym_file_descriptor] = ACTIONS(3120), - [sym__concat] = ACTIONS(3120), - [ts_builtin_sym_end] = ACTIONS(3120), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_RPAREN] = ACTIONS(3120), - [anon_sym_SEMI_SEMI] = ACTIONS(3120), - [anon_sym_PIPE_AMP] = ACTIONS(3120), - [anon_sym_AMP_AMP] = ACTIONS(3120), - [anon_sym_PIPE_PIPE] = ACTIONS(3120), - [anon_sym_EQ_TILDE] = ACTIONS(3122), - [anon_sym_EQ_EQ] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_GT] = ACTIONS(3122), - [anon_sym_GT_GT] = ACTIONS(3120), - [anon_sym_AMP_GT] = ACTIONS(3122), - [anon_sym_AMP_GT_GT] = ACTIONS(3120), - [anon_sym_LT_AMP] = ACTIONS(3120), - [anon_sym_GT_AMP] = ACTIONS(3120), - [anon_sym_LT_LT] = ACTIONS(3122), - [anon_sym_LT_LT_DASH] = ACTIONS(3120), - [anon_sym_LT_LT_LT] = ACTIONS(3120), - [sym__special_characters] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [sym_raw_string] = ACTIONS(3120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), - [anon_sym_BQUOTE] = ACTIONS(3120), - [anon_sym_LT_LPAREN] = ACTIONS(3120), - [anon_sym_GT_LPAREN] = ACTIONS(3120), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3122), - [anon_sym_LF] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3122), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(3125), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [963] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_RPAREN] = ACTIONS(3125), + [anon_sym_SEMI_SEMI] = ACTIONS(3129), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3129), + [anon_sym_AMP] = ACTIONS(3129), }, [964] = { - [sym_file_redirect] = STATE(1426), - [sym_heredoc_redirect] = STATE(1426), - [sym_herestring_redirect] = STATE(1426), - [aux_sym_while_statement_repeat1] = STATE(1426), - [sym_file_descriptor] = ACTIONS(3126), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_SEMI_SEMI] = ACTIONS(1300), - [anon_sym_PIPE_AMP] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_GT] = ACTIONS(3128), - [anon_sym_GT_GT] = ACTIONS(3130), - [anon_sym_AMP_GT] = ACTIONS(3128), - [anon_sym_AMP_GT_GT] = ACTIONS(3130), - [anon_sym_LT_AMP] = ACTIONS(3130), - [anon_sym_GT_AMP] = ACTIONS(3130), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_LT_LT_DASH] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(3132), - [anon_sym_BQUOTE] = ACTIONS(1300), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1302), + [sym__simple_heredoc_body] = ACTIONS(3131), + [sym__heredoc_body_beginning] = ACTIONS(3131), + [sym_file_descriptor] = ACTIONS(3131), + [ts_builtin_sym_end] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3133), + [anon_sym_esac] = ACTIONS(3131), + [anon_sym_PIPE] = ACTIONS(3133), + [anon_sym_RPAREN] = ACTIONS(3131), + [anon_sym_SEMI_SEMI] = ACTIONS(3131), + [anon_sym_PIPE_AMP] = ACTIONS(3131), + [anon_sym_AMP_AMP] = ACTIONS(3131), + [anon_sym_PIPE_PIPE] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_GT_GT] = ACTIONS(3131), + [anon_sym_AMP_GT] = ACTIONS(3133), + [anon_sym_AMP_GT_GT] = ACTIONS(3131), + [anon_sym_LT_AMP] = ACTIONS(3131), + [anon_sym_GT_AMP] = ACTIONS(3131), + [anon_sym_LT_LT] = ACTIONS(3133), + [anon_sym_LT_LT_DASH] = ACTIONS(3131), + [anon_sym_LT_LT_LT] = ACTIONS(3131), + [anon_sym_BQUOTE] = ACTIONS(3131), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3131), + [anon_sym_AMP] = ACTIONS(3133), }, [965] = { - [sym_file_redirect] = STATE(1427), - [sym_heredoc_redirect] = STATE(1427), - [sym_heredoc_body] = STATE(699), - [sym_herestring_redirect] = STATE(1427), - [aux_sym_while_statement_repeat1] = STATE(1427), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1340), - [anon_sym_SEMI_SEMI] = ACTIONS(1338), - [anon_sym_PIPE_AMP] = ACTIONS(1338), - [anon_sym_AMP_AMP] = ACTIONS(1338), - [anon_sym_PIPE_PIPE] = ACTIONS(1338), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(929), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(933), - [anon_sym_BQUOTE] = ACTIONS(1338), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1340), + [sym__heredoc_body_middle] = ACTIONS(817), + [sym__heredoc_body_end] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [sym_comment] = ACTIONS(57), }, [966] = { - [anon_sym_RPAREN] = ACTIONS(3134), - [sym_comment] = ACTIONS(55), + [sym__heredoc_body_middle] = ACTIONS(825), + [sym__heredoc_body_end] = ACTIONS(825), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(825), + [sym_comment] = ACTIONS(57), }, [967] = { - [sym_file_redirect] = STATE(756), - [sym_file_descriptor] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_SEMI_SEMI] = ACTIONS(1430), - [anon_sym_PIPE_AMP] = ACTIONS(1430), - [anon_sym_AMP_AMP] = ACTIONS(1430), - [anon_sym_PIPE_PIPE] = ACTIONS(1430), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_GT] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3140), - [anon_sym_AMP_GT] = ACTIONS(3138), - [anon_sym_AMP_GT_GT] = ACTIONS(3140), - [anon_sym_LT_AMP] = ACTIONS(3140), - [anon_sym_GT_AMP] = ACTIONS(3140), - [anon_sym_BQUOTE] = ACTIONS(1430), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(3135), + [sym_comment] = ACTIONS(57), }, [968] = { - [sym_compound_statement] = STATE(1431), - [anon_sym_LBRACE] = ACTIONS(595), - [sym_comment] = ACTIONS(55), + [sym_subscript] = STATE(1422), + [sym_variable_name] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3139), + [anon_sym_DOLLAR] = ACTIONS(3139), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_AT] = ACTIONS(3143), + [anon_sym_QMARK] = ACTIONS(3143), + [anon_sym_0] = ACTIONS(3141), + [anon_sym__] = ACTIONS(3141), }, [969] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_SEMI_SEMI] = ACTIONS(1967), - [anon_sym_PIPE_AMP] = ACTIONS(1967), - [anon_sym_AMP_AMP] = ACTIONS(1967), - [anon_sym_PIPE_PIPE] = ACTIONS(1967), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(1967), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1969), + [sym_concatenation] = STATE(1425), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1425), + [anon_sym_RBRACE] = ACTIONS(3145), + [anon_sym_EQ] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3149), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(3151), + [anon_sym_COLON] = ACTIONS(3147), + [anon_sym_COLON_QMARK] = ACTIONS(3147), + [anon_sym_COLON_DASH] = ACTIONS(3147), + [anon_sym_PERCENT] = ACTIONS(3147), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [970] = { - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(1971), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1971), - [anon_sym_BQUOTE] = ACTIONS(1971), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1973), + [sym_concatenation] = STATE(1428), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1428), + [anon_sym_RBRACE] = ACTIONS(3153), + [anon_sym_EQ] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(3159), + [anon_sym_COLON] = ACTIONS(3155), + [anon_sym_COLON_QMARK] = ACTIONS(3155), + [anon_sym_COLON_DASH] = ACTIONS(3155), + [anon_sym_PERCENT] = ACTIONS(3155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [971] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(1971), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1973), + [ts_builtin_sym_end] = ACTIONS(3161), + [anon_sym_SEMI] = ACTIONS(3163), + [anon_sym_RPAREN] = ACTIONS(3161), + [anon_sym_SEMI_SEMI] = ACTIONS(3161), + [anon_sym_BQUOTE] = ACTIONS(3161), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3161), }, [972] = { - [sym_concatenation] = STATE(994), + [sym_simple_expansion] = STATE(972), + [sym_expansion] = STATE(972), + [aux_sym_heredoc_body_repeat1] = STATE(972), + [sym__heredoc_body_middle] = ACTIONS(3165), + [sym__heredoc_body_end] = ACTIONS(3168), + [anon_sym_DOLLAR] = ACTIONS(3170), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3173), + [sym_comment] = ACTIONS(57), + }, + [973] = { + [aux_sym_concatenation_repeat1] = STATE(976), + [sym__simple_heredoc_body] = ACTIONS(1067), + [sym__heredoc_body_beginning] = ACTIONS(1067), + [sym_file_descriptor] = ACTIONS(1067), + [sym__concat] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1067), + [anon_sym_SEMI] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1069), + [anon_sym_SEMI_SEMI] = ACTIONS(1067), + [anon_sym_PIPE_AMP] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1067), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1069), + [anon_sym_GT] = ACTIONS(1069), + [anon_sym_GT_GT] = ACTIONS(1067), + [anon_sym_AMP_GT] = ACTIONS(1069), + [anon_sym_AMP_GT_GT] = ACTIONS(1067), + [anon_sym_LT_AMP] = ACTIONS(1067), + [anon_sym_GT_AMP] = ACTIONS(1067), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_LT_LT_DASH] = ACTIONS(1067), + [anon_sym_LT_LT_LT] = ACTIONS(1067), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), + }, + [974] = { + [aux_sym_concatenation_repeat1] = STATE(976), + [sym__simple_heredoc_body] = ACTIONS(1071), + [sym__heredoc_body_beginning] = ACTIONS(1071), + [sym_file_descriptor] = ACTIONS(1071), + [sym__concat] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(1071), + [anon_sym_SEMI] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_SEMI_SEMI] = ACTIONS(1071), + [anon_sym_PIPE_AMP] = ACTIONS(1071), + [anon_sym_AMP_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1071), + [anon_sym_LT] = ACTIONS(1073), + [anon_sym_GT] = ACTIONS(1073), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_AMP_GT] = ACTIONS(1073), + [anon_sym_AMP_GT_GT] = ACTIONS(1071), + [anon_sym_LT_AMP] = ACTIONS(1071), + [anon_sym_GT_AMP] = ACTIONS(1071), + [anon_sym_LT_LT] = ACTIONS(1073), + [anon_sym_LT_LT_DASH] = ACTIONS(1071), + [anon_sym_LT_LT_LT] = ACTIONS(1071), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), + }, + [975] = { + [sym__simple_heredoc_body] = ACTIONS(1071), + [sym__heredoc_body_beginning] = ACTIONS(1071), + [sym_file_descriptor] = ACTIONS(1071), + [ts_builtin_sym_end] = ACTIONS(1071), + [anon_sym_SEMI] = ACTIONS(1073), + [anon_sym_esac] = ACTIONS(1071), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1071), + [anon_sym_SEMI_SEMI] = ACTIONS(1071), + [anon_sym_PIPE_AMP] = ACTIONS(1071), + [anon_sym_AMP_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1071), + [anon_sym_LT] = ACTIONS(1073), + [anon_sym_GT] = ACTIONS(1073), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_AMP_GT] = ACTIONS(1073), + [anon_sym_AMP_GT_GT] = ACTIONS(1071), + [anon_sym_LT_AMP] = ACTIONS(1071), + [anon_sym_GT_AMP] = ACTIONS(1071), + [anon_sym_LT_LT] = ACTIONS(1073), + [anon_sym_LT_LT_DASH] = ACTIONS(1071), + [anon_sym_LT_LT_LT] = ACTIONS(1071), + [anon_sym_BQUOTE] = ACTIONS(1071), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), + }, + [976] = { + [aux_sym_concatenation_repeat1] = STATE(1429), + [sym__simple_heredoc_body] = ACTIONS(779), + [sym__heredoc_body_beginning] = ACTIONS(779), + [sym_file_descriptor] = ACTIONS(779), + [sym__concat] = ACTIONS(249), + [ts_builtin_sym_end] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [anon_sym_PIPE_AMP] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_AMP_GT] = ACTIONS(781), + [anon_sym_AMP_GT_GT] = ACTIONS(779), + [anon_sym_LT_AMP] = ACTIONS(779), + [anon_sym_GT_AMP] = ACTIONS(779), + [anon_sym_LT_LT] = ACTIONS(781), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_LT] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(781), + }, + [977] = { + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [ts_builtin_sym_end] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), + }, + [978] = { + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_done] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_fi] = ACTIONS(931), + [anon_sym_elif] = ACTIONS(931), + [anon_sym_else] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(927), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), + }, + [979] = { + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym_SEMI_SEMI] = ACTIONS(3180), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3180), + }, + [980] = { + [sym__concat] = ACTIONS(3182), + [anon_sym_EQ] = ACTIONS(3184), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [sym_comment] = ACTIONS(57), + }, + [981] = { + [anon_sym_EQ] = ACTIONS(3184), + [anon_sym_PLUS_EQ] = ACTIONS(3184), + [sym_comment] = ACTIONS(57), + }, + [982] = { + [aux_sym_concatenation_repeat1] = STATE(982), + [sym__concat] = ACTIONS(2614), + [anon_sym_RBRACK] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + }, + [983] = { + [sym__concat] = ACTIONS(3186), + [anon_sym_EQ] = ACTIONS(3188), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [sym_comment] = ACTIONS(57), + }, + [984] = { + [anon_sym_EQ] = ACTIONS(3188), + [anon_sym_PLUS_EQ] = ACTIONS(3188), + [sym_comment] = ACTIONS(57), + }, + [985] = { [sym_string] = STATE(1433), [sym_simple_expansion] = STATE(1433), [sym_string_expansion] = STATE(1433), [sym_expansion] = STATE(1433), [sym_command_substitution] = STATE(1433), [sym_process_substitution] = STATE(1433), - [sym__special_characters] = ACTIONS(3142), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(3144), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3144), - }, - [973] = { - [aux_sym_concatenation_repeat1] = STATE(1434), - [sym__simple_heredoc_body] = ACTIONS(773), - [sym__heredoc_body_beginning] = ACTIONS(773), - [sym_file_descriptor] = ACTIONS(773), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(773), - [anon_sym_AMP_GT] = ACTIONS(777), - [anon_sym_AMP_GT_GT] = ACTIONS(773), - [anon_sym_LT_AMP] = ACTIONS(773), - [anon_sym_GT_AMP] = ACTIONS(773), - [anon_sym_LT_LT] = ACTIONS(777), - [anon_sym_LT_LT_DASH] = ACTIONS(773), - [anon_sym_LT_LT_LT] = ACTIONS(773), - [anon_sym_BQUOTE] = ACTIONS(773), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(777), - }, - [974] = { - [aux_sym_concatenation_repeat1] = STATE(1434), - [sym__simple_heredoc_body] = ACTIONS(791), - [sym__heredoc_body_beginning] = ACTIONS(791), - [sym_file_descriptor] = ACTIONS(791), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_SEMI_SEMI] = ACTIONS(791), - [anon_sym_PIPE_AMP] = ACTIONS(791), - [anon_sym_AMP_AMP] = ACTIONS(791), - [anon_sym_PIPE_PIPE] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_GT_GT] = ACTIONS(791), - [anon_sym_AMP_GT] = ACTIONS(793), - [anon_sym_AMP_GT_GT] = ACTIONS(791), - [anon_sym_LT_AMP] = ACTIONS(791), - [anon_sym_GT_AMP] = ACTIONS(791), - [anon_sym_LT_LT] = ACTIONS(793), - [anon_sym_LT_LT_DASH] = ACTIONS(791), - [anon_sym_LT_LT_LT] = ACTIONS(791), - [anon_sym_BQUOTE] = ACTIONS(791), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_AMP] = ACTIONS(793), - }, - [975] = { - [aux_sym_concatenation_repeat1] = STATE(1434), - [sym__simple_heredoc_body] = ACTIONS(2015), - [sym__heredoc_body_beginning] = ACTIONS(2015), - [sym_file_descriptor] = ACTIONS(2015), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(2017), - [anon_sym_PIPE] = ACTIONS(2017), - [anon_sym_SEMI_SEMI] = ACTIONS(2015), - [anon_sym_PIPE_AMP] = ACTIONS(2015), - [anon_sym_AMP_AMP] = ACTIONS(2015), - [anon_sym_PIPE_PIPE] = ACTIONS(2015), - [anon_sym_LT] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2017), - [anon_sym_GT_GT] = ACTIONS(2015), - [anon_sym_AMP_GT] = ACTIONS(2017), - [anon_sym_AMP_GT_GT] = ACTIONS(2015), - [anon_sym_LT_AMP] = ACTIONS(2015), - [anon_sym_GT_AMP] = ACTIONS(2015), - [anon_sym_LT_LT] = ACTIONS(2017), - [anon_sym_LT_LT_DASH] = ACTIONS(2015), - [anon_sym_LT_LT_LT] = ACTIONS(2015), - [anon_sym_BQUOTE] = ACTIONS(2015), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2017), - }, - [976] = { - [aux_sym_concatenation_repeat1] = STATE(1434), - [sym__simple_heredoc_body] = ACTIONS(2019), - [sym__heredoc_body_beginning] = ACTIONS(2019), - [sym_file_descriptor] = ACTIONS(2019), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_SEMI_SEMI] = ACTIONS(2019), - [anon_sym_PIPE_AMP] = ACTIONS(2019), - [anon_sym_AMP_AMP] = ACTIONS(2019), - [anon_sym_PIPE_PIPE] = ACTIONS(2019), - [anon_sym_LT] = ACTIONS(2021), - [anon_sym_GT] = ACTIONS(2021), - [anon_sym_GT_GT] = ACTIONS(2019), - [anon_sym_AMP_GT] = ACTIONS(2021), - [anon_sym_AMP_GT_GT] = ACTIONS(2019), - [anon_sym_LT_AMP] = ACTIONS(2019), - [anon_sym_GT_AMP] = ACTIONS(2019), - [anon_sym_LT_LT] = ACTIONS(2021), - [anon_sym_LT_LT_DASH] = ACTIONS(2019), - [anon_sym_LT_LT_LT] = ACTIONS(2019), - [anon_sym_BQUOTE] = ACTIONS(2019), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2019), - [anon_sym_AMP] = ACTIONS(2021), - }, - [977] = { - [sym_file_redirect] = STATE(977), - [sym_heredoc_redirect] = STATE(977), - [sym_herestring_redirect] = STATE(977), - [aux_sym_while_statement_repeat1] = STATE(977), - [sym__simple_heredoc_body] = ACTIONS(2027), - [sym__heredoc_body_beginning] = ACTIONS(2027), - [sym_file_descriptor] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2027), - [anon_sym_PIPE_AMP] = ACTIONS(2027), - [anon_sym_AMP_AMP] = ACTIONS(2027), - [anon_sym_PIPE_PIPE] = ACTIONS(2027), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_GT_GT] = ACTIONS(3152), - [anon_sym_AMP_GT] = ACTIONS(3149), - [anon_sym_AMP_GT_GT] = ACTIONS(3152), - [anon_sym_LT_AMP] = ACTIONS(3152), - [anon_sym_GT_AMP] = ACTIONS(3152), - [anon_sym_LT_LT] = ACTIONS(2040), - [anon_sym_LT_LT_DASH] = ACTIONS(2043), - [anon_sym_LT_LT_LT] = ACTIONS(3155), - [anon_sym_BQUOTE] = ACTIONS(2027), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(2032), - }, - [978] = { - [sym_file_redirect] = STATE(977), - [sym_heredoc_redirect] = STATE(977), - [sym_heredoc_body] = STATE(996), - [sym_herestring_redirect] = STATE(977), - [aux_sym_while_statement_repeat1] = STATE(977), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_SEMI_SEMI] = ACTIONS(2023), - [anon_sym_PIPE_AMP] = ACTIONS(2023), - [anon_sym_AMP_AMP] = ACTIONS(2023), - [anon_sym_PIPE_PIPE] = ACTIONS(2023), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(929), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(933), - [anon_sym_BQUOTE] = ACTIONS(2023), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2025), - }, - [979] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(3124), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), - }, - [980] = { - [sym_file_redirect] = STATE(1435), - [sym_heredoc_redirect] = STATE(1435), - [sym_heredoc_body] = STATE(996), - [sym_herestring_redirect] = STATE(1435), - [sym_concatenation] = STATE(712), - [sym_string] = STATE(294), - [sym_simple_expansion] = STATE(294), - [sym_string_expansion] = STATE(294), - [sym_expansion] = STATE(294), - [sym_command_substitution] = STATE(294), - [sym_process_substitution] = STATE(294), - [aux_sym_while_statement_repeat1] = STATE(1435), - [aux_sym_command_repeat2] = STATE(712), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_SEMI_SEMI] = ACTIONS(2023), - [anon_sym_PIPE_AMP] = ACTIONS(2023), - [anon_sym_AMP_AMP] = ACTIONS(2023), - [anon_sym_PIPE_PIPE] = ACTIONS(2023), - [anon_sym_EQ_TILDE] = ACTIONS(539), - [anon_sym_EQ_EQ] = ACTIONS(539), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(929), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(933), - [sym__special_characters] = ACTIONS(547), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(549), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(2023), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(551), - [anon_sym_LF] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2025), - }, - [981] = { - [sym__simple_heredoc_body] = ACTIONS(3158), - [sym__heredoc_body_beginning] = ACTIONS(3158), - [sym_file_descriptor] = ACTIONS(3158), - [sym__concat] = ACTIONS(3158), - [ts_builtin_sym_end] = ACTIONS(3158), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_PIPE] = ACTIONS(3160), - [anon_sym_RPAREN] = ACTIONS(3158), - [anon_sym_SEMI_SEMI] = ACTIONS(3158), - [anon_sym_PIPE_AMP] = ACTIONS(3158), - [anon_sym_AMP_AMP] = ACTIONS(3158), - [anon_sym_PIPE_PIPE] = ACTIONS(3158), - [anon_sym_EQ_TILDE] = ACTIONS(3160), - [anon_sym_EQ_EQ] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3160), - [anon_sym_GT] = ACTIONS(3160), - [anon_sym_GT_GT] = ACTIONS(3158), - [anon_sym_AMP_GT] = ACTIONS(3160), - [anon_sym_AMP_GT_GT] = ACTIONS(3158), - [anon_sym_LT_AMP] = ACTIONS(3158), - [anon_sym_GT_AMP] = ACTIONS(3158), - [anon_sym_LT_LT] = ACTIONS(3160), - [anon_sym_LT_LT_DASH] = ACTIONS(3158), - [anon_sym_LT_LT_LT] = ACTIONS(3158), - [sym__special_characters] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [anon_sym_DOLLAR] = ACTIONS(3160), - [sym_raw_string] = ACTIONS(3158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), - [anon_sym_BQUOTE] = ACTIONS(3158), - [anon_sym_LT_LPAREN] = ACTIONS(3158), - [anon_sym_GT_LPAREN] = ACTIONS(3158), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3160), - [anon_sym_LF] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), - }, - [982] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), - }, - [983] = { - [sym_file_redirect] = STATE(1437), - [sym_file_descriptor] = ACTIONS(1428), - [ts_builtin_sym_end] = ACTIONS(2612), - [anon_sym_SEMI] = ACTIONS(2614), - [anon_sym_PIPE] = ACTIONS(2614), - [anon_sym_SEMI_SEMI] = ACTIONS(2612), - [anon_sym_PIPE_AMP] = ACTIONS(2612), - [anon_sym_AMP_AMP] = ACTIONS(2612), - [anon_sym_PIPE_PIPE] = ACTIONS(2612), - [anon_sym_LT] = ACTIONS(1434), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_GT_GT] = ACTIONS(1436), - [anon_sym_AMP_GT] = ACTIONS(1434), - [anon_sym_AMP_GT_GT] = ACTIONS(1436), - [anon_sym_LT_AMP] = ACTIONS(1436), - [anon_sym_GT_AMP] = ACTIONS(1436), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2612), - [anon_sym_AMP] = ACTIONS(2614), - }, - [984] = { - [sym__heredoc_body_middle] = ACTIONS(845), - [sym__heredoc_body_end] = ACTIONS(845), - [anon_sym_DOLLAR] = ACTIONS(847), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(55), - }, - [985] = { - [sym__heredoc_body_middle] = ACTIONS(853), - [sym__heredoc_body_end] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(855), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), - [sym_comment] = ACTIONS(55), + [sym__special_characters] = ACTIONS(3190), + [anon_sym_DQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1095), + [sym_raw_string] = ACTIONS(3190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1099), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1103), + [anon_sym_LT_LPAREN] = ACTIONS(1105), + [anon_sym_GT_LPAREN] = ACTIONS(1105), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3190), }, [986] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(3164), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(1434), + [sym__concat] = ACTIONS(2080), + [anon_sym_RPAREN] = ACTIONS(779), + [sym__special_characters] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(781), + [sym_raw_string] = ACTIONS(779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(779), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(779), }, [987] = { - [sym_subscript] = STATE(1441), - [sym_variable_name] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3168), - [anon_sym_DOLLAR] = ACTIONS(3168), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3170), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_AT] = ACTIONS(3172), - [anon_sym_QMARK] = ACTIONS(3172), - [anon_sym_0] = ACTIONS(3170), - [anon_sym__] = ACTIONS(3170), + [sym__concat] = ACTIONS(783), + [anon_sym_RPAREN] = ACTIONS(783), + [sym__special_characters] = ACTIONS(783), + [anon_sym_DQUOTE] = ACTIONS(783), + [anon_sym_DOLLAR] = ACTIONS(785), + [sym_raw_string] = ACTIONS(783), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(783), + [anon_sym_BQUOTE] = ACTIONS(783), + [anon_sym_LT_LPAREN] = ACTIONS(783), + [anon_sym_GT_LPAREN] = ACTIONS(783), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(783), }, [988] = { - [sym_concatenation] = STATE(1444), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1444), - [anon_sym_RBRACE] = ACTIONS(3174), - [anon_sym_EQ] = ACTIONS(3176), - [anon_sym_DASH] = ACTIONS(3176), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3178), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(3180), - [anon_sym_COLON] = ACTIONS(3176), - [anon_sym_COLON_QMARK] = ACTIONS(3176), - [anon_sym_COLON_DASH] = ACTIONS(3176), - [anon_sym_PERCENT] = ACTIONS(3176), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(3192), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [989] = { - [sym_concatenation] = STATE(1447), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1447), - [anon_sym_RBRACE] = ACTIONS(3182), - [anon_sym_EQ] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3184), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(3188), - [anon_sym_COLON] = ACTIONS(3184), - [anon_sym_COLON_QMARK] = ACTIONS(3184), - [anon_sym_COLON_DASH] = ACTIONS(3184), - [anon_sym_PERCENT] = ACTIONS(3184), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(455), + [anon_sym_DQUOTE] = ACTIONS(3192), + [anon_sym_DOLLAR] = ACTIONS(3194), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [990] = { - [ts_builtin_sym_end] = ACTIONS(3190), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym_esac] = ACTIONS(3190), - [anon_sym_PIPE] = ACTIONS(3192), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_SEMI_SEMI] = ACTIONS(3190), - [anon_sym_PIPE_AMP] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [anon_sym_BQUOTE] = ACTIONS(3190), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3190), - [anon_sym_AMP] = ACTIONS(3192), + [sym__concat] = ACTIONS(817), + [anon_sym_RPAREN] = ACTIONS(817), + [sym__special_characters] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(817), }, [991] = { - [sym_simple_expansion] = STATE(991), - [sym_expansion] = STATE(991), - [aux_sym_heredoc_body_repeat1] = STATE(991), - [sym__heredoc_body_middle] = ACTIONS(3194), - [sym__heredoc_body_end] = ACTIONS(3197), - [anon_sym_DOLLAR] = ACTIONS(3199), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3202), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(821), + [anon_sym_RPAREN] = ACTIONS(821), + [sym__special_characters] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(823), + [sym_raw_string] = ACTIONS(821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(821), + [anon_sym_BQUOTE] = ACTIONS(821), + [anon_sym_LT_LPAREN] = ACTIONS(821), + [anon_sym_GT_LPAREN] = ACTIONS(821), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(821), }, [992] = { - [aux_sym_concatenation_repeat1] = STATE(995), - [sym__simple_heredoc_body] = ACTIONS(1088), - [sym__heredoc_body_beginning] = ACTIONS(1088), - [sym_file_descriptor] = ACTIONS(1088), - [sym__concat] = ACTIONS(265), - [ts_builtin_sym_end] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1090), - [anon_sym_SEMI_SEMI] = ACTIONS(1088), - [anon_sym_PIPE_AMP] = ACTIONS(1088), - [anon_sym_AMP_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1088), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(1090), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_AMP_GT] = ACTIONS(1090), - [anon_sym_AMP_GT_GT] = ACTIONS(1088), - [anon_sym_LT_AMP] = ACTIONS(1088), - [anon_sym_GT_AMP] = ACTIONS(1088), - [anon_sym_LT_LT] = ACTIONS(1090), - [anon_sym_LT_LT_DASH] = ACTIONS(1088), - [anon_sym_LT_LT_LT] = ACTIONS(1088), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), + [sym__concat] = ACTIONS(825), + [anon_sym_RPAREN] = ACTIONS(825), + [sym__special_characters] = ACTIONS(825), + [anon_sym_DQUOTE] = ACTIONS(825), + [anon_sym_DOLLAR] = ACTIONS(827), + [sym_raw_string] = ACTIONS(825), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(825), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_LT_LPAREN] = ACTIONS(825), + [anon_sym_GT_LPAREN] = ACTIONS(825), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(825), }, [993] = { - [aux_sym_concatenation_repeat1] = STATE(995), - [sym__simple_heredoc_body] = ACTIONS(1092), - [sym__heredoc_body_beginning] = ACTIONS(1092), - [sym_file_descriptor] = ACTIONS(1092), - [sym__concat] = ACTIONS(265), - [ts_builtin_sym_end] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_SEMI_SEMI] = ACTIONS(1092), - [anon_sym_PIPE_AMP] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_LT] = ACTIONS(1094), - [anon_sym_GT] = ACTIONS(1094), - [anon_sym_GT_GT] = ACTIONS(1092), - [anon_sym_AMP_GT] = ACTIONS(1094), - [anon_sym_AMP_GT_GT] = ACTIONS(1092), - [anon_sym_LT_AMP] = ACTIONS(1092), - [anon_sym_GT_AMP] = ACTIONS(1092), - [anon_sym_LT_LT] = ACTIONS(1094), - [anon_sym_LT_LT_DASH] = ACTIONS(1092), - [anon_sym_LT_LT_LT] = ACTIONS(1092), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1092), - [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(3196), + [sym_comment] = ACTIONS(57), }, [994] = { - [sym__simple_heredoc_body] = ACTIONS(1092), - [sym__heredoc_body_beginning] = ACTIONS(1092), - [sym_file_descriptor] = ACTIONS(1092), - [ts_builtin_sym_end] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_esac] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_RPAREN] = ACTIONS(1092), - [anon_sym_SEMI_SEMI] = ACTIONS(1092), - [anon_sym_PIPE_AMP] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_LT] = ACTIONS(1094), - [anon_sym_GT] = ACTIONS(1094), - [anon_sym_GT_GT] = ACTIONS(1092), - [anon_sym_AMP_GT] = ACTIONS(1094), - [anon_sym_AMP_GT_GT] = ACTIONS(1092), - [anon_sym_LT_AMP] = ACTIONS(1092), - [anon_sym_GT_AMP] = ACTIONS(1092), - [anon_sym_LT_LT] = ACTIONS(1094), - [anon_sym_LT_LT_DASH] = ACTIONS(1092), - [anon_sym_LT_LT_LT] = ACTIONS(1092), - [anon_sym_BQUOTE] = ACTIONS(1092), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1092), - [anon_sym_AMP] = ACTIONS(1094), + [sym_subscript] = STATE(1440), + [sym_variable_name] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3200), + [anon_sym_DOLLAR] = ACTIONS(3200), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3204), + [anon_sym_QMARK] = ACTIONS(3204), + [anon_sym_0] = ACTIONS(3202), + [anon_sym__] = ACTIONS(3202), }, [995] = { - [aux_sym_concatenation_repeat1] = STATE(1448), - [sym__simple_heredoc_body] = ACTIONS(807), - [sym__heredoc_body_beginning] = ACTIONS(807), - [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(265), - [ts_builtin_sym_end] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(809), - [anon_sym_AMP_GT_GT] = ACTIONS(807), - [anon_sym_LT_AMP] = ACTIONS(807), - [anon_sym_GT_AMP] = ACTIONS(807), - [anon_sym_LT_LT] = ACTIONS(809), - [anon_sym_LT_LT_DASH] = ACTIONS(807), - [anon_sym_LT_LT_LT] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), + [sym_concatenation] = STATE(1443), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1443), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_EQ] = ACTIONS(3208), + [anon_sym_DASH] = ACTIONS(3208), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3210), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(3212), + [anon_sym_COLON] = ACTIONS(3208), + [anon_sym_COLON_QMARK] = ACTIONS(3208), + [anon_sym_COLON_DASH] = ACTIONS(3208), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [996] = { - [ts_builtin_sym_end] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3207), - [anon_sym_esac] = ACTIONS(3205), - [anon_sym_PIPE] = ACTIONS(3207), - [anon_sym_RPAREN] = ACTIONS(3205), - [anon_sym_SEMI_SEMI] = ACTIONS(3205), - [anon_sym_PIPE_AMP] = ACTIONS(3205), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_PIPE_PIPE] = ACTIONS(3205), - [anon_sym_BQUOTE] = ACTIONS(3205), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3207), + [sym_concatenation] = STATE(1446), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1446), + [anon_sym_RBRACE] = ACTIONS(3214), + [anon_sym_EQ] = ACTIONS(3216), + [anon_sym_DASH] = ACTIONS(3216), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(3220), + [anon_sym_COLON] = ACTIONS(3216), + [anon_sym_COLON_QMARK] = ACTIONS(3216), + [anon_sym_COLON_DASH] = ACTIONS(3216), + [anon_sym_PERCENT] = ACTIONS(3216), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [997] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_done] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_fi] = ACTIONS(947), - [anon_sym_elif] = ACTIONS(947), - [anon_sym_else] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_SEMI_SEMI] = ACTIONS(943), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1449), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3224), + [anon_sym_SEMI_SEMI] = ACTIONS(3226), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3226), + [anon_sym_AMP] = ACTIONS(3222), }, [998] = { - [sym_file_redirect] = STATE(541), - [sym_heredoc_redirect] = STATE(541), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), [sym_heredoc_body] = STATE(1449), - [sym_herestring_redirect] = STATE(541), - [aux_sym_while_statement_repeat1] = STATE(541), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(343), - [ts_builtin_sym_end] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3207), - [anon_sym_PIPE] = ACTIONS(3207), - [anon_sym_SEMI_SEMI] = ACTIONS(3205), - [anon_sym_PIPE_AMP] = ACTIONS(3205), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_PIPE_PIPE] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(351), - [anon_sym_GT] = ACTIONS(351), - [anon_sym_GT_GT] = ACTIONS(353), - [anon_sym_AMP_GT] = ACTIONS(351), - [anon_sym_AMP_GT_GT] = ACTIONS(353), - [anon_sym_LT_AMP] = ACTIONS(353), - [anon_sym_GT_AMP] = ACTIONS(353), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(359), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3207), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3224), + [anon_sym_SEMI_SEMI] = ACTIONS(3226), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(3226), + [anon_sym_AMP] = ACTIONS(3222), }, [999] = { - [sym__concat] = ACTIONS(3209), - [anon_sym_EQ] = ACTIONS(3211), - [anon_sym_PLUS_EQ] = ACTIONS(3211), - [sym_comment] = ACTIONS(55), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(1450), + [sym_for_statement] = STATE(1450), + [sym_c_style_for_statement] = STATE(1450), + [sym_while_statement] = STATE(1450), + [sym_if_statement] = STATE(1450), + [sym_case_statement] = STATE(1450), + [sym_function_definition] = STATE(1450), + [sym_compound_statement] = STATE(1450), + [sym_subshell] = STATE(1450), + [sym_pipeline] = STATE(1450), + [sym_list] = STATE(1450), + [sym_negated_command] = STATE(1450), + [sym_test_command] = STATE(1450), + [sym_declaration_command] = STATE(1450), + [sym_unset_command] = STATE(1450), + [sym_command] = STATE(1450), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(1451), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [1000] = { - [anon_sym_EQ] = ACTIONS(3211), - [anon_sym_PLUS_EQ] = ACTIONS(3211), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1453), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(3228), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(3230), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3230), + [anon_sym_AMP] = ACTIONS(3228), }, [1001] = { - [aux_sym_concatenation_repeat1] = STATE(1001), - [sym__concat] = ACTIONS(2699), - [anon_sym_RBRACK] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1453), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(3228), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(3230), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(3224), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(3230), + [anon_sym_AMP] = ACTIONS(3228), }, [1002] = { - [sym__concat] = ACTIONS(3213), - [anon_sym_EQ] = ACTIONS(3215), - [anon_sym_PLUS_EQ] = ACTIONS(3215), - [sym_comment] = ACTIONS(55), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(1454), + [sym_for_statement] = STATE(1454), + [sym_c_style_for_statement] = STATE(1454), + [sym_while_statement] = STATE(1454), + [sym_if_statement] = STATE(1454), + [sym_case_statement] = STATE(1454), + [sym_function_definition] = STATE(1454), + [sym_compound_statement] = STATE(1454), + [sym_subshell] = STATE(1454), + [sym_pipeline] = STATE(1454), + [sym_list] = STATE(1454), + [sym_negated_command] = STATE(1454), + [sym_test_command] = STATE(1454), + [sym_declaration_command] = STATE(1454), + [sym_unset_command] = STATE(1454), + [sym_command] = STATE(1454), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(1455), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [1003] = { - [anon_sym_EQ] = ACTIONS(3215), - [anon_sym_PLUS_EQ] = ACTIONS(3215), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1458), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3234), + [anon_sym_SEMI_SEMI] = ACTIONS(3236), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3236), + [anon_sym_AMP] = ACTIONS(3232), }, [1004] = { - [sym_string] = STATE(1452), - [sym_simple_expansion] = STATE(1452), - [sym_string_expansion] = STATE(1452), - [sym_expansion] = STATE(1452), - [sym_command_substitution] = STATE(1452), - [sym_process_substitution] = STATE(1452), - [sym__special_characters] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(1114), - [anon_sym_DOLLAR] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(3217), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), - [anon_sym_BQUOTE] = ACTIONS(1124), - [anon_sym_LT_LPAREN] = ACTIONS(1126), - [anon_sym_GT_LPAREN] = ACTIONS(1126), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3217), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1458), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3234), + [anon_sym_SEMI_SEMI] = ACTIONS(3236), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(3236), + [anon_sym_AMP] = ACTIONS(3232), }, [1005] = { - [aux_sym_concatenation_repeat1] = STATE(1453), - [sym__concat] = ACTIONS(2103), - [anon_sym_RPAREN] = ACTIONS(807), - [sym__special_characters] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_LT_LPAREN] = ACTIONS(807), - [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(807), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(1459), + [sym_for_statement] = STATE(1459), + [sym_c_style_for_statement] = STATE(1459), + [sym_while_statement] = STATE(1459), + [sym_if_statement] = STATE(1459), + [sym_case_statement] = STATE(1459), + [sym_function_definition] = STATE(1459), + [sym_compound_statement] = STATE(1459), + [sym_subshell] = STATE(1459), + [sym_pipeline] = STATE(1459), + [sym_list] = STATE(1459), + [sym_negated_command] = STATE(1459), + [sym_test_command] = STATE(1459), + [sym_declaration_command] = STATE(1459), + [sym_unset_command] = STATE(1459), + [sym_command] = STATE(1459), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(1460), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [1006] = { - [sym__concat] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(811), - [sym__special_characters] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(813), - [sym_raw_string] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(811), + [sym__simple_heredoc_body] = ACTIONS(3238), + [sym__heredoc_body_beginning] = ACTIONS(3238), + [sym_file_descriptor] = ACTIONS(3238), + [sym_variable_name] = ACTIONS(3238), + [ts_builtin_sym_end] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_PIPE] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_SEMI_SEMI] = ACTIONS(3238), + [anon_sym_PIPE_AMP] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3240), + [anon_sym_GT] = ACTIONS(3240), + [anon_sym_GT_GT] = ACTIONS(3238), + [anon_sym_AMP_GT] = ACTIONS(3240), + [anon_sym_AMP_GT_GT] = ACTIONS(3238), + [anon_sym_LT_AMP] = ACTIONS(3238), + [anon_sym_GT_AMP] = ACTIONS(3238), + [anon_sym_LT_LT] = ACTIONS(3240), + [anon_sym_LT_LT_DASH] = ACTIONS(3238), + [anon_sym_LT_LT_LT] = ACTIONS(3238), + [sym__special_characters] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3238), + [anon_sym_DOLLAR] = ACTIONS(3240), + [sym_raw_string] = ACTIONS(3238), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3238), + [anon_sym_BQUOTE] = ACTIONS(3238), + [anon_sym_LT_LPAREN] = ACTIONS(3238), + [anon_sym_GT_LPAREN] = ACTIONS(3238), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3240), + [anon_sym_LF] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3240), }, [1007] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), - }, - [1008] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(473), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_DOLLAR] = ACTIONS(3221), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), - }, - [1009] = { - [sym__concat] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(845), - [anon_sym_DOLLAR] = ACTIONS(847), - [sym_raw_string] = ACTIONS(845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(845), - [anon_sym_LT_LPAREN] = ACTIONS(845), - [anon_sym_GT_LPAREN] = ACTIONS(845), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(845), - }, - [1010] = { - [sym__concat] = ACTIONS(849), - [anon_sym_RPAREN] = ACTIONS(849), - [sym__special_characters] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(851), - [sym_raw_string] = ACTIONS(849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(849), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(849), - }, - [1011] = { - [sym__concat] = ACTIONS(853), - [anon_sym_RPAREN] = ACTIONS(853), - [sym__special_characters] = ACTIONS(853), - [anon_sym_DQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(855), - [sym_raw_string] = ACTIONS(853), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), - [anon_sym_BQUOTE] = ACTIONS(853), - [anon_sym_LT_LPAREN] = ACTIONS(853), - [anon_sym_GT_LPAREN] = ACTIONS(853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(853), - }, - [1012] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(3223), - [sym_comment] = ACTIONS(55), - }, - [1013] = { - [sym_subscript] = STATE(1459), - [sym_variable_name] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_DOLLAR] = ACTIONS(3227), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_AT] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_0] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - }, - [1014] = { - [sym_concatenation] = STATE(1462), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1462), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_EQ] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3237), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_COLON] = ACTIONS(3235), - [anon_sym_COLON_QMARK] = ACTIONS(3235), - [anon_sym_COLON_DASH] = ACTIONS(3235), - [anon_sym_PERCENT] = ACTIONS(3235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [1015] = { - [sym_concatenation] = STATE(1465), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1465), - [anon_sym_RBRACE] = ACTIONS(3241), - [anon_sym_EQ] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3245), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(3247), - [anon_sym_COLON] = ACTIONS(3243), - [anon_sym_COLON_QMARK] = ACTIONS(3243), - [anon_sym_COLON_DASH] = ACTIONS(3243), - [anon_sym_PERCENT] = ACTIONS(3243), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [1016] = { - [anon_sym_SEMI] = ACTIONS(3249), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3251), - [anon_sym_SEMI_SEMI] = ACTIONS(3253), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3249), - }, - [1017] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(3249), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3251), - [anon_sym_SEMI_SEMI] = ACTIONS(3253), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3249), - }, - [1018] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(1468), - [sym_c_style_for_statement] = STATE(1468), - [sym_while_statement] = STATE(1468), - [sym_if_statement] = STATE(1468), - [sym_case_statement] = STATE(1468), - [sym_function_definition] = STATE(1468), - [sym_subshell] = STATE(1468), - [sym_pipeline] = STATE(1468), - [sym_list] = STATE(1468), - [sym_negated_command] = STATE(1468), - [sym_test_command] = STATE(1468), - [sym_declaration_command] = STATE(1468), - [sym_unset_command] = STATE(1468), - [sym_command] = STATE(1468), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(1469), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), - }, - [1019] = { - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(3257), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(3251), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3255), - }, - [1020] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(3257), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(3251), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3255), - }, - [1021] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(1471), - [sym_c_style_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_negated_command] = STATE(1471), - [sym_test_command] = STATE(1471), - [sym_declaration_command] = STATE(1471), - [sym_unset_command] = STATE(1471), - [sym_command] = STATE(1471), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(1472), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), - }, - [1022] = { - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3261), - [anon_sym_SEMI_SEMI] = ACTIONS(3263), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3259), - }, - [1023] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3261), - [anon_sym_SEMI_SEMI] = ACTIONS(3263), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3259), - }, - [1024] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(1475), - [sym_c_style_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_negated_command] = STATE(1475), - [sym_test_command] = STATE(1475), - [sym_declaration_command] = STATE(1475), - [sym_unset_command] = STATE(1475), - [sym_command] = STATE(1475), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(1476), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), - }, - [1025] = { - [sym_file_descriptor] = ACTIONS(3265), - [sym_variable_name] = ACTIONS(3265), - [ts_builtin_sym_end] = ACTIONS(3265), - [anon_sym_SEMI] = ACTIONS(3267), - [anon_sym_PIPE] = ACTIONS(3267), - [anon_sym_RPAREN] = ACTIONS(3265), - [anon_sym_SEMI_SEMI] = ACTIONS(3265), - [anon_sym_PIPE_AMP] = ACTIONS(3265), - [anon_sym_AMP_AMP] = ACTIONS(3265), - [anon_sym_PIPE_PIPE] = ACTIONS(3265), - [anon_sym_LT] = ACTIONS(3267), - [anon_sym_GT] = ACTIONS(3267), - [anon_sym_GT_GT] = ACTIONS(3265), - [anon_sym_AMP_GT] = ACTIONS(3267), - [anon_sym_AMP_GT_GT] = ACTIONS(3265), - [anon_sym_LT_AMP] = ACTIONS(3265), - [anon_sym_GT_AMP] = ACTIONS(3265), - [sym__special_characters] = ACTIONS(3265), - [anon_sym_DQUOTE] = ACTIONS(3265), - [anon_sym_DOLLAR] = ACTIONS(3267), - [sym_raw_string] = ACTIONS(3265), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3265), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3265), - [anon_sym_BQUOTE] = ACTIONS(3265), + [sym_concatenation] = STATE(1007), + [sym_string] = STATE(537), + [sym_simple_expansion] = STATE(537), + [sym_string_expansion] = STATE(537), + [sym_expansion] = STATE(537), + [sym_command_substitution] = STATE(537), + [sym_process_substitution] = STATE(537), + [aux_sym_for_statement_repeat1] = STATE(1007), + [anon_sym_RPAREN] = ACTIONS(3242), + [sym__special_characters] = ACTIONS(3244), + [anon_sym_DQUOTE] = ACTIONS(3247), + [anon_sym_DOLLAR] = ACTIONS(3250), + [sym_raw_string] = ACTIONS(3253), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3256), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3259), + [anon_sym_BQUOTE] = ACTIONS(3262), [anon_sym_LT_LPAREN] = ACTIONS(3265), [anon_sym_GT_LPAREN] = ACTIONS(3265), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3267), - [anon_sym_LF] = ACTIONS(3265), - [anon_sym_AMP] = ACTIONS(3267), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3253), + }, + [1008] = { + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(1726), + [sym_variable_name] = ACTIONS(1726), + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), + }, + [1009] = { + [aux_sym_concatenation_repeat1] = STATE(1009), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(3268), + [sym_variable_name] = ACTIONS(1726), + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), + }, + [1010] = { + [sym__simple_heredoc_body] = ACTIONS(1733), + [sym__heredoc_body_beginning] = ACTIONS(1733), + [sym_file_descriptor] = ACTIONS(1733), + [sym__concat] = ACTIONS(1733), + [sym_variable_name] = ACTIONS(1733), + [ts_builtin_sym_end] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_RPAREN] = ACTIONS(1733), + [anon_sym_SEMI_SEMI] = ACTIONS(1733), + [anon_sym_PIPE_AMP] = ACTIONS(1733), + [anon_sym_AMP_AMP] = ACTIONS(1733), + [anon_sym_PIPE_PIPE] = ACTIONS(1733), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1733), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_AMP_GT_GT] = ACTIONS(1733), + [anon_sym_LT_AMP] = ACTIONS(1733), + [anon_sym_GT_AMP] = ACTIONS(1733), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_LT_LT_DASH] = ACTIONS(1733), + [anon_sym_LT_LT_LT] = ACTIONS(1733), + [sym__special_characters] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1733), + [anon_sym_BQUOTE] = ACTIONS(1733), + [anon_sym_LT_LPAREN] = ACTIONS(1733), + [anon_sym_GT_LPAREN] = ACTIONS(1733), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1733), + [anon_sym_AMP] = ACTIONS(1735), + }, + [1011] = { + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + }, + [1012] = { + [sym_concatenation] = STATE(1465), + [sym_string] = STATE(1464), + [sym_simple_expansion] = STATE(1464), + [sym_string_expansion] = STATE(1464), + [sym_expansion] = STATE(1464), + [sym_command_substitution] = STATE(1464), + [sym_process_substitution] = STATE(1464), + [anon_sym_RBRACE] = ACTIONS(3273), + [sym__special_characters] = ACTIONS(3275), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(3277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3277), + }, + [1013] = { + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(3279), + [sym_comment] = ACTIONS(57), + }, + [1014] = { + [sym_concatenation] = STATE(1469), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1469), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3285), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(3287), + [anon_sym_COLON] = ACTIONS(3283), + [anon_sym_COLON_QMARK] = ACTIONS(3283), + [anon_sym_COLON_DASH] = ACTIONS(3283), + [anon_sym_PERCENT] = ACTIONS(3283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [1015] = { + [sym_concatenation] = STATE(1471), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1471), + [anon_sym_RBRACE] = ACTIONS(3273), + [anon_sym_EQ] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(3293), + [anon_sym_COLON] = ACTIONS(3289), + [anon_sym_COLON_QMARK] = ACTIONS(3289), + [anon_sym_COLON_DASH] = ACTIONS(3289), + [anon_sym_PERCENT] = ACTIONS(3289), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [1016] = { + [sym__simple_heredoc_body] = ACTIONS(1834), + [sym__heredoc_body_beginning] = ACTIONS(1834), + [sym_file_descriptor] = ACTIONS(1834), + [sym__concat] = ACTIONS(1834), + [sym_variable_name] = ACTIONS(1834), + [ts_builtin_sym_end] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_PIPE] = ACTIONS(1836), + [anon_sym_RPAREN] = ACTIONS(1834), + [anon_sym_SEMI_SEMI] = ACTIONS(1834), + [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP_AMP] = ACTIONS(1834), + [anon_sym_PIPE_PIPE] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1836), + [anon_sym_GT] = ACTIONS(1836), + [anon_sym_GT_GT] = ACTIONS(1834), + [anon_sym_AMP_GT] = ACTIONS(1836), + [anon_sym_AMP_GT_GT] = ACTIONS(1834), + [anon_sym_LT_AMP] = ACTIONS(1834), + [anon_sym_GT_AMP] = ACTIONS(1834), + [anon_sym_LT_LT] = ACTIONS(1836), + [anon_sym_LT_LT_DASH] = ACTIONS(1834), + [anon_sym_LT_LT_LT] = ACTIONS(1834), + [sym__special_characters] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1836), + [sym_raw_string] = ACTIONS(1834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), + [anon_sym_BQUOTE] = ACTIONS(1834), + [anon_sym_LT_LPAREN] = ACTIONS(1834), + [anon_sym_GT_LPAREN] = ACTIONS(1834), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1836), + [anon_sym_LF] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1836), + }, + [1017] = { + [sym_concatenation] = STATE(1474), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1474), + [sym_regex] = ACTIONS(3295), + [anon_sym_RBRACE] = ACTIONS(3297), + [anon_sym_EQ] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3301), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3299), + [anon_sym_COLON_QMARK] = ACTIONS(3299), + [anon_sym_COLON_DASH] = ACTIONS(3299), + [anon_sym_PERCENT] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [1018] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3297), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [1019] = { + [sym__simple_heredoc_body] = ACTIONS(1882), + [sym__heredoc_body_beginning] = ACTIONS(1882), + [sym_file_descriptor] = ACTIONS(1882), + [sym__concat] = ACTIONS(1882), + [sym_variable_name] = ACTIONS(1882), + [ts_builtin_sym_end] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_SEMI_SEMI] = ACTIONS(1882), + [anon_sym_PIPE_AMP] = ACTIONS(1882), + [anon_sym_AMP_AMP] = ACTIONS(1882), + [anon_sym_PIPE_PIPE] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1882), + [anon_sym_AMP_GT] = ACTIONS(1884), + [anon_sym_AMP_GT_GT] = ACTIONS(1882), + [anon_sym_LT_AMP] = ACTIONS(1882), + [anon_sym_GT_AMP] = ACTIONS(1882), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1882), + [anon_sym_LT_LT_LT] = ACTIONS(1882), + [sym__special_characters] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1882), + [anon_sym_BQUOTE] = ACTIONS(1882), + [anon_sym_LT_LPAREN] = ACTIONS(1882), + [anon_sym_GT_LPAREN] = ACTIONS(1882), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1884), + }, + [1020] = { + [sym_concatenation] = STATE(1471), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1471), + [sym_regex] = ACTIONS(3303), + [anon_sym_RBRACE] = ACTIONS(3273), + [anon_sym_EQ] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3289), + [anon_sym_COLON_QMARK] = ACTIONS(3289), + [anon_sym_COLON_DASH] = ACTIONS(3289), + [anon_sym_PERCENT] = ACTIONS(3289), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [1021] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3273), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [1022] = { + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(3305), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), + }, + [1023] = { + [sym__simple_heredoc_body] = ACTIONS(1890), + [sym__heredoc_body_beginning] = ACTIONS(1890), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [sym_variable_name] = ACTIONS(1890), + [ts_builtin_sym_end] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1892), + [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(57), + [sym_word] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1892), + }, + [1024] = { + [anon_sym_SEMI] = ACTIONS(3307), + [anon_sym_RPAREN] = ACTIONS(3305), + [anon_sym_SEMI_SEMI] = ACTIONS(3309), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3309), + }, + [1025] = { + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1479), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(3311), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3305), + [anon_sym_SEMI_SEMI] = ACTIONS(3313), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3313), + [anon_sym_AMP] = ACTIONS(3311), }, [1026] = { - [sym_concatenation] = STATE(1026), - [sym_string] = STATE(558), - [sym_simple_expansion] = STATE(558), - [sym_string_expansion] = STATE(558), - [sym_expansion] = STATE(558), - [sym_command_substitution] = STATE(558), - [sym_process_substitution] = STATE(558), - [aux_sym_for_statement_repeat1] = STATE(1026), - [anon_sym_RPAREN] = ACTIONS(3269), - [sym__special_characters] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3274), - [anon_sym_DOLLAR] = ACTIONS(3277), - [sym_raw_string] = ACTIONS(3280), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3286), - [anon_sym_BQUOTE] = ACTIONS(3289), - [anon_sym_LT_LPAREN] = ACTIONS(3292), - [anon_sym_GT_LPAREN] = ACTIONS(3292), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3280), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1479), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(3311), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3305), + [anon_sym_SEMI_SEMI] = ACTIONS(3313), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(3313), + [anon_sym_AMP] = ACTIONS(3311), }, [1027] = { - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(1763), - [sym_variable_name] = ACTIONS(1763), - [ts_builtin_sym_end] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(3305), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1028] = { - [aux_sym_concatenation_repeat1] = STATE(1028), - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(3295), - [sym_variable_name] = ACTIONS(1763), - [ts_builtin_sym_end] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_SEMI] = ACTIONS(3315), + [anon_sym_SEMI_SEMI] = ACTIONS(3317), + [anon_sym_BQUOTE] = ACTIONS(3305), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3317), }, [1029] = { - [sym_file_descriptor] = ACTIONS(1770), - [sym__concat] = ACTIONS(1770), - [sym_variable_name] = ACTIONS(1770), - [ts_builtin_sym_end] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1770), - [anon_sym_SEMI_SEMI] = ACTIONS(1770), - [anon_sym_PIPE_AMP] = ACTIONS(1770), - [anon_sym_AMP_AMP] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1770), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1772), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_AMP_GT] = ACTIONS(1772), - [anon_sym_AMP_GT_GT] = ACTIONS(1770), - [anon_sym_LT_AMP] = ACTIONS(1770), - [anon_sym_GT_AMP] = ACTIONS(1770), - [sym__special_characters] = ACTIONS(1770), - [anon_sym_DQUOTE] = ACTIONS(1770), - [anon_sym_DOLLAR] = ACTIONS(1772), - [sym_raw_string] = ACTIONS(1770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), - [anon_sym_BQUOTE] = ACTIONS(1770), - [anon_sym_LT_LPAREN] = ACTIONS(1770), - [anon_sym_GT_LPAREN] = ACTIONS(1770), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1772), - [anon_sym_LF] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1772), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1482), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(3319), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(3321), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(3305), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3321), + [anon_sym_AMP] = ACTIONS(3319), }, [1030] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(3298), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1482), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(3319), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(3321), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(3305), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(3321), + [anon_sym_AMP] = ACTIONS(3319), }, [1031] = { - [sym_concatenation] = STATE(1481), - [sym_string] = STATE(1480), - [sym_simple_expansion] = STATE(1480), - [sym_string_expansion] = STATE(1480), - [sym_expansion] = STATE(1480), - [sym_command_substitution] = STATE(1480), - [sym_process_substitution] = STATE(1480), - [anon_sym_RBRACE] = ACTIONS(3300), - [sym__special_characters] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(3304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3304), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(3323), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1032] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(3306), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(1924), + [sym__heredoc_body_beginning] = ACTIONS(1924), + [sym_file_descriptor] = ACTIONS(1924), + [sym__concat] = ACTIONS(1924), + [sym_variable_name] = ACTIONS(1924), + [ts_builtin_sym_end] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_RPAREN] = ACTIONS(1924), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [anon_sym_PIPE_AMP] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_GT_GT] = ACTIONS(1924), + [anon_sym_AMP_GT] = ACTIONS(1926), + [anon_sym_AMP_GT_GT] = ACTIONS(1924), + [anon_sym_LT_AMP] = ACTIONS(1924), + [anon_sym_GT_AMP] = ACTIONS(1924), + [anon_sym_LT_LT] = ACTIONS(1926), + [anon_sym_LT_LT_DASH] = ACTIONS(1924), + [anon_sym_LT_LT_LT] = ACTIONS(1924), + [sym__special_characters] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(1924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), + [anon_sym_BQUOTE] = ACTIONS(1924), + [anon_sym_LT_LPAREN] = ACTIONS(1924), + [anon_sym_GT_LPAREN] = ACTIONS(1924), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1926), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1926), }, [1033] = { - [sym_concatenation] = STATE(1485), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1485), - [anon_sym_RBRACE] = ACTIONS(3308), - [anon_sym_EQ] = ACTIONS(3310), - [anon_sym_DASH] = ACTIONS(3310), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3312), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(3314), - [anon_sym_COLON] = ACTIONS(3310), - [anon_sym_COLON_QMARK] = ACTIONS(3310), - [anon_sym_COLON_DASH] = ACTIONS(3310), - [anon_sym_PERCENT] = ACTIONS(3310), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_RPAREN] = ACTIONS(3323), + [anon_sym_SEMI_SEMI] = ACTIONS(3327), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3327), + [anon_sym_AMP] = ACTIONS(3327), }, [1034] = { - [sym_concatenation] = STATE(1487), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1487), - [anon_sym_RBRACE] = ACTIONS(3300), - [anon_sym_EQ] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3318), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(3320), - [anon_sym_COLON] = ACTIONS(3316), - [anon_sym_COLON_QMARK] = ACTIONS(3316), - [anon_sym_COLON_DASH] = ACTIONS(3316), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1486), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3323), + [anon_sym_SEMI_SEMI] = ACTIONS(3331), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3331), + [anon_sym_AMP] = ACTIONS(3329), }, [1035] = { - [sym_file_descriptor] = ACTIONS(1871), - [sym__concat] = ACTIONS(1871), - [sym_variable_name] = ACTIONS(1871), - [ts_builtin_sym_end] = ACTIONS(1871), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_RPAREN] = ACTIONS(1871), - [anon_sym_SEMI_SEMI] = ACTIONS(1871), - [anon_sym_PIPE_AMP] = ACTIONS(1871), - [anon_sym_AMP_AMP] = ACTIONS(1871), - [anon_sym_PIPE_PIPE] = ACTIONS(1871), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_GT] = ACTIONS(1873), - [anon_sym_GT_GT] = ACTIONS(1871), - [anon_sym_AMP_GT] = ACTIONS(1873), - [anon_sym_AMP_GT_GT] = ACTIONS(1871), - [anon_sym_LT_AMP] = ACTIONS(1871), - [anon_sym_GT_AMP] = ACTIONS(1871), - [sym__special_characters] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1871), - [anon_sym_DOLLAR] = ACTIONS(1873), - [sym_raw_string] = ACTIONS(1871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), - [anon_sym_BQUOTE] = ACTIONS(1871), - [anon_sym_LT_LPAREN] = ACTIONS(1871), - [anon_sym_GT_LPAREN] = ACTIONS(1871), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1873), - [anon_sym_LF] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1873), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1486), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3323), + [anon_sym_SEMI_SEMI] = ACTIONS(3331), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(3331), + [anon_sym_AMP] = ACTIONS(3329), }, [1036] = { - [sym_concatenation] = STATE(1490), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1490), - [sym_regex] = ACTIONS(3322), - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_EQ] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3328), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3326), - [anon_sym_COLON_QMARK] = ACTIONS(3326), - [anon_sym_COLON_DASH] = ACTIONS(3326), - [anon_sym_PERCENT] = ACTIONS(3326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_do_group] = STATE(1488), + [sym_compound_statement] = STATE(1488), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_do] = ACTIONS(493), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(57), }, [1037] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3335), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(465), + [anon_sym_EQ_TILDE] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(467), + [anon_sym_EQ] = ACTIONS(469), + [anon_sym_PLUS_EQ] = ACTIONS(465), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(465), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_EQ] = ACTIONS(465), + [anon_sym_LT_EQ] = ACTIONS(465), + [anon_sym_GT_EQ] = ACTIONS(465), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(465), }, [1038] = { - [sym_file_descriptor] = ACTIONS(1919), - [sym__concat] = ACTIONS(1919), - [sym_variable_name] = ACTIONS(1919), - [ts_builtin_sym_end] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1919), - [anon_sym_SEMI_SEMI] = ACTIONS(1919), - [anon_sym_PIPE_AMP] = ACTIONS(1919), - [anon_sym_AMP_AMP] = ACTIONS(1919), - [anon_sym_PIPE_PIPE] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1921), - [anon_sym_GT_GT] = ACTIONS(1919), - [anon_sym_AMP_GT] = ACTIONS(1921), - [anon_sym_AMP_GT_GT] = ACTIONS(1919), - [anon_sym_LT_AMP] = ACTIONS(1919), - [anon_sym_GT_AMP] = ACTIONS(1919), - [sym__special_characters] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1921), - [sym_raw_string] = ACTIONS(1919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), - [anon_sym_BQUOTE] = ACTIONS(1919), - [anon_sym_LT_LPAREN] = ACTIONS(1919), - [anon_sym_GT_LPAREN] = ACTIONS(1919), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1921), - [anon_sym_LF] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1921), + [sym__expression] = STATE(1490), + [sym_binary_expression] = STATE(1490), + [sym_unary_expression] = STATE(1490), + [sym_postfix_expression] = STATE(1490), + [sym_parenthesized_expression] = STATE(1490), + [sym_concatenation] = STATE(1490), + [sym_string] = STATE(45), + [sym_simple_expansion] = STATE(45), + [sym_string_expansion] = STATE(45), + [sym_expansion] = STATE(45), + [sym_command_substitution] = STATE(45), + [sym_process_substitution] = STATE(45), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3335), + [anon_sym_LPAREN] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [sym__special_characters] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(81), + [sym_raw_string] = ACTIONS(83), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(85), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(89), + [anon_sym_LT_LPAREN] = ACTIONS(91), + [anon_sym_GT_LPAREN] = ACTIONS(91), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(93), + [sym_test_operator] = ACTIONS(95), }, [1039] = { - [sym_concatenation] = STATE(1487), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1487), - [sym_regex] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3300), - [anon_sym_EQ] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3318), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3316), - [anon_sym_COLON_QMARK] = ACTIONS(3316), - [anon_sym_COLON_DASH] = ACTIONS(3316), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(2308), + [anon_sym_SEMI_SEMI] = ACTIONS(2306), + [anon_sym_AMP_AMP] = ACTIONS(2306), + [anon_sym_PIPE_PIPE] = ACTIONS(2306), + [anon_sym_EQ_TILDE] = ACTIONS(2306), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_EQ] = ACTIONS(2308), + [anon_sym_PLUS_EQ] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2308), + [anon_sym_GT] = ACTIONS(2308), + [anon_sym_BANG_EQ] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2308), + [anon_sym_DASH_EQ] = ACTIONS(2306), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2306), + [anon_sym_PLUS_PLUS] = ACTIONS(2306), + [anon_sym_DASH_DASH] = ACTIONS(2306), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2306), + [anon_sym_LF] = ACTIONS(2306), + [anon_sym_AMP] = ACTIONS(2308), }, [1040] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3300), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_EQ_TILDE] = ACTIONS(1726), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ] = ACTIONS(1728), + [anon_sym_PLUS_EQ] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_DASH_EQ] = ACTIONS(1726), + [anon_sym_LT_EQ] = ACTIONS(1726), + [anon_sym_GT_EQ] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1726), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), }, [1041] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(3332), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [aux_sym_concatenation_repeat1] = STATE(1041), + [sym__concat] = ACTIONS(3337), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_EQ_TILDE] = ACTIONS(1726), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ] = ACTIONS(1728), + [anon_sym_PLUS_EQ] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_DASH_EQ] = ACTIONS(1726), + [anon_sym_LT_EQ] = ACTIONS(1726), + [anon_sym_GT_EQ] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1726), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), }, [1042] = { - [sym_file_descriptor] = ACTIONS(1927), - [sym__concat] = ACTIONS(1927), - [sym_variable_name] = ACTIONS(1927), - [ts_builtin_sym_end] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_SEMI_SEMI] = ACTIONS(1927), - [anon_sym_PIPE_AMP] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1929), - [anon_sym_GT_GT] = ACTIONS(1927), - [anon_sym_AMP_GT] = ACTIONS(1929), - [anon_sym_AMP_GT_GT] = ACTIONS(1927), - [anon_sym_LT_AMP] = ACTIONS(1927), - [anon_sym_GT_AMP] = ACTIONS(1927), - [sym__special_characters] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1929), - [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(55), - [sym_word] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1927), - [anon_sym_AMP] = ACTIONS(1929), + [sym__concat] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1733), + [anon_sym_AMP_AMP] = ACTIONS(1733), + [anon_sym_PIPE_PIPE] = ACTIONS(1733), + [anon_sym_EQ_TILDE] = ACTIONS(1733), + [anon_sym_EQ_EQ] = ACTIONS(1733), + [anon_sym_EQ] = ACTIONS(1735), + [anon_sym_PLUS_EQ] = ACTIONS(1733), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_BANG_EQ] = ACTIONS(1733), + [anon_sym_PLUS] = ACTIONS(1735), + [anon_sym_DASH] = ACTIONS(1735), + [anon_sym_DASH_EQ] = ACTIONS(1733), + [anon_sym_LT_EQ] = ACTIONS(1733), + [anon_sym_GT_EQ] = ACTIONS(1733), + [anon_sym_PLUS_PLUS] = ACTIONS(1733), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1733), + [anon_sym_LF] = ACTIONS(1733), + [anon_sym_AMP] = ACTIONS(1735), }, [1043] = { - [anon_sym_SEMI] = ACTIONS(3334), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3332), - [anon_sym_SEMI_SEMI] = ACTIONS(3336), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3336), - [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [1044] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(3334), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3332), - [anon_sym_SEMI_SEMI] = ACTIONS(3336), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(3336), - [anon_sym_AMP] = ACTIONS(3334), + [sym_concatenation] = STATE(1495), + [sym_string] = STATE(1494), + [sym_simple_expansion] = STATE(1494), + [sym_string_expansion] = STATE(1494), + [sym_expansion] = STATE(1494), + [sym_command_substitution] = STATE(1494), + [sym_process_substitution] = STATE(1494), + [anon_sym_RBRACE] = ACTIONS(3342), + [sym__special_characters] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(3346), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3346), }, [1045] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(3332), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(3348), + [sym_comment] = ACTIONS(57), }, [1046] = { - [anon_sym_SEMI] = ACTIONS(3338), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(3340), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(3332), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3340), - [anon_sym_AMP] = ACTIONS(3338), + [sym_concatenation] = STATE(1499), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1499), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_EQ] = ACTIONS(3352), + [anon_sym_DASH] = ACTIONS(3352), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3354), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3352), + [anon_sym_COLON_QMARK] = ACTIONS(3352), + [anon_sym_COLON_DASH] = ACTIONS(3352), + [anon_sym_PERCENT] = ACTIONS(3352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1047] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(3338), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(3340), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(3332), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(3340), - [anon_sym_AMP] = ACTIONS(3338), + [sym_concatenation] = STATE(1501), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1501), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_EQ] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_COLON] = ACTIONS(3358), + [anon_sym_COLON_QMARK] = ACTIONS(3358), + [anon_sym_COLON_DASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1048] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(3342), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__concat] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_SEMI_SEMI] = ACTIONS(1834), + [anon_sym_AMP_AMP] = ACTIONS(1834), + [anon_sym_PIPE_PIPE] = ACTIONS(1834), + [anon_sym_EQ_TILDE] = ACTIONS(1834), + [anon_sym_EQ_EQ] = ACTIONS(1834), + [anon_sym_EQ] = ACTIONS(1836), + [anon_sym_PLUS_EQ] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1836), + [anon_sym_GT] = ACTIONS(1836), + [anon_sym_BANG_EQ] = ACTIONS(1834), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_DASH_EQ] = ACTIONS(1834), + [anon_sym_LT_EQ] = ACTIONS(1834), + [anon_sym_GT_EQ] = ACTIONS(1834), + [anon_sym_PLUS_PLUS] = ACTIONS(1834), + [anon_sym_DASH_DASH] = ACTIONS(1834), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1834), + [anon_sym_LF] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1836), }, [1049] = { - [sym_file_descriptor] = ACTIONS(1959), - [sym__concat] = ACTIONS(1959), - [sym_variable_name] = ACTIONS(1959), - [ts_builtin_sym_end] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_SEMI_SEMI] = ACTIONS(1959), - [anon_sym_PIPE_AMP] = ACTIONS(1959), - [anon_sym_AMP_AMP] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1959), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_AMP_GT] = ACTIONS(1961), - [anon_sym_AMP_GT_GT] = ACTIONS(1959), - [anon_sym_LT_AMP] = ACTIONS(1959), - [anon_sym_GT_AMP] = ACTIONS(1959), - [sym__special_characters] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), - [anon_sym_BQUOTE] = ACTIONS(1959), - [anon_sym_LT_LPAREN] = ACTIONS(1959), - [anon_sym_GT_LPAREN] = ACTIONS(1959), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1961), + [sym_concatenation] = STATE(1504), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1504), + [sym_regex] = ACTIONS(3364), + [anon_sym_RBRACE] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3368), + [anon_sym_COLON_QMARK] = ACTIONS(3368), + [anon_sym_COLON_DASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1050] = { - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3342), - [anon_sym_SEMI_SEMI] = ACTIONS(3346), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3346), - [anon_sym_AMP] = ACTIONS(3344), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1051] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3342), - [anon_sym_SEMI_SEMI] = ACTIONS(3346), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(3346), - [anon_sym_AMP] = ACTIONS(3344), + [sym__concat] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1882), + [anon_sym_AMP_AMP] = ACTIONS(1882), + [anon_sym_PIPE_PIPE] = ACTIONS(1882), + [anon_sym_EQ_TILDE] = ACTIONS(1882), + [anon_sym_EQ_EQ] = ACTIONS(1882), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_PLUS_EQ] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_BANG_EQ] = ACTIONS(1882), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_DASH_EQ] = ACTIONS(1882), + [anon_sym_LT_EQ] = ACTIONS(1882), + [anon_sym_GT_EQ] = ACTIONS(1882), + [anon_sym_PLUS_PLUS] = ACTIONS(1882), + [anon_sym_DASH_DASH] = ACTIONS(1882), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1882), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1884), }, [1052] = { - [sym_do_group] = STATE(1499), - [sym_compound_statement] = STATE(1499), - [anon_sym_SEMI] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(3350), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(1501), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1501), + [sym_regex] = ACTIONS(3372), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_EQ] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3358), + [anon_sym_COLON_QMARK] = ACTIONS(3358), + [anon_sym_COLON_DASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1053] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(3352), - [anon_sym_AMP_AMP] = ACTIONS(493), - [anon_sym_PIPE_PIPE] = ACTIONS(493), - [anon_sym_EQ_TILDE] = ACTIONS(495), - [anon_sym_EQ_EQ] = ACTIONS(495), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(493), - [anon_sym_LT] = ACTIONS(497), - [anon_sym_GT] = ACTIONS(497), - [anon_sym_BANG_EQ] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(497), - [anon_sym_DASH] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(493), - [anon_sym_LT_EQ] = ACTIONS(493), - [anon_sym_GT_EQ] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(493), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1054] = { - [sym__expression] = STATE(1501), - [sym_binary_expression] = STATE(1501), - [sym_unary_expression] = STATE(1501), - [sym_postfix_expression] = STATE(1501), - [sym_parenthesized_expression] = STATE(1501), - [sym_concatenation] = STATE(1501), - [sym_string] = STATE(44), - [sym_simple_expansion] = STATE(44), - [sym_string_expansion] = STATE(44), - [sym_expansion] = STATE(44), - [sym_command_substitution] = STATE(44), - [sym_process_substitution] = STATE(44), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(73), - [sym__special_characters] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(79), - [sym_raw_string] = ACTIONS(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), - [anon_sym_BQUOTE] = ACTIONS(87), - [anon_sym_LT_LPAREN] = ACTIONS(89), - [anon_sym_GT_LPAREN] = ACTIONS(89), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(91), - [sym_test_operator] = ACTIONS(93), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(3374), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1055] = { - [anon_sym_SEMI] = ACTIONS(2333), - [anon_sym_SEMI_SEMI] = ACTIONS(2331), - [anon_sym_AMP_AMP] = ACTIONS(2331), - [anon_sym_PIPE_PIPE] = ACTIONS(2331), - [anon_sym_EQ_TILDE] = ACTIONS(2331), - [anon_sym_EQ_EQ] = ACTIONS(2331), - [anon_sym_EQ] = ACTIONS(2333), - [anon_sym_PLUS_EQ] = ACTIONS(2331), - [anon_sym_LT] = ACTIONS(2333), - [anon_sym_GT] = ACTIONS(2333), - [anon_sym_BANG_EQ] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_DASH_EQ] = ACTIONS(2331), - [anon_sym_LT_EQ] = ACTIONS(2331), - [anon_sym_GT_EQ] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2331), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(2331), - [anon_sym_LF] = ACTIONS(2331), - [anon_sym_AMP] = ACTIONS(2333), + [sym__concat] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_EQ_TILDE] = ACTIONS(1890), + [anon_sym_EQ_EQ] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_PLUS_EQ] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_BANG_EQ] = ACTIONS(1890), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_DASH_EQ] = ACTIONS(1890), + [anon_sym_LT_EQ] = ACTIONS(1890), + [anon_sym_GT_EQ] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1890), + [anon_sym_LF] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1892), }, [1056] = { - [sym__concat] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_esac] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym_PLUS_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_DASH_EQ] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1763), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_SEMI] = ACTIONS(3376), + [anon_sym_RPAREN] = ACTIONS(3374), + [anon_sym_SEMI_SEMI] = ACTIONS(3378), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3378), + [anon_sym_AMP] = ACTIONS(3378), }, [1057] = { - [aux_sym_concatenation_repeat1] = STATE(1057), - [sym__concat] = ACTIONS(3354), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym_PLUS_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_DASH_EQ] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1763), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1509), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(3380), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3374), + [anon_sym_SEMI_SEMI] = ACTIONS(3382), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3382), + [anon_sym_AMP] = ACTIONS(3380), }, [1058] = { - [sym__concat] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_esac] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_SEMI_SEMI] = ACTIONS(1770), - [anon_sym_PIPE_AMP] = ACTIONS(1770), - [anon_sym_AMP_AMP] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1770), - [anon_sym_EQ_TILDE] = ACTIONS(1770), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1770), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1770), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_DASH_DASH] = ACTIONS(1770), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1770), - [anon_sym_LF] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1772), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1509), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(3380), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3374), + [anon_sym_SEMI_SEMI] = ACTIONS(3382), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(3382), + [anon_sym_AMP] = ACTIONS(3380), }, [1059] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(3374), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1060] = { - [sym_concatenation] = STATE(1506), - [sym_string] = STATE(1505), - [sym_simple_expansion] = STATE(1505), - [sym_string_expansion] = STATE(1505), - [sym_expansion] = STATE(1505), - [sym_command_substitution] = STATE(1505), - [sym_process_substitution] = STATE(1505), - [anon_sym_RBRACE] = ACTIONS(3359), - [sym__special_characters] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(3363), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3384), + [anon_sym_SEMI_SEMI] = ACTIONS(3386), + [anon_sym_BQUOTE] = ACTIONS(3374), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3386), }, [1061] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(3365), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1512), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(3388), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(3390), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(3374), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3388), }, [1062] = { - [sym_concatenation] = STATE(1510), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1510), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_EQ] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3369), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(3373), - [anon_sym_COLON] = ACTIONS(3369), - [anon_sym_COLON_QMARK] = ACTIONS(3369), - [anon_sym_COLON_DASH] = ACTIONS(3369), - [anon_sym_PERCENT] = ACTIONS(3369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1512), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(3388), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(3390), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(3374), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3388), }, [1063] = { - [sym_concatenation] = STATE(1512), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1512), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3377), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3375), - [anon_sym_COLON_QMARK] = ACTIONS(3375), - [anon_sym_COLON_DASH] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(3392), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1064] = { - [sym__concat] = ACTIONS(1871), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_esac] = ACTIONS(1871), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_SEMI_SEMI] = ACTIONS(1871), - [anon_sym_PIPE_AMP] = ACTIONS(1871), - [anon_sym_AMP_AMP] = ACTIONS(1871), - [anon_sym_PIPE_PIPE] = ACTIONS(1871), - [anon_sym_EQ_TILDE] = ACTIONS(1871), - [anon_sym_EQ_EQ] = ACTIONS(1871), - [anon_sym_EQ] = ACTIONS(1873), - [anon_sym_PLUS_EQ] = ACTIONS(1871), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_GT] = ACTIONS(1873), - [anon_sym_BANG_EQ] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1873), - [anon_sym_DASH_EQ] = ACTIONS(1871), - [anon_sym_LT_EQ] = ACTIONS(1871), - [anon_sym_GT_EQ] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1871), - [anon_sym_LF] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1873), + [sym__concat] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [anon_sym_EQ_TILDE] = ACTIONS(1924), + [anon_sym_EQ_EQ] = ACTIONS(1924), + [anon_sym_EQ] = ACTIONS(1926), + [anon_sym_PLUS_EQ] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_BANG_EQ] = ACTIONS(1924), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_DASH_EQ] = ACTIONS(1924), + [anon_sym_LT_EQ] = ACTIONS(1924), + [anon_sym_GT_EQ] = ACTIONS(1924), + [anon_sym_PLUS_PLUS] = ACTIONS(1924), + [anon_sym_DASH_DASH] = ACTIONS(1924), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1924), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1926), }, [1065] = { - [sym_concatenation] = STATE(1515), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1515), - [sym_regex] = ACTIONS(3381), - [anon_sym_RBRACE] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(3385), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3387), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3385), - [anon_sym_COLON_QMARK] = ACTIONS(3385), - [anon_sym_COLON_DASH] = ACTIONS(3385), - [anon_sym_PERCENT] = ACTIONS(3385), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_RPAREN] = ACTIONS(3392), + [anon_sym_SEMI_SEMI] = ACTIONS(3396), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3396), + [anon_sym_AMP] = ACTIONS(3396), }, [1066] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1516), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(3398), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3392), + [anon_sym_SEMI_SEMI] = ACTIONS(3400), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3400), + [anon_sym_AMP] = ACTIONS(3398), }, [1067] = { - [sym__concat] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_esac] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_SEMI_SEMI] = ACTIONS(1919), - [anon_sym_PIPE_AMP] = ACTIONS(1919), - [anon_sym_AMP_AMP] = ACTIONS(1919), - [anon_sym_PIPE_PIPE] = ACTIONS(1919), - [anon_sym_EQ_TILDE] = ACTIONS(1919), - [anon_sym_EQ_EQ] = ACTIONS(1919), - [anon_sym_EQ] = ACTIONS(1921), - [anon_sym_PLUS_EQ] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1921), - [anon_sym_BANG_EQ] = ACTIONS(1919), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_DASH_EQ] = ACTIONS(1919), - [anon_sym_LT_EQ] = ACTIONS(1919), - [anon_sym_GT_EQ] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1919), - [anon_sym_LF] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1921), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1516), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(3398), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3392), + [anon_sym_SEMI_SEMI] = ACTIONS(3400), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(3400), + [anon_sym_AMP] = ACTIONS(3398), }, [1068] = { - [sym_concatenation] = STATE(1512), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1512), - [sym_regex] = ACTIONS(3389), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3377), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3375), - [anon_sym_COLON_QMARK] = ACTIONS(3375), - [anon_sym_COLON_DASH] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_SEMI_SEMI] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(1167), + [anon_sym_PIPE_PIPE] = ACTIONS(1167), + [anon_sym_EQ_TILDE] = ACTIONS(1169), + [anon_sym_EQ_EQ] = ACTIONS(1169), + [anon_sym_EQ] = ACTIONS(1171), + [anon_sym_PLUS_EQ] = ACTIONS(1167), + [anon_sym_LT] = ACTIONS(1171), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_BANG_EQ] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_DASH_EQ] = ACTIONS(1167), + [anon_sym_LT_EQ] = ACTIONS(1167), + [anon_sym_GT_EQ] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1173), + [anon_sym_DASH_DASH] = ACTIONS(1173), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1167), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3402), }, [1069] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_SEMI_SEMI] = ACTIONS(2377), + [anon_sym_AMP_AMP] = ACTIONS(2377), + [anon_sym_PIPE_PIPE] = ACTIONS(2377), + [anon_sym_EQ_TILDE] = ACTIONS(2377), + [anon_sym_EQ_EQ] = ACTIONS(2377), + [anon_sym_EQ] = ACTIONS(2379), + [anon_sym_PLUS_EQ] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2379), + [anon_sym_GT] = ACTIONS(2379), + [anon_sym_BANG_EQ] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_DASH_EQ] = ACTIONS(2377), + [anon_sym_LT_EQ] = ACTIONS(2377), + [anon_sym_GT_EQ] = ACTIONS(2377), + [anon_sym_PLUS_PLUS] = ACTIONS(2377), + [anon_sym_DASH_DASH] = ACTIONS(2377), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2377), + [anon_sym_LF] = ACTIONS(2377), + [anon_sym_AMP] = ACTIONS(2379), }, [1070] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(3391), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_SEMI_SEMI] = ACTIONS(2377), + [anon_sym_AMP_AMP] = ACTIONS(2377), + [anon_sym_PIPE_PIPE] = ACTIONS(2377), + [anon_sym_EQ_TILDE] = ACTIONS(2377), + [anon_sym_EQ_EQ] = ACTIONS(2377), + [anon_sym_EQ] = ACTIONS(2379), + [anon_sym_PLUS_EQ] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2379), + [anon_sym_GT] = ACTIONS(2379), + [anon_sym_BANG_EQ] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_DASH_EQ] = ACTIONS(2377), + [anon_sym_LT_EQ] = ACTIONS(2377), + [anon_sym_GT_EQ] = ACTIONS(2377), + [anon_sym_PLUS_PLUS] = ACTIONS(2377), + [anon_sym_DASH_DASH] = ACTIONS(2377), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2377), + [anon_sym_LF] = ACTIONS(2377), + [anon_sym_AMP] = ACTIONS(2379), }, [1071] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_esac] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = 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(1927), - [anon_sym_EQ_EQ] = ACTIONS(1927), - [anon_sym_EQ] = ACTIONS(1929), - [anon_sym_PLUS_EQ] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1929), - [anon_sym_BANG_EQ] = ACTIONS(1927), - [anon_sym_PLUS] = ACTIONS(1929), - [anon_sym_DASH] = ACTIONS(1929), - [anon_sym_DASH_EQ] = ACTIONS(1927), - [anon_sym_LT_EQ] = ACTIONS(1927), - [anon_sym_GT_EQ] = ACTIONS(1927), - [anon_sym_PLUS_PLUS] = ACTIONS(1927), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1927), - [anon_sym_LF] = ACTIONS(1927), - [anon_sym_AMP] = ACTIONS(1929), + [sym_string] = STATE(1518), + [sym_simple_expansion] = STATE(1518), + [sym_string_expansion] = STATE(1518), + [sym_expansion] = STATE(1518), + [sym_command_substitution] = STATE(1518), + [sym_process_substitution] = STATE(1518), + [sym__special_characters] = ACTIONS(3406), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1179), + [sym_raw_string] = ACTIONS(3406), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1183), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1185), + [anon_sym_BQUOTE] = ACTIONS(1187), + [anon_sym_LT_LPAREN] = ACTIONS(1189), + [anon_sym_GT_LPAREN] = ACTIONS(1189), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3406), }, [1072] = { - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3391), - [anon_sym_SEMI_SEMI] = ACTIONS(3395), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3393), + [aux_sym_concatenation_repeat1] = STATE(1519), + [sym__concat] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [sym__special_characters] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(781), + [sym_raw_string] = ACTIONS(779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(779), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(781), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(779), }, [1073] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3391), - [anon_sym_SEMI_SEMI] = ACTIONS(3395), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3393), + [sym__concat] = ACTIONS(783), + [anon_sym_SEMI] = ACTIONS(785), + [anon_sym_SEMI_SEMI] = ACTIONS(783), + [sym__special_characters] = ACTIONS(783), + [anon_sym_DQUOTE] = ACTIONS(783), + [anon_sym_DOLLAR] = ACTIONS(785), + [sym_raw_string] = ACTIONS(783), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(783), + [anon_sym_BQUOTE] = ACTIONS(783), + [anon_sym_LT_LPAREN] = ACTIONS(783), + [anon_sym_GT_LPAREN] = ACTIONS(783), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(785), + [anon_sym_LF] = ACTIONS(783), + [anon_sym_AMP] = ACTIONS(783), }, [1074] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(3391), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(3408), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [1075] = { - [anon_sym_SEMI] = ACTIONS(3397), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(3399), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(3391), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3399), - [anon_sym_AMP] = ACTIONS(3397), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(455), + [anon_sym_DQUOTE] = ACTIONS(3408), + [anon_sym_DOLLAR] = ACTIONS(3410), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [1076] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(3397), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(3399), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(3391), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(3399), - [anon_sym_AMP] = ACTIONS(3397), + [sym__concat] = ACTIONS(817), + [anon_sym_SEMI] = ACTIONS(819), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [sym__special_characters] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(819), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), }, [1077] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__concat] = ACTIONS(821), + [anon_sym_SEMI] = ACTIONS(823), + [anon_sym_SEMI_SEMI] = ACTIONS(821), + [sym__special_characters] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(823), + [sym_raw_string] = ACTIONS(821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(821), + [anon_sym_BQUOTE] = ACTIONS(821), + [anon_sym_LT_LPAREN] = ACTIONS(821), + [anon_sym_GT_LPAREN] = ACTIONS(821), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(823), + [anon_sym_LF] = ACTIONS(821), + [anon_sym_AMP] = ACTIONS(821), }, [1078] = { - [sym__concat] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_esac] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1959), - [anon_sym_PIPE_AMP] = ACTIONS(1959), - [anon_sym_AMP_AMP] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1959), - [anon_sym_EQ_TILDE] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1961), - [anon_sym_PLUS_EQ] = ACTIONS(1959), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG_EQ] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_DASH_EQ] = ACTIONS(1959), - [anon_sym_LT_EQ] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1959), - [anon_sym_PLUS_PLUS] = ACTIONS(1959), - [anon_sym_DASH_DASH] = ACTIONS(1959), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1959), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1961), + [sym__concat] = ACTIONS(825), + [anon_sym_SEMI] = ACTIONS(827), + [anon_sym_SEMI_SEMI] = ACTIONS(825), + [sym__special_characters] = ACTIONS(825), + [anon_sym_DQUOTE] = ACTIONS(825), + [anon_sym_DOLLAR] = ACTIONS(827), + [sym_raw_string] = ACTIONS(825), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(825), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_LT_LPAREN] = ACTIONS(825), + [anon_sym_GT_LPAREN] = ACTIONS(825), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(825), + [anon_sym_AMP] = ACTIONS(825), }, [1079] = { - [anon_sym_SEMI] = ACTIONS(3403), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3401), - [anon_sym_SEMI_SEMI] = ACTIONS(3405), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3405), - [anon_sym_AMP] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(3412), + [sym_comment] = ACTIONS(57), }, [1080] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(3403), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3401), - [anon_sym_SEMI_SEMI] = ACTIONS(3405), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(3405), - [anon_sym_AMP] = ACTIONS(3403), + [sym_subscript] = STATE(1525), + [sym_variable_name] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3416), + [anon_sym_DOLLAR] = ACTIONS(3416), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3418), + [anon_sym_STAR] = ACTIONS(3420), + [anon_sym_AT] = ACTIONS(3420), + [anon_sym_QMARK] = ACTIONS(3420), + [anon_sym_0] = ACTIONS(3418), + [anon_sym__] = ACTIONS(3418), }, [1081] = { - [anon_sym_SEMI] = ACTIONS(3407), - [anon_sym_SEMI_SEMI] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(1188), - [anon_sym_PIPE_PIPE] = ACTIONS(1188), - [anon_sym_EQ_TILDE] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1192), - [anon_sym_PLUS_EQ] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1192), - [anon_sym_GT] = ACTIONS(1192), - [anon_sym_BANG_EQ] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1192), - [anon_sym_DASH_EQ] = ACTIONS(1188), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1188), - [anon_sym_LF] = ACTIONS(3409), - [anon_sym_AMP] = ACTIONS(3407), + [sym_concatenation] = STATE(1528), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1528), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_EQ] = ACTIONS(3424), + [anon_sym_DASH] = ACTIONS(3424), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3426), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(3428), + [anon_sym_COLON] = ACTIONS(3424), + [anon_sym_COLON_QMARK] = ACTIONS(3424), + [anon_sym_COLON_DASH] = ACTIONS(3424), + [anon_sym_PERCENT] = ACTIONS(3424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1082] = { - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_SEMI_SEMI] = ACTIONS(2420), - [anon_sym_AMP_AMP] = ACTIONS(2420), - [anon_sym_PIPE_PIPE] = ACTIONS(2420), - [anon_sym_EQ_TILDE] = ACTIONS(2420), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_EQ] = ACTIONS(2422), - [anon_sym_PLUS_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_PLUS] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_DASH_EQ] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(2420), - [anon_sym_GT_EQ] = ACTIONS(2420), - [anon_sym_PLUS_PLUS] = ACTIONS(2420), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(2420), - [anon_sym_LF] = ACTIONS(2420), - [anon_sym_AMP] = ACTIONS(2422), + [sym_concatenation] = STATE(1531), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1531), + [anon_sym_RBRACE] = ACTIONS(3430), + [anon_sym_EQ] = ACTIONS(3432), + [anon_sym_DASH] = ACTIONS(3432), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3434), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(3436), + [anon_sym_COLON] = ACTIONS(3432), + [anon_sym_COLON_QMARK] = ACTIONS(3432), + [anon_sym_COLON_DASH] = ACTIONS(3432), + [anon_sym_PERCENT] = ACTIONS(3432), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1083] = { - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_SEMI_SEMI] = ACTIONS(2420), - [anon_sym_AMP_AMP] = ACTIONS(2420), - [anon_sym_PIPE_PIPE] = ACTIONS(2420), - [anon_sym_EQ_TILDE] = ACTIONS(2420), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_EQ] = ACTIONS(2422), - [anon_sym_PLUS_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_PLUS] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_DASH_EQ] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(2420), - [anon_sym_GT_EQ] = ACTIONS(2420), - [anon_sym_PLUS_PLUS] = ACTIONS(2420), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(2420), - [anon_sym_LF] = ACTIONS(2420), - [anon_sym_AMP] = ACTIONS(2422), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1534), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(3438), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3440), + [anon_sym_SEMI_SEMI] = ACTIONS(3442), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3442), + [anon_sym_AMP] = ACTIONS(3438), }, [1084] = { - [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), - [sym__special_characters] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_raw_string] = ACTIONS(3411), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1204), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1206), - [anon_sym_BQUOTE] = ACTIONS(1208), - [anon_sym_LT_LPAREN] = ACTIONS(1210), - [anon_sym_GT_LPAREN] = ACTIONS(1210), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3411), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1534), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(3438), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3440), + [anon_sym_SEMI_SEMI] = ACTIONS(3442), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(3442), + [anon_sym_AMP] = ACTIONS(3438), }, [1085] = { - [aux_sym_concatenation_repeat1] = STATE(1524), - [sym__concat] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [sym__special_characters] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_LT_LPAREN] = ACTIONS(807), - [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(809), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(807), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(1535), + [sym_for_statement] = STATE(1535), + [sym_c_style_for_statement] = STATE(1535), + [sym_while_statement] = STATE(1535), + [sym_if_statement] = STATE(1535), + [sym_case_statement] = STATE(1535), + [sym_function_definition] = STATE(1535), + [sym_compound_statement] = STATE(1535), + [sym_subshell] = STATE(1535), + [sym_pipeline] = STATE(1535), + [sym_list] = STATE(1535), + [sym_negated_command] = STATE(1535), + [sym_test_command] = STATE(1535), + [sym_declaration_command] = STATE(1535), + [sym_unset_command] = STATE(1535), + [sym_command] = STATE(1535), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(1536), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [1086] = { - [sym__concat] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(813), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [sym__special_characters] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(813), - [sym_raw_string] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(813), - [anon_sym_LF] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1538), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(3446), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(3440), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3446), + [anon_sym_AMP] = ACTIONS(3444), }, [1087] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1538), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(3446), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(3440), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(3446), + [anon_sym_AMP] = ACTIONS(3444), }, [1088] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(473), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_DOLLAR] = ACTIONS(3415), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), - }, - [1089] = { - [sym__concat] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_SEMI_SEMI] = ACTIONS(845), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(845), - [anon_sym_DOLLAR] = ACTIONS(847), - [sym_raw_string] = ACTIONS(845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(845), - [anon_sym_LT_LPAREN] = ACTIONS(845), - [anon_sym_GT_LPAREN] = ACTIONS(845), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(847), - [anon_sym_LF] = ACTIONS(845), - [anon_sym_AMP] = ACTIONS(845), - }, - [1090] = { - [sym__concat] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_SEMI_SEMI] = ACTIONS(849), - [sym__special_characters] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(851), - [sym_raw_string] = ACTIONS(849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(849), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(851), - [anon_sym_LF] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(849), - }, - [1091] = { - [sym__concat] = ACTIONS(853), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_SEMI_SEMI] = ACTIONS(853), - [sym__special_characters] = ACTIONS(853), - [anon_sym_DQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(855), - [sym_raw_string] = ACTIONS(853), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), - [anon_sym_BQUOTE] = ACTIONS(853), - [anon_sym_LT_LPAREN] = ACTIONS(853), - [anon_sym_GT_LPAREN] = ACTIONS(853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(855), - [anon_sym_LF] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(853), - }, - [1092] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(3417), - [sym_comment] = ACTIONS(55), - }, - [1093] = { - [sym_subscript] = STATE(1530), - [sym_variable_name] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3421), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3423), - [anon_sym_STAR] = ACTIONS(3425), - [anon_sym_AT] = ACTIONS(3425), - [anon_sym_QMARK] = ACTIONS(3425), - [anon_sym_0] = ACTIONS(3423), - [anon_sym__] = ACTIONS(3423), - }, - [1094] = { - [sym_concatenation] = STATE(1533), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1533), - [anon_sym_RBRACE] = ACTIONS(3427), - [anon_sym_EQ] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3431), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(3433), - [anon_sym_COLON] = ACTIONS(3429), - [anon_sym_COLON_QMARK] = ACTIONS(3429), - [anon_sym_COLON_DASH] = ACTIONS(3429), - [anon_sym_PERCENT] = ACTIONS(3429), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [1095] = { - [sym_concatenation] = STATE(1536), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1536), - [anon_sym_RBRACE] = ACTIONS(3435), - [anon_sym_EQ] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3439), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(3441), - [anon_sym_COLON] = ACTIONS(3437), - [anon_sym_COLON_QMARK] = ACTIONS(3437), - [anon_sym_COLON_DASH] = ACTIONS(3437), - [anon_sym_PERCENT] = ACTIONS(3437), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [1096] = { - [anon_sym_SEMI] = ACTIONS(3443), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_SEMI_SEMI] = ACTIONS(3447), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3443), - }, - [1097] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(3443), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_SEMI_SEMI] = ACTIONS(3447), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(3447), - [anon_sym_AMP] = ACTIONS(3443), - }, - [1098] = { - [sym__terminated_statement] = STATE(198), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(1539), [sym_for_statement] = STATE(1539), [sym_c_style_for_statement] = STATE(1539), [sym_while_statement] = STATE(1539), [sym_if_statement] = STATE(1539), [sym_case_statement] = STATE(1539), [sym_function_definition] = STATE(1539), + [sym_compound_statement] = STATE(1539), [sym_subshell] = STATE(1539), [sym_pipeline] = STATE(1539), [sym_list] = STATE(1539), @@ -38299,12168 +41129,13223 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1539), [sym_unset_command] = STATE(1539), [sym_command] = STATE(1539), - [sym_command_name] = STATE(92), + [sym_command_name] = STATE(162), [sym_variable_assignment] = STATE(1540), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(165), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), + [sym_variable_name] = ACTIONS(97), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), + }, + [1089] = { + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1543), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(3448), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3450), + [anon_sym_SEMI_SEMI] = ACTIONS(3452), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3452), + [anon_sym_AMP] = ACTIONS(3448), + }, + [1090] = { + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1543), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(3448), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3450), + [anon_sym_SEMI_SEMI] = ACTIONS(3452), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(3452), + [anon_sym_AMP] = ACTIONS(3448), + }, + [1091] = { + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(1544), + [sym_for_statement] = STATE(1544), + [sym_c_style_for_statement] = STATE(1544), + [sym_while_statement] = STATE(1544), + [sym_if_statement] = STATE(1544), + [sym_case_statement] = STATE(1544), + [sym_function_definition] = STATE(1544), + [sym_compound_statement] = STATE(1544), + [sym_subshell] = STATE(1544), + [sym_pipeline] = STATE(1544), + [sym_list] = STATE(1544), + [sym_negated_command] = STATE(1544), + [sym_test_command] = STATE(1544), + [sym_declaration_command] = STATE(1544), + [sym_unset_command] = STATE(1544), + [sym_command] = STATE(1544), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(1545), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), + }, + [1092] = { + [sym_do_group] = STATE(1546), + [anon_sym_do] = ACTIONS(493), + [sym_comment] = ACTIONS(57), + }, + [1093] = { + [sym_concatenation] = STATE(1093), + [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_for_statement_repeat1] = STATE(1093), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym_SEMI_SEMI] = ACTIONS(3242), + [sym__special_characters] = ACTIONS(3456), + [anon_sym_DQUOTE] = ACTIONS(3459), + [anon_sym_DOLLAR] = ACTIONS(3462), + [sym_raw_string] = ACTIONS(3465), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3468), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3471), + [anon_sym_BQUOTE] = ACTIONS(3474), + [anon_sym_LT_LPAREN] = ACTIONS(3477), + [anon_sym_GT_LPAREN] = ACTIONS(3477), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3480), + [anon_sym_LF] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3242), + }, + [1094] = { + [anon_sym_RPAREN] = ACTIONS(2306), + [anon_sym_AMP_AMP] = ACTIONS(2306), + [anon_sym_PIPE_PIPE] = ACTIONS(2306), + [anon_sym_EQ_TILDE] = ACTIONS(2306), + [anon_sym_EQ_EQ] = ACTIONS(2306), + [anon_sym_EQ] = ACTIONS(2308), + [anon_sym_PLUS_EQ] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2308), + [anon_sym_GT] = ACTIONS(2308), + [anon_sym_BANG_EQ] = ACTIONS(2306), + [anon_sym_PLUS] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2308), + [anon_sym_DASH_EQ] = ACTIONS(2306), + [anon_sym_LT_EQ] = ACTIONS(2306), + [anon_sym_GT_EQ] = ACTIONS(2306), + [anon_sym_PLUS_PLUS] = ACTIONS(2306), + [anon_sym_DASH_DASH] = ACTIONS(2306), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2306), + }, + [1095] = { + [sym__concat] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_EQ_TILDE] = ACTIONS(1726), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ] = ACTIONS(1728), + [anon_sym_PLUS_EQ] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_DASH_EQ] = ACTIONS(1726), + [anon_sym_LT_EQ] = ACTIONS(1726), + [anon_sym_GT_EQ] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1726), + }, + [1096] = { + [aux_sym_concatenation_repeat1] = STATE(1096), + [sym__concat] = ACTIONS(3483), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_EQ_TILDE] = ACTIONS(1726), + [anon_sym_EQ_EQ] = ACTIONS(1726), + [anon_sym_EQ] = ACTIONS(1728), + [anon_sym_PLUS_EQ] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_BANG_EQ] = ACTIONS(1726), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_DASH_EQ] = ACTIONS(1726), + [anon_sym_LT_EQ] = ACTIONS(1726), + [anon_sym_GT_EQ] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1726), + }, + [1097] = { + [sym__concat] = ACTIONS(1733), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_RPAREN] = ACTIONS(1733), + [anon_sym_AMP_AMP] = ACTIONS(1733), + [anon_sym_PIPE_PIPE] = ACTIONS(1733), + [anon_sym_EQ_TILDE] = ACTIONS(1733), + [anon_sym_EQ_EQ] = ACTIONS(1733), + [anon_sym_EQ] = ACTIONS(1735), + [anon_sym_PLUS_EQ] = ACTIONS(1733), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_BANG_EQ] = ACTIONS(1733), + [anon_sym_PLUS] = ACTIONS(1735), + [anon_sym_DASH] = ACTIONS(1735), + [anon_sym_DASH_EQ] = ACTIONS(1733), + [anon_sym_LT_EQ] = ACTIONS(1733), + [anon_sym_GT_EQ] = ACTIONS(1733), + [anon_sym_PLUS_PLUS] = ACTIONS(1733), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1733), + }, + [1098] = { + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(3486), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [1099] = { - [anon_sym_SEMI] = ACTIONS(3449), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(3451), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(3445), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3451), - [anon_sym_AMP] = ACTIONS(3449), + [sym_concatenation] = STATE(1551), + [sym_string] = STATE(1550), + [sym_simple_expansion] = STATE(1550), + [sym_string_expansion] = STATE(1550), + [sym_expansion] = STATE(1550), + [sym_command_substitution] = STATE(1550), + [sym_process_substitution] = STATE(1550), + [anon_sym_RBRACE] = ACTIONS(3488), + [sym__special_characters] = ACTIONS(3490), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(3492), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3492), }, [1100] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(3449), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(3451), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(3445), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(3451), - [anon_sym_AMP] = ACTIONS(3449), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(3494), + [sym_comment] = ACTIONS(57), }, [1101] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(1542), - [sym_c_style_for_statement] = STATE(1542), - [sym_while_statement] = STATE(1542), - [sym_if_statement] = STATE(1542), - [sym_case_statement] = STATE(1542), - [sym_function_definition] = STATE(1542), - [sym_subshell] = STATE(1542), - [sym_pipeline] = STATE(1542), - [sym_list] = STATE(1542), - [sym_negated_command] = STATE(1542), - [sym_test_command] = STATE(1542), - [sym_declaration_command] = STATE(1542), - [sym_unset_command] = STATE(1542), - [sym_command] = STATE(1542), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(1543), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym_concatenation] = STATE(1555), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1555), + [anon_sym_RBRACE] = ACTIONS(3496), + [anon_sym_EQ] = ACTIONS(3498), + [anon_sym_DASH] = ACTIONS(3498), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3500), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(3502), + [anon_sym_COLON] = ACTIONS(3498), + [anon_sym_COLON_QMARK] = ACTIONS(3498), + [anon_sym_COLON_DASH] = ACTIONS(3498), + [anon_sym_PERCENT] = ACTIONS(3498), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1102] = { - [anon_sym_SEMI] = ACTIONS(3453), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3455), - [anon_sym_SEMI_SEMI] = ACTIONS(3457), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3457), - [anon_sym_AMP] = ACTIONS(3453), + [sym_concatenation] = STATE(1557), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1557), + [anon_sym_RBRACE] = ACTIONS(3488), + [anon_sym_EQ] = ACTIONS(3504), + [anon_sym_DASH] = ACTIONS(3504), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3506), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(3508), + [anon_sym_COLON] = ACTIONS(3504), + [anon_sym_COLON_QMARK] = ACTIONS(3504), + [anon_sym_COLON_DASH] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1103] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(3453), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3455), - [anon_sym_SEMI_SEMI] = ACTIONS(3457), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(3457), - [anon_sym_AMP] = ACTIONS(3453), + [sym__concat] = ACTIONS(1834), + [anon_sym_PIPE] = ACTIONS(1836), + [anon_sym_RPAREN] = ACTIONS(1834), + [anon_sym_AMP_AMP] = ACTIONS(1834), + [anon_sym_PIPE_PIPE] = ACTIONS(1834), + [anon_sym_EQ_TILDE] = ACTIONS(1834), + [anon_sym_EQ_EQ] = ACTIONS(1834), + [anon_sym_EQ] = ACTIONS(1836), + [anon_sym_PLUS_EQ] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1836), + [anon_sym_GT] = ACTIONS(1836), + [anon_sym_BANG_EQ] = ACTIONS(1834), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_DASH_EQ] = ACTIONS(1834), + [anon_sym_LT_EQ] = ACTIONS(1834), + [anon_sym_GT_EQ] = ACTIONS(1834), + [anon_sym_PLUS_PLUS] = ACTIONS(1834), + [anon_sym_DASH_DASH] = ACTIONS(1834), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1834), }, [1104] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(1546), - [sym_c_style_for_statement] = STATE(1546), - [sym_while_statement] = STATE(1546), - [sym_if_statement] = STATE(1546), - [sym_case_statement] = STATE(1546), - [sym_function_definition] = STATE(1546), - [sym_subshell] = STATE(1546), - [sym_pipeline] = STATE(1546), - [sym_list] = STATE(1546), - [sym_negated_command] = STATE(1546), - [sym_test_command] = STATE(1546), - [sym_declaration_command] = STATE(1546), - [sym_unset_command] = STATE(1546), - [sym_command] = STATE(1546), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(1547), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_concatenation] = STATE(1560), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1560), + [sym_regex] = ACTIONS(3510), + [anon_sym_RBRACE] = ACTIONS(3512), + [anon_sym_EQ] = ACTIONS(3514), + [anon_sym_DASH] = ACTIONS(3514), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3514), + [anon_sym_COLON_QMARK] = ACTIONS(3514), + [anon_sym_COLON_DASH] = ACTIONS(3514), + [anon_sym_PERCENT] = ACTIONS(3514), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1105] = { - [sym_do_group] = STATE(1548), - [anon_sym_do] = ACTIONS(1212), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3512), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1106] = { - [sym_concatenation] = STATE(1106), - [sym_string] = STATE(617), - [sym_simple_expansion] = STATE(617), - [sym_string_expansion] = STATE(617), - [sym_expansion] = STATE(617), - [sym_command_substitution] = STATE(617), - [sym_process_substitution] = STATE(617), - [aux_sym_for_statement_repeat1] = STATE(1106), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_SEMI_SEMI] = ACTIONS(3269), - [sym__special_characters] = ACTIONS(3461), - [anon_sym_DQUOTE] = ACTIONS(3464), - [anon_sym_DOLLAR] = ACTIONS(3467), - [sym_raw_string] = ACTIONS(3470), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3473), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3476), - [anon_sym_BQUOTE] = ACTIONS(3479), - [anon_sym_LT_LPAREN] = ACTIONS(3482), - [anon_sym_GT_LPAREN] = ACTIONS(3482), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3485), - [anon_sym_LF] = ACTIONS(3269), - [anon_sym_AMP] = ACTIONS(3269), + [sym__concat] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_RPAREN] = ACTIONS(1882), + [anon_sym_AMP_AMP] = ACTIONS(1882), + [anon_sym_PIPE_PIPE] = ACTIONS(1882), + [anon_sym_EQ_TILDE] = ACTIONS(1882), + [anon_sym_EQ_EQ] = ACTIONS(1882), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_PLUS_EQ] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_BANG_EQ] = ACTIONS(1882), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_DASH_EQ] = ACTIONS(1882), + [anon_sym_LT_EQ] = ACTIONS(1882), + [anon_sym_GT_EQ] = ACTIONS(1882), + [anon_sym_PLUS_PLUS] = ACTIONS(1882), + [anon_sym_DASH_DASH] = ACTIONS(1882), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1882), }, [1107] = { - [ts_builtin_sym_end] = ACTIONS(2471), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_esac] = ACTIONS(2471), - [anon_sym_PIPE] = ACTIONS(2473), - [anon_sym_RPAREN] = ACTIONS(2471), - [anon_sym_SEMI_SEMI] = ACTIONS(2471), - [anon_sym_PIPE_AMP] = ACTIONS(2471), - [anon_sym_AMP_AMP] = ACTIONS(2471), - [anon_sym_PIPE_PIPE] = ACTIONS(2471), - [anon_sym_BQUOTE] = ACTIONS(2471), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2471), - [anon_sym_AMP] = ACTIONS(2473), + [sym_concatenation] = STATE(1557), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1557), + [sym_regex] = ACTIONS(3518), + [anon_sym_RBRACE] = ACTIONS(3488), + [anon_sym_EQ] = ACTIONS(3504), + [anon_sym_DASH] = ACTIONS(3504), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3506), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3504), + [anon_sym_COLON_QMARK] = ACTIONS(3504), + [anon_sym_COLON_DASH] = ACTIONS(3504), + [anon_sym_PERCENT] = ACTIONS(3504), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1108] = { - [sym__terminated_statement] = STATE(1187), - [sym_for_statement] = STATE(545), - [sym_c_style_for_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_function_definition] = STATE(545), - [sym_subshell] = STATE(545), - [sym_pipeline] = STATE(545), - [sym_list] = STATE(545), - [sym_negated_command] = STATE(545), - [sym_test_command] = STATE(545), - [sym_declaration_command] = STATE(545), - [sym_unset_command] = STATE(545), - [sym_command] = STATE(545), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(546), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(1187), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_done] = ACTIONS(3488), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3488), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1109] = { - [anon_sym_RPAREN] = ACTIONS(2331), - [anon_sym_AMP_AMP] = ACTIONS(2331), - [anon_sym_PIPE_PIPE] = ACTIONS(2331), - [anon_sym_EQ_TILDE] = ACTIONS(2331), - [anon_sym_EQ_EQ] = ACTIONS(2331), - [anon_sym_EQ] = ACTIONS(2333), - [anon_sym_PLUS_EQ] = ACTIONS(2331), - [anon_sym_LT] = ACTIONS(2333), - [anon_sym_GT] = ACTIONS(2333), - [anon_sym_BANG_EQ] = ACTIONS(2331), - [anon_sym_PLUS] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_DASH_EQ] = ACTIONS(2331), - [anon_sym_LT_EQ] = ACTIONS(2331), - [anon_sym_GT_EQ] = ACTIONS(2331), - [anon_sym_PLUS_PLUS] = ACTIONS(2331), - [anon_sym_DASH_DASH] = ACTIONS(2331), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(2331), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(3520), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1110] = { - [sym__concat] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym_PLUS_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_DASH_EQ] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1763), + [sym__concat] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_EQ_TILDE] = ACTIONS(1890), + [anon_sym_EQ_EQ] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_PLUS_EQ] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_BANG_EQ] = ACTIONS(1890), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_DASH_EQ] = ACTIONS(1890), + [anon_sym_LT_EQ] = ACTIONS(1890), + [anon_sym_GT_EQ] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1890), }, [1111] = { - [aux_sym_concatenation_repeat1] = STATE(1111), - [sym__concat] = ACTIONS(3490), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1763), - [anon_sym_EQ_EQ] = ACTIONS(1763), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym_PLUS_EQ] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_BANG_EQ] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_DASH_EQ] = ACTIONS(1763), - [anon_sym_LT_EQ] = ACTIONS(1763), - [anon_sym_GT_EQ] = ACTIONS(1763), - [anon_sym_PLUS_PLUS] = ACTIONS(1763), - [anon_sym_DASH_DASH] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(3522), + [anon_sym_RPAREN] = ACTIONS(3520), + [anon_sym_SEMI_SEMI] = ACTIONS(3524), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3524), + [anon_sym_AMP] = ACTIONS(3524), }, [1112] = { - [sym__concat] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1770), - [anon_sym_AMP_AMP] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1770), - [anon_sym_EQ_TILDE] = ACTIONS(1770), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1772), - [anon_sym_PLUS_EQ] = ACTIONS(1770), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1772), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_DASH_EQ] = ACTIONS(1770), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_DASH_DASH] = ACTIONS(1770), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1770), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1565), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(3526), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3520), + [anon_sym_SEMI_SEMI] = ACTIONS(3528), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3528), + [anon_sym_AMP] = ACTIONS(3526), }, [1113] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(3493), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1565), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(3526), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3520), + [anon_sym_SEMI_SEMI] = ACTIONS(3528), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(3528), + [anon_sym_AMP] = ACTIONS(3526), }, [1114] = { - [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(3495), - [sym__special_characters] = ACTIONS(3497), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(3499), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3499), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(3520), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1115] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(3501), - [sym_comment] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(3530), + [anon_sym_SEMI_SEMI] = ACTIONS(3532), + [anon_sym_BQUOTE] = ACTIONS(3520), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3532), + [anon_sym_AMP] = ACTIONS(3532), }, [1116] = { - [sym_concatenation] = STATE(1558), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1558), - [anon_sym_RBRACE] = ACTIONS(3503), - [anon_sym_EQ] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3507), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(3509), - [anon_sym_COLON] = ACTIONS(3505), - [anon_sym_COLON_QMARK] = ACTIONS(3505), - [anon_sym_COLON_DASH] = ACTIONS(3505), - [anon_sym_PERCENT] = ACTIONS(3505), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1568), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(3534), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(3536), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(3520), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3536), + [anon_sym_AMP] = ACTIONS(3534), }, [1117] = { - [sym_concatenation] = STATE(1560), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1560), - [anon_sym_RBRACE] = ACTIONS(3495), - [anon_sym_EQ] = ACTIONS(3511), - [anon_sym_DASH] = ACTIONS(3511), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(3515), - [anon_sym_COLON] = ACTIONS(3511), - [anon_sym_COLON_QMARK] = ACTIONS(3511), - [anon_sym_COLON_DASH] = ACTIONS(3511), - [anon_sym_PERCENT] = ACTIONS(3511), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1568), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(3534), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(3536), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(3520), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(3536), + [anon_sym_AMP] = ACTIONS(3534), }, [1118] = { - [sym__concat] = ACTIONS(1871), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_RPAREN] = ACTIONS(1871), - [anon_sym_AMP_AMP] = ACTIONS(1871), - [anon_sym_PIPE_PIPE] = ACTIONS(1871), - [anon_sym_EQ_TILDE] = ACTIONS(1871), - [anon_sym_EQ_EQ] = ACTIONS(1871), - [anon_sym_EQ] = ACTIONS(1873), - [anon_sym_PLUS_EQ] = ACTIONS(1871), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_GT] = ACTIONS(1873), - [anon_sym_BANG_EQ] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1873), - [anon_sym_DASH_EQ] = ACTIONS(1871), - [anon_sym_LT_EQ] = ACTIONS(1871), - [anon_sym_GT_EQ] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1871), - [anon_sym_DASH_DASH] = ACTIONS(1871), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1871), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(3538), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1119] = { - [sym_concatenation] = STATE(1563), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1563), - [sym_regex] = ACTIONS(3517), - [anon_sym_RBRACE] = ACTIONS(3519), - [anon_sym_EQ] = ACTIONS(3521), - [anon_sym_DASH] = ACTIONS(3521), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3523), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3521), - [anon_sym_COLON_QMARK] = ACTIONS(3521), - [anon_sym_COLON_DASH] = ACTIONS(3521), - [anon_sym_PERCENT] = ACTIONS(3521), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(1924), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_RPAREN] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [anon_sym_EQ_TILDE] = ACTIONS(1924), + [anon_sym_EQ_EQ] = ACTIONS(1924), + [anon_sym_EQ] = ACTIONS(1926), + [anon_sym_PLUS_EQ] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_BANG_EQ] = ACTIONS(1924), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_DASH_EQ] = ACTIONS(1924), + [anon_sym_LT_EQ] = ACTIONS(1924), + [anon_sym_GT_EQ] = ACTIONS(1924), + [anon_sym_PLUS_PLUS] = ACTIONS(1924), + [anon_sym_DASH_DASH] = ACTIONS(1924), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(1924), }, [1120] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3519), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(3540), + [anon_sym_RPAREN] = ACTIONS(3538), + [anon_sym_SEMI_SEMI] = ACTIONS(3542), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3542), + [anon_sym_AMP] = ACTIONS(3542), }, [1121] = { - [sym__concat] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1919), - [anon_sym_AMP_AMP] = ACTIONS(1919), - [anon_sym_PIPE_PIPE] = ACTIONS(1919), - [anon_sym_EQ_TILDE] = ACTIONS(1919), - [anon_sym_EQ_EQ] = ACTIONS(1919), - [anon_sym_EQ] = ACTIONS(1921), - [anon_sym_PLUS_EQ] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1921), - [anon_sym_BANG_EQ] = ACTIONS(1919), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_DASH_EQ] = ACTIONS(1919), - [anon_sym_LT_EQ] = ACTIONS(1919), - [anon_sym_GT_EQ] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1919), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1572), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(3544), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3538), + [anon_sym_SEMI_SEMI] = ACTIONS(3546), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3544), }, [1122] = { - [sym_concatenation] = STATE(1560), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1560), - [sym_regex] = ACTIONS(3525), - [anon_sym_RBRACE] = ACTIONS(3495), - [anon_sym_EQ] = ACTIONS(3511), - [anon_sym_DASH] = ACTIONS(3511), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3511), - [anon_sym_COLON_QMARK] = ACTIONS(3511), - [anon_sym_COLON_DASH] = ACTIONS(3511), - [anon_sym_PERCENT] = ACTIONS(3511), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1572), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(3544), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3538), + [anon_sym_SEMI_SEMI] = ACTIONS(3546), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(3546), + [anon_sym_AMP] = ACTIONS(3544), }, [1123] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3495), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_RPAREN] = ACTIONS(2377), + [anon_sym_AMP_AMP] = ACTIONS(2377), + [anon_sym_PIPE_PIPE] = ACTIONS(2377), + [anon_sym_EQ_TILDE] = ACTIONS(2377), + [anon_sym_EQ_EQ] = ACTIONS(2377), + [anon_sym_EQ] = ACTIONS(2379), + [anon_sym_PLUS_EQ] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2379), + [anon_sym_GT] = ACTIONS(2379), + [anon_sym_BANG_EQ] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_DASH_EQ] = ACTIONS(2377), + [anon_sym_LT_EQ] = ACTIONS(2377), + [anon_sym_GT_EQ] = ACTIONS(2377), + [anon_sym_PLUS_PLUS] = ACTIONS(2377), + [anon_sym_DASH_DASH] = ACTIONS(2377), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2377), }, [1124] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(3527), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(2377), + [anon_sym_AMP_AMP] = ACTIONS(2377), + [anon_sym_PIPE_PIPE] = ACTIONS(2377), + [anon_sym_EQ_TILDE] = ACTIONS(2377), + [anon_sym_EQ_EQ] = ACTIONS(2377), + [anon_sym_EQ] = ACTIONS(2379), + [anon_sym_PLUS_EQ] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2379), + [anon_sym_GT] = ACTIONS(2379), + [anon_sym_BANG_EQ] = ACTIONS(2377), + [anon_sym_PLUS] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2379), + [anon_sym_DASH_EQ] = ACTIONS(2377), + [anon_sym_LT_EQ] = ACTIONS(2377), + [anon_sym_GT_EQ] = ACTIONS(2377), + [anon_sym_PLUS_PLUS] = ACTIONS(2377), + [anon_sym_DASH_DASH] = ACTIONS(2377), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2377), }, [1125] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [anon_sym_EQ_TILDE] = ACTIONS(1927), - [anon_sym_EQ_EQ] = ACTIONS(1927), - [anon_sym_EQ] = ACTIONS(1929), - [anon_sym_PLUS_EQ] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1929), - [anon_sym_BANG_EQ] = ACTIONS(1927), - [anon_sym_PLUS] = ACTIONS(1929), - [anon_sym_DASH] = ACTIONS(1929), - [anon_sym_DASH_EQ] = ACTIONS(1927), - [anon_sym_LT_EQ] = ACTIONS(1927), - [anon_sym_GT_EQ] = ACTIONS(1927), - [anon_sym_PLUS_PLUS] = ACTIONS(1927), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1927), + [sym__concat] = ACTIONS(2930), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_PIPE_PIPE] = ACTIONS(2930), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2930), + [anon_sym_EQ_TILDE] = ACTIONS(2930), + [anon_sym_EQ_EQ] = ACTIONS(2930), + [anon_sym_EQ] = ACTIONS(2932), + [anon_sym_PLUS_EQ] = ACTIONS(2930), + [anon_sym_LT] = ACTIONS(2932), + [anon_sym_GT] = ACTIONS(2932), + [anon_sym_BANG_EQ] = ACTIONS(2930), + [anon_sym_PLUS] = ACTIONS(2932), + [anon_sym_DASH] = ACTIONS(2932), + [anon_sym_DASH_EQ] = ACTIONS(2930), + [anon_sym_LT_EQ] = ACTIONS(2930), + [anon_sym_GT_EQ] = ACTIONS(2930), + [anon_sym_PLUS_PLUS] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2930), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2930), }, [1126] = { - [anon_sym_SEMI] = ACTIONS(3529), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3527), - [anon_sym_SEMI_SEMI] = ACTIONS(3531), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3531), - [anon_sym_AMP] = ACTIONS(3529), + [sym__concat] = ACTIONS(2944), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2944), + [anon_sym_EQ_TILDE] = ACTIONS(2944), + [anon_sym_EQ_EQ] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2946), + [anon_sym_PLUS_EQ] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_GT] = ACTIONS(2946), + [anon_sym_BANG_EQ] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2946), + [anon_sym_DASH] = ACTIONS(2946), + [anon_sym_DASH_EQ] = ACTIONS(2944), + [anon_sym_LT_EQ] = ACTIONS(2944), + [anon_sym_GT_EQ] = ACTIONS(2944), + [anon_sym_PLUS_PLUS] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2944), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2944), }, [1127] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(3529), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3527), - [anon_sym_SEMI_SEMI] = ACTIONS(3531), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(3531), - [anon_sym_AMP] = ACTIONS(3529), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(3548), + [sym_comment] = ACTIONS(57), }, [1128] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(3527), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(3550), + [sym_comment] = ACTIONS(57), }, [1129] = { - [anon_sym_SEMI] = ACTIONS(3533), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(3535), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(3527), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3535), - [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_RBRACE] = ACTIONS(3550), + [sym_comment] = ACTIONS(57), }, [1130] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(3533), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(3535), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(3527), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(3535), - [anon_sym_AMP] = ACTIONS(3533), + [sym_concatenation] = STATE(1577), + [sym_string] = STATE(1576), + [sym_simple_expansion] = STATE(1576), + [sym_string_expansion] = STATE(1576), + [sym_expansion] = STATE(1576), + [sym_command_substitution] = STATE(1576), + [sym_process_substitution] = STATE(1576), + [anon_sym_RBRACE] = ACTIONS(3550), + [sym__special_characters] = ACTIONS(3552), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(3554), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3554), }, [1131] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(3537), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__concat] = ACTIONS(2980), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2980), + [anon_sym_AMP_AMP] = ACTIONS(2980), + [anon_sym_PIPE_PIPE] = ACTIONS(2980), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2980), + [anon_sym_EQ_TILDE] = ACTIONS(2980), + [anon_sym_EQ_EQ] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(2982), + [anon_sym_PLUS_EQ] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_GT] = ACTIONS(2982), + [anon_sym_BANG_EQ] = ACTIONS(2980), + [anon_sym_PLUS] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2982), + [anon_sym_DASH_EQ] = ACTIONS(2980), + [anon_sym_LT_EQ] = ACTIONS(2980), + [anon_sym_GT_EQ] = ACTIONS(2980), + [anon_sym_PLUS_PLUS] = ACTIONS(2980), + [anon_sym_DASH_DASH] = ACTIONS(2980), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2980), }, [1132] = { - [sym__concat] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_AMP_AMP] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1959), - [anon_sym_EQ_TILDE] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1961), - [anon_sym_PLUS_EQ] = ACTIONS(1959), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_BANG_EQ] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_DASH_EQ] = ACTIONS(1959), - [anon_sym_LT_EQ] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1959), - [anon_sym_PLUS_PLUS] = ACTIONS(1959), - [anon_sym_DASH_DASH] = ACTIONS(1959), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(1959), + [sym_concatenation] = STATE(1580), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1580), + [sym_regex] = ACTIONS(3556), + [anon_sym_RBRACE] = ACTIONS(3558), + [anon_sym_EQ] = ACTIONS(3560), + [anon_sym_DASH] = ACTIONS(3560), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3562), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3560), + [anon_sym_COLON_QMARK] = ACTIONS(3560), + [anon_sym_COLON_DASH] = ACTIONS(3560), + [anon_sym_PERCENT] = ACTIONS(3560), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1133] = { - [anon_sym_SEMI] = ACTIONS(3539), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3537), - [anon_sym_SEMI_SEMI] = ACTIONS(3541), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3541), - [anon_sym_AMP] = ACTIONS(3539), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3558), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1134] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(3539), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3537), - [anon_sym_SEMI_SEMI] = ACTIONS(3541), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(3541), - [anon_sym_AMP] = ACTIONS(3539), + [sym_concatenation] = STATE(1582), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1582), + [sym_regex] = ACTIONS(3564), + [anon_sym_RBRACE] = ACTIONS(3550), + [anon_sym_EQ] = ACTIONS(3566), + [anon_sym_DASH] = ACTIONS(3566), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3568), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3566), + [anon_sym_COLON_QMARK] = ACTIONS(3566), + [anon_sym_COLON_DASH] = ACTIONS(3566), + [anon_sym_PERCENT] = ACTIONS(3566), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1135] = { - [anon_sym_RPAREN] = ACTIONS(2420), - [anon_sym_AMP_AMP] = ACTIONS(2420), - [anon_sym_PIPE_PIPE] = ACTIONS(2420), - [anon_sym_EQ_TILDE] = ACTIONS(2420), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_EQ] = ACTIONS(2422), - [anon_sym_PLUS_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_PLUS] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_DASH_EQ] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(2420), - [anon_sym_GT_EQ] = ACTIONS(2420), - [anon_sym_PLUS_PLUS] = ACTIONS(2420), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(2420), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3550), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1136] = { - [anon_sym_RPAREN] = ACTIONS(2420), - [anon_sym_AMP_AMP] = ACTIONS(2420), - [anon_sym_PIPE_PIPE] = ACTIONS(2420), - [anon_sym_EQ_TILDE] = ACTIONS(2420), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_EQ] = ACTIONS(2422), - [anon_sym_PLUS_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_PLUS] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_DASH_EQ] = ACTIONS(2420), - [anon_sym_LT_EQ] = ACTIONS(2420), - [anon_sym_GT_EQ] = ACTIONS(2420), - [anon_sym_PLUS_PLUS] = ACTIONS(2420), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(2420), + [sym_concatenation] = STATE(1584), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1584), + [anon_sym_RBRACE] = ACTIONS(3570), + [anon_sym_EQ] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3574), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3572), + [anon_sym_COLON_QMARK] = ACTIONS(3572), + [anon_sym_COLON_DASH] = ACTIONS(3572), + [anon_sym_PERCENT] = ACTIONS(3572), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1137] = { - [sym__concat] = ACTIONS(2959), - [anon_sym_RPAREN_RPAREN] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2959), - [anon_sym_EQ_TILDE] = ACTIONS(2959), - [anon_sym_EQ_EQ] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(2961), - [anon_sym_PLUS_EQ] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_GT] = ACTIONS(2961), - [anon_sym_BANG_EQ] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_DASH_EQ] = ACTIONS(2959), - [anon_sym_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_EQ] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(2959), + [sym__concat] = ACTIONS(3036), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3036), + [anon_sym_EQ_TILDE] = ACTIONS(3036), + [anon_sym_EQ_EQ] = ACTIONS(3036), + [anon_sym_EQ] = ACTIONS(3038), + [anon_sym_PLUS_EQ] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3038), + [anon_sym_BANG_EQ] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(3038), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym_DASH_EQ] = ACTIONS(3036), + [anon_sym_LT_EQ] = ACTIONS(3036), + [anon_sym_GT_EQ] = ACTIONS(3036), + [anon_sym_PLUS_PLUS] = ACTIONS(3036), + [anon_sym_DASH_DASH] = ACTIONS(3036), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3036), }, [1138] = { - [sym__concat] = ACTIONS(2973), - [anon_sym_RPAREN_RPAREN] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2973), - [anon_sym_EQ_TILDE] = ACTIONS(2973), - [anon_sym_EQ_EQ] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_PLUS_EQ] = ACTIONS(2973), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_GT] = ACTIONS(2975), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2975), - [anon_sym_DASH_EQ] = ACTIONS(2973), - [anon_sym_LT_EQ] = ACTIONS(2973), - [anon_sym_GT_EQ] = ACTIONS(2973), - [anon_sym_PLUS_PLUS] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2973), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(2973), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3570), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1139] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(3543), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(1582), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1582), + [anon_sym_RBRACE] = ACTIONS(3550), + [anon_sym_EQ] = ACTIONS(3566), + [anon_sym_DASH] = ACTIONS(3566), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3568), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3566), + [anon_sym_COLON_QMARK] = ACTIONS(3566), + [anon_sym_COLON_DASH] = ACTIONS(3566), + [anon_sym_PERCENT] = ACTIONS(3566), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1140] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(3545), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(3091), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3091), + [anon_sym_EQ_TILDE] = ACTIONS(3091), + [anon_sym_EQ_EQ] = ACTIONS(3091), + [anon_sym_EQ] = ACTIONS(3093), + [anon_sym_PLUS_EQ] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_GT] = ACTIONS(3093), + [anon_sym_BANG_EQ] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3093), + [anon_sym_DASH_EQ] = ACTIONS(3091), + [anon_sym_LT_EQ] = ACTIONS(3091), + [anon_sym_GT_EQ] = ACTIONS(3091), + [anon_sym_PLUS_PLUS] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3091), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3091), }, [1141] = { - [anon_sym_RBRACE] = ACTIONS(3545), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(3576), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1142] = { - [sym_concatenation] = STATE(1574), - [sym_string] = STATE(1573), - [sym_simple_expansion] = STATE(1573), - [sym_string_expansion] = STATE(1573), - [sym_expansion] = STATE(1573), - [sym_command_substitution] = STATE(1573), - [sym_process_substitution] = STATE(1573), - [anon_sym_RBRACE] = ACTIONS(3545), - [sym__special_characters] = ACTIONS(3547), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(3549), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3549), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(3576), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1143] = { - [sym__concat] = ACTIONS(3009), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3009), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3009), - [anon_sym_EQ_TILDE] = ACTIONS(3009), - [anon_sym_EQ_EQ] = ACTIONS(3009), - [anon_sym_EQ] = ACTIONS(3011), - [anon_sym_PLUS_EQ] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(3011), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_BANG_EQ] = ACTIONS(3009), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_DASH_EQ] = ACTIONS(3009), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_PLUS_PLUS] = ACTIONS(3009), - [anon_sym_DASH_DASH] = ACTIONS(3009), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(3578), + [anon_sym_RPAREN] = ACTIONS(3576), + [anon_sym_SEMI_SEMI] = ACTIONS(3580), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3580), + [anon_sym_AMP] = ACTIONS(3580), }, [1144] = { - [sym_concatenation] = STATE(1577), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1577), - [sym_regex] = ACTIONS(3551), - [anon_sym_RBRACE] = ACTIONS(3553), - [anon_sym_EQ] = ACTIONS(3555), - [anon_sym_DASH] = ACTIONS(3555), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3557), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3555), - [anon_sym_COLON_QMARK] = ACTIONS(3555), - [anon_sym_COLON_DASH] = ACTIONS(3555), - [anon_sym_PERCENT] = ACTIONS(3555), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(3576), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [1145] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3553), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(3576), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1146] = { - [sym_concatenation] = STATE(1579), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1579), - [sym_regex] = ACTIONS(3559), - [anon_sym_RBRACE] = ACTIONS(3545), - [anon_sym_EQ] = ACTIONS(3561), - [anon_sym_DASH] = ACTIONS(3561), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3563), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3561), - [anon_sym_COLON_QMARK] = ACTIONS(3561), - [anon_sym_COLON_DASH] = ACTIONS(3561), - [anon_sym_PERCENT] = ACTIONS(3561), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_SEMI_SEMI] = ACTIONS(3584), + [anon_sym_BQUOTE] = ACTIONS(3576), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3584), + [anon_sym_AMP] = ACTIONS(3584), }, [1147] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3545), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(3121), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3121), + [anon_sym_AMP_AMP] = ACTIONS(3121), + [anon_sym_PIPE_PIPE] = ACTIONS(3121), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3121), + [anon_sym_EQ_TILDE] = ACTIONS(3121), + [anon_sym_EQ_EQ] = ACTIONS(3121), + [anon_sym_EQ] = ACTIONS(3123), + [anon_sym_PLUS_EQ] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(3123), + [anon_sym_GT] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(3121), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_DASH_EQ] = ACTIONS(3121), + [anon_sym_LT_EQ] = ACTIONS(3121), + [anon_sym_GT_EQ] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3121), }, [1148] = { - [sym_concatenation] = STATE(1581), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1581), - [anon_sym_RBRACE] = ACTIONS(3565), - [anon_sym_EQ] = ACTIONS(3567), - [anon_sym_DASH] = ACTIONS(3567), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3569), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3567), - [anon_sym_COLON_QMARK] = ACTIONS(3567), - [anon_sym_COLON_DASH] = ACTIONS(3567), - [anon_sym_PERCENT] = ACTIONS(3567), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(3586), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1149] = { - [sym__concat] = ACTIONS(3065), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_PIPE_PIPE] = ACTIONS(3065), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3065), - [anon_sym_EQ_TILDE] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_PLUS_EQ] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_DASH_EQ] = ACTIONS(3065), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT_EQ] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3065), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(3586), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1150] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3565), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_RPAREN] = ACTIONS(3586), + [anon_sym_SEMI_SEMI] = ACTIONS(3590), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3590), + [anon_sym_AMP] = ACTIONS(3590), }, [1151] = { - [sym_concatenation] = STATE(1579), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1579), - [anon_sym_RBRACE] = ACTIONS(3545), - [anon_sym_EQ] = ACTIONS(3561), - [anon_sym_DASH] = ACTIONS(3561), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3563), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3561), - [anon_sym_COLON_QMARK] = ACTIONS(3561), - [anon_sym_COLON_DASH] = ACTIONS(3561), - [anon_sym_PERCENT] = ACTIONS(3561), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1590), + [sym__simple_heredoc_body] = ACTIONS(779), + [sym__heredoc_body_beginning] = ACTIONS(779), + [sym_file_descriptor] = ACTIONS(779), + [sym__concat] = ACTIONS(1109), + [sym_variable_name] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [anon_sym_PIPE_AMP] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_AMP_GT] = ACTIONS(781), + [anon_sym_AMP_GT_GT] = ACTIONS(779), + [anon_sym_LT_AMP] = ACTIONS(779), + [anon_sym_GT_AMP] = ACTIONS(779), + [anon_sym_LT_LT] = ACTIONS(781), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_LT] = ACTIONS(779), + [sym__special_characters] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(781), + [sym_raw_string] = ACTIONS(779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(779), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(781), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(781), }, [1152] = { - [sym__concat] = ACTIONS(3120), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3120), - [anon_sym_AMP_AMP] = ACTIONS(3120), - [anon_sym_PIPE_PIPE] = ACTIONS(3120), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3120), - [anon_sym_EQ_TILDE] = ACTIONS(3120), - [anon_sym_EQ_EQ] = ACTIONS(3120), - [anon_sym_EQ] = ACTIONS(3122), - [anon_sym_PLUS_EQ] = ACTIONS(3120), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_GT] = ACTIONS(3122), - [anon_sym_BANG_EQ] = ACTIONS(3120), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_DASH_EQ] = ACTIONS(3120), - [anon_sym_LT_EQ] = ACTIONS(3120), - [anon_sym_GT_EQ] = ACTIONS(3120), - [anon_sym_PLUS_PLUS] = ACTIONS(3120), - [anon_sym_DASH_DASH] = ACTIONS(3120), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3120), + [aux_sym_concatenation_repeat1] = STATE(663), + [sym__simple_heredoc_body] = ACTIONS(1107), + [sym__heredoc_body_beginning] = ACTIONS(1107), + [sym_file_descriptor] = ACTIONS(1107), + [sym__concat] = ACTIONS(671), + [sym_variable_name] = ACTIONS(1107), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_SEMI_SEMI] = ACTIONS(1107), + [anon_sym_PIPE_AMP] = ACTIONS(1107), + [anon_sym_AMP_AMP] = ACTIONS(1107), + [anon_sym_PIPE_PIPE] = ACTIONS(1107), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1107), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1107), + [anon_sym_LT_AMP] = ACTIONS(1107), + [anon_sym_GT_AMP] = ACTIONS(1107), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_LT_LT_DASH] = ACTIONS(1107), + [anon_sym_LT_LT_LT] = ACTIONS(1107), + [sym__special_characters] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(1107), + [anon_sym_DOLLAR] = ACTIONS(1111), + [sym_raw_string] = ACTIONS(1107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1107), + [anon_sym_BQUOTE] = ACTIONS(1107), + [anon_sym_LT_LPAREN] = ACTIONS(1107), + [anon_sym_GT_LPAREN] = ACTIONS(1107), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1111), + [sym_word] = ACTIONS(1111), + [anon_sym_LF] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1111), }, [1153] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(3571), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [aux_sym_concatenation_repeat1] = STATE(663), + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(671), + [sym_variable_name] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1087), + [anon_sym_SEMI_SEMI] = ACTIONS(1085), + [anon_sym_PIPE_AMP] = ACTIONS(1085), + [anon_sym_AMP_AMP] = ACTIONS(1085), + [anon_sym_PIPE_PIPE] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_AMP_GT] = ACTIONS(1087), + [anon_sym_AMP_GT_GT] = ACTIONS(1085), + [anon_sym_LT_AMP] = ACTIONS(1085), + [anon_sym_GT_AMP] = ACTIONS(1085), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_LT_LT_DASH] = ACTIONS(1085), + [anon_sym_LT_LT_LT] = ACTIONS(1085), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1087), + [sym_raw_string] = ACTIONS(1085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_LT_LPAREN] = ACTIONS(1085), + [anon_sym_GT_LPAREN] = ACTIONS(1085), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1087), + [sym_word] = ACTIONS(1087), + [anon_sym_LF] = ACTIONS(1085), + [anon_sym_AMP] = ACTIONS(1087), }, [1154] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(3571), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [aux_sym_concatenation_repeat1] = STATE(1154), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(2681), + [sym_variable_name] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1728), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), }, [1155] = { - [sym__concat] = ACTIONS(3158), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3158), - [anon_sym_AMP_AMP] = ACTIONS(3158), - [anon_sym_PIPE_PIPE] = ACTIONS(3158), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3158), - [anon_sym_EQ_TILDE] = ACTIONS(3158), - [anon_sym_EQ_EQ] = ACTIONS(3158), - [anon_sym_EQ] = ACTIONS(3160), - [anon_sym_PLUS_EQ] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3160), - [anon_sym_GT] = ACTIONS(3160), - [anon_sym_BANG_EQ] = ACTIONS(3158), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_DASH_EQ] = ACTIONS(3158), - [anon_sym_LT_EQ] = ACTIONS(3158), - [anon_sym_GT_EQ] = ACTIONS(3158), - [anon_sym_PLUS_PLUS] = ACTIONS(3158), - [anon_sym_DASH_DASH] = ACTIONS(3158), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3158), + [aux_sym_concatenation_repeat1] = STATE(1155), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(2746), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1728), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), }, [1156] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(3573), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__simple_heredoc_body] = ACTIONS(3592), + [sym__heredoc_body_beginning] = ACTIONS(3592), + [sym_file_descriptor] = ACTIONS(3592), + [ts_builtin_sym_end] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym_esac] = ACTIONS(3592), + [anon_sym_PIPE] = ACTIONS(3594), + [anon_sym_RPAREN] = ACTIONS(3592), + [anon_sym_SEMI_SEMI] = ACTIONS(3592), + [anon_sym_PIPE_AMP] = ACTIONS(3592), + [anon_sym_AMP_AMP] = ACTIONS(3592), + [anon_sym_PIPE_PIPE] = ACTIONS(3592), + [anon_sym_LT] = ACTIONS(3594), + [anon_sym_GT] = ACTIONS(3594), + [anon_sym_GT_GT] = ACTIONS(3592), + [anon_sym_AMP_GT] = ACTIONS(3594), + [anon_sym_AMP_GT_GT] = ACTIONS(3592), + [anon_sym_LT_AMP] = ACTIONS(3592), + [anon_sym_GT_AMP] = ACTIONS(3592), + [anon_sym_LT_LT] = ACTIONS(3594), + [anon_sym_LT_LT_DASH] = ACTIONS(3592), + [anon_sym_LT_LT_LT] = ACTIONS(3592), + [anon_sym_BQUOTE] = ACTIONS(3592), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3592), + [anon_sym_AMP] = ACTIONS(3594), }, [1157] = { - [sym_concatenation] = STATE(1586), - [sym_string] = STATE(1585), - [sym_simple_expansion] = STATE(1585), - [sym_string_expansion] = STATE(1585), - [sym_expansion] = STATE(1585), - [sym_command_substitution] = STATE(1585), - [sym_process_substitution] = STATE(1585), - [sym__special_characters] = ACTIONS(3575), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(3577), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2406), - [anon_sym_LT_LPAREN] = ACTIONS(2408), - [anon_sym_GT_LPAREN] = ACTIONS(2408), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3577), + [sym__terminated_statement] = STATE(1157), + [sym_redirected_statement] = STATE(524), + [sym_for_statement] = STATE(524), + [sym_c_style_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_compound_statement] = STATE(524), + [sym_subshell] = STATE(524), + [sym_pipeline] = STATE(524), + [sym_list] = STATE(524), + [sym_negated_command] = STATE(524), + [sym_test_command] = STATE(524), + [sym_declaration_command] = STATE(524), + [sym_unset_command] = STATE(524), + [sym_command] = STATE(524), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(525), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(1157), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(973), + [sym_variable_name] = ACTIONS(976), + [anon_sym_for] = ACTIONS(979), + [anon_sym_LPAREN_LPAREN] = ACTIONS(982), + [anon_sym_while] = ACTIONS(985), + [anon_sym_done] = ACTIONS(3596), + [anon_sym_if] = ACTIONS(988), + [anon_sym_case] = ACTIONS(991), + [anon_sym_function] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(997), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1009), + [anon_sym_declare] = ACTIONS(1012), + [anon_sym_typeset] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1012), + [anon_sym_readonly] = ACTIONS(1012), + [anon_sym_local] = ACTIONS(1012), + [anon_sym_unset] = ACTIONS(1015), + [anon_sym_unsetenv] = ACTIONS(1015), + [anon_sym_LT] = ACTIONS(1018), + [anon_sym_GT] = ACTIONS(1018), + [anon_sym_GT_GT] = ACTIONS(1021), + [anon_sym_AMP_GT] = ACTIONS(1018), + [anon_sym_AMP_GT_GT] = ACTIONS(1021), + [anon_sym_LT_AMP] = ACTIONS(1021), + [anon_sym_GT_AMP] = ACTIONS(1021), + [sym__special_characters] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1027), + [anon_sym_DOLLAR] = ACTIONS(1030), + [sym_raw_string] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), + [anon_sym_BQUOTE] = ACTIONS(1042), + [anon_sym_LT_LPAREN] = ACTIONS(1045), + [anon_sym_GT_LPAREN] = ACTIONS(1045), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1048), }, [1158] = { - [aux_sym_concatenation_repeat1] = STATE(1588), - [sym_file_descriptor] = ACTIONS(773), - [sym__concat] = ACTIONS(3579), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(773), - [anon_sym_AMP_GT] = ACTIONS(777), - [anon_sym_AMP_GT_GT] = ACTIONS(773), - [anon_sym_LT_AMP] = ACTIONS(773), - [anon_sym_GT_AMP] = ACTIONS(773), - [anon_sym_LT_LT] = ACTIONS(777), - [anon_sym_LT_LT_DASH] = ACTIONS(773), - [anon_sym_LT_LT_LT] = ACTIONS(773), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(777), + [aux_sym_concatenation_repeat1] = STATE(1160), + [sym__simple_heredoc_body] = ACTIONS(1067), + [sym__heredoc_body_beginning] = ACTIONS(1067), + [sym_file_descriptor] = ACTIONS(1067), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1069), + [anon_sym_SEMI_SEMI] = ACTIONS(1067), + [anon_sym_PIPE_AMP] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1067), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1069), + [anon_sym_GT] = ACTIONS(1069), + [anon_sym_GT_GT] = ACTIONS(1067), + [anon_sym_AMP_GT] = ACTIONS(1069), + [anon_sym_AMP_GT_GT] = ACTIONS(1067), + [anon_sym_LT_AMP] = ACTIONS(1067), + [anon_sym_GT_AMP] = ACTIONS(1067), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_LT_LT_DASH] = ACTIONS(1067), + [anon_sym_LT_LT_LT] = ACTIONS(1067), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), }, [1159] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(1591), - [anon_sym_DQUOTE] = ACTIONS(3581), - [anon_sym_DOLLAR] = ACTIONS(3583), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [aux_sym_concatenation_repeat1] = STATE(1160), + [sym__simple_heredoc_body] = ACTIONS(1071), + [sym__heredoc_body_beginning] = ACTIONS(1071), + [sym_file_descriptor] = ACTIONS(1071), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_SEMI_SEMI] = ACTIONS(1071), + [anon_sym_PIPE_AMP] = ACTIONS(1071), + [anon_sym_AMP_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1071), + [anon_sym_LT] = ACTIONS(1073), + [anon_sym_GT] = ACTIONS(1073), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_AMP_GT] = ACTIONS(1073), + [anon_sym_AMP_GT_GT] = ACTIONS(1071), + [anon_sym_LT_AMP] = ACTIONS(1071), + [anon_sym_GT_AMP] = ACTIONS(1071), + [anon_sym_LT_LT] = ACTIONS(1073), + [anon_sym_LT_LT_DASH] = ACTIONS(1071), + [anon_sym_LT_LT_LT] = ACTIONS(1071), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), }, [1160] = { - [sym_string] = STATE(1593), - [anon_sym_DASH] = ACTIONS(3585), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(3585), - [sym_raw_string] = ACTIONS(3587), - [anon_sym_POUND] = ACTIONS(3585), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3589), - [anon_sym_STAR] = ACTIONS(3591), - [anon_sym_AT] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3591), - [anon_sym_0] = ACTIONS(3589), - [anon_sym__] = ACTIONS(3589), + [aux_sym_concatenation_repeat1] = STATE(1591), + [sym__simple_heredoc_body] = ACTIONS(779), + [sym__heredoc_body_beginning] = ACTIONS(779), + [sym_file_descriptor] = ACTIONS(779), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [anon_sym_PIPE_AMP] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_AMP_GT] = ACTIONS(781), + [anon_sym_AMP_GT_GT] = ACTIONS(779), + [anon_sym_LT_AMP] = ACTIONS(779), + [anon_sym_GT_AMP] = ACTIONS(779), + [anon_sym_LT_LT] = ACTIONS(781), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_LT] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(781), }, [1161] = { - [aux_sym_concatenation_repeat1] = STATE(1588), - [sym_file_descriptor] = ACTIONS(791), - [sym__concat] = ACTIONS(3579), - [ts_builtin_sym_end] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_SEMI_SEMI] = ACTIONS(791), - [anon_sym_PIPE_AMP] = ACTIONS(791), - [anon_sym_AMP_AMP] = ACTIONS(791), - [anon_sym_PIPE_PIPE] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_GT_GT] = ACTIONS(791), - [anon_sym_AMP_GT] = ACTIONS(793), - [anon_sym_AMP_GT_GT] = ACTIONS(791), - [anon_sym_LT_AMP] = ACTIONS(791), - [anon_sym_GT_AMP] = ACTIONS(791), - [anon_sym_LT_LT] = ACTIONS(793), - [anon_sym_LT_LT_DASH] = ACTIONS(791), - [anon_sym_LT_LT_LT] = ACTIONS(791), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_AMP] = ACTIONS(793), + [anon_sym_then] = ACTIONS(3598), + [sym_comment] = ACTIONS(57), }, [1162] = { - [sym_subscript] = STATE(1598), - [sym_variable_name] = ACTIONS(3593), - [anon_sym_BANG] = ACTIONS(3595), - [anon_sym_DASH] = ACTIONS(3597), - [anon_sym_DOLLAR] = ACTIONS(3597), - [anon_sym_POUND] = ACTIONS(3595), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3599), - [anon_sym_STAR] = ACTIONS(3601), - [anon_sym_AT] = ACTIONS(3601), - [anon_sym_QMARK] = ACTIONS(3601), - [anon_sym_0] = ACTIONS(3599), - [anon_sym__] = ACTIONS(3599), + [sym__terminated_statement] = STATE(1593), + [sym_redirected_statement] = STATE(524), + [sym_for_statement] = STATE(524), + [sym_c_style_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_compound_statement] = STATE(524), + [sym_subshell] = STATE(524), + [sym_pipeline] = STATE(524), + [sym_list] = STATE(524), + [sym_negated_command] = STATE(524), + [sym_test_command] = STATE(524), + [sym_declaration_command] = STATE(524), + [sym_unset_command] = STATE(524), + [sym_command] = STATE(524), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(525), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(1593), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_fi] = ACTIONS(3600), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_typeset] = ACTIONS(101), + [anon_sym_export] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_local] = ACTIONS(101), + [anon_sym_unset] = ACTIONS(103), + [anon_sym_unsetenv] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [1163] = { - [sym__terminated_statement] = STATE(1601), - [sym_for_statement] = STATE(1599), - [sym_c_style_for_statement] = STATE(1599), - [sym_while_statement] = STATE(1599), - [sym_if_statement] = STATE(1599), - [sym_case_statement] = STATE(1599), - [sym_function_definition] = STATE(1599), - [sym_subshell] = STATE(1599), - [sym_pipeline] = STATE(1599), - [sym_list] = STATE(1599), - [sym_negated_command] = STATE(1599), - [sym_test_command] = STATE(1599), - [sym_declaration_command] = STATE(1599), - [sym_unset_command] = STATE(1599), - [sym_command] = STATE(1599), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(1600), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(1601), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym__simple_heredoc_body] = ACTIONS(3602), + [sym__heredoc_body_beginning] = ACTIONS(3602), + [sym_file_descriptor] = ACTIONS(3602), + [ts_builtin_sym_end] = ACTIONS(3602), + [anon_sym_SEMI] = ACTIONS(3604), + [anon_sym_esac] = ACTIONS(3602), + [anon_sym_PIPE] = ACTIONS(3604), + [anon_sym_RPAREN] = ACTIONS(3602), + [anon_sym_SEMI_SEMI] = ACTIONS(3602), + [anon_sym_PIPE_AMP] = ACTIONS(3602), + [anon_sym_AMP_AMP] = ACTIONS(3602), + [anon_sym_PIPE_PIPE] = ACTIONS(3602), + [anon_sym_LT] = ACTIONS(3604), + [anon_sym_GT] = ACTIONS(3604), + [anon_sym_GT_GT] = ACTIONS(3602), + [anon_sym_AMP_GT] = ACTIONS(3604), + [anon_sym_AMP_GT_GT] = ACTIONS(3602), + [anon_sym_LT_AMP] = ACTIONS(3602), + [anon_sym_GT_AMP] = ACTIONS(3602), + [anon_sym_LT_LT] = ACTIONS(3604), + [anon_sym_LT_LT_DASH] = ACTIONS(3602), + [anon_sym_LT_LT_LT] = ACTIONS(3602), + [anon_sym_BQUOTE] = ACTIONS(3602), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3602), + [anon_sym_AMP] = ACTIONS(3604), }, [1164] = { - [sym__terminated_statement] = STATE(1604), - [sym_for_statement] = STATE(1602), - [sym_c_style_for_statement] = STATE(1602), - [sym_while_statement] = STATE(1602), - [sym_if_statement] = STATE(1602), - [sym_case_statement] = STATE(1602), - [sym_function_definition] = STATE(1602), - [sym_subshell] = STATE(1602), - [sym_pipeline] = STATE(1602), - [sym_list] = STATE(1602), - [sym_negated_command] = STATE(1602), - [sym_test_command] = STATE(1602), - [sym_declaration_command] = STATE(1602), - [sym_unset_command] = STATE(1602), - [sym_command] = STATE(1602), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(1603), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(1604), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [anon_sym_fi] = ACTIONS(3606), + [sym_comment] = ACTIONS(57), }, [1165] = { - [sym__terminated_statement] = STATE(1607), - [sym_for_statement] = STATE(1605), - [sym_c_style_for_statement] = STATE(1605), - [sym_while_statement] = STATE(1605), - [sym_if_statement] = STATE(1605), - [sym_case_statement] = STATE(1605), - [sym_function_definition] = STATE(1605), - [sym_subshell] = STATE(1605), - [sym_pipeline] = STATE(1605), - [sym_list] = STATE(1605), - [sym_negated_command] = STATE(1605), - [sym_test_command] = STATE(1605), - [sym_declaration_command] = STATE(1605), - [sym_unset_command] = STATE(1605), - [sym_command] = STATE(1605), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(1606), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(1607), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym__terminated_statement] = STATE(1165), + [sym_redirected_statement] = STATE(524), + [sym_for_statement] = STATE(524), + [sym_c_style_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_compound_statement] = STATE(524), + [sym_subshell] = STATE(524), + [sym_pipeline] = STATE(524), + [sym_list] = STATE(524), + [sym_negated_command] = STATE(524), + [sym_test_command] = STATE(524), + [sym_declaration_command] = STATE(524), + [sym_unset_command] = STATE(524), + [sym_command] = STATE(524), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(525), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(1165), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(973), + [sym_variable_name] = ACTIONS(976), + [anon_sym_for] = ACTIONS(979), + [anon_sym_LPAREN_LPAREN] = ACTIONS(982), + [anon_sym_while] = ACTIONS(985), + [anon_sym_if] = ACTIONS(988), + [anon_sym_fi] = ACTIONS(3596), + [anon_sym_elif] = ACTIONS(3596), + [anon_sym_else] = ACTIONS(3596), + [anon_sym_case] = ACTIONS(991), + [anon_sym_function] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(997), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1009), + [anon_sym_declare] = ACTIONS(1012), + [anon_sym_typeset] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1012), + [anon_sym_readonly] = ACTIONS(1012), + [anon_sym_local] = ACTIONS(1012), + [anon_sym_unset] = ACTIONS(1015), + [anon_sym_unsetenv] = ACTIONS(1015), + [anon_sym_LT] = ACTIONS(1018), + [anon_sym_GT] = ACTIONS(1018), + [anon_sym_GT_GT] = ACTIONS(1021), + [anon_sym_AMP_GT] = ACTIONS(1018), + [anon_sym_AMP_GT_GT] = ACTIONS(1021), + [anon_sym_LT_AMP] = ACTIONS(1021), + [anon_sym_GT_AMP] = ACTIONS(1021), + [sym__special_characters] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1027), + [anon_sym_DOLLAR] = ACTIONS(1030), + [sym_raw_string] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), + [anon_sym_BQUOTE] = ACTIONS(1042), + [anon_sym_LT_LPAREN] = ACTIONS(1045), + [anon_sym_GT_LPAREN] = ACTIONS(1045), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1048), }, [1166] = { - [sym_file_descriptor] = ACTIONS(791), - [ts_builtin_sym_end] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_esac] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_SEMI_SEMI] = ACTIONS(791), - [anon_sym_PIPE_AMP] = ACTIONS(791), - [anon_sym_AMP_AMP] = ACTIONS(791), - [anon_sym_PIPE_PIPE] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_GT_GT] = ACTIONS(791), - [anon_sym_AMP_GT] = ACTIONS(793), - [anon_sym_AMP_GT_GT] = ACTIONS(791), - [anon_sym_LT_AMP] = ACTIONS(791), - [anon_sym_GT_AMP] = ACTIONS(791), - [anon_sym_LT_LT] = ACTIONS(793), - [anon_sym_LT_LT_DASH] = ACTIONS(791), - [anon_sym_LT_LT_LT] = ACTIONS(791), - [anon_sym_BQUOTE] = ACTIONS(791), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_AMP] = ACTIONS(793), + [sym_elif_clause] = STATE(1167), + [sym_else_clause] = STATE(1595), + [aux_sym_if_statement_repeat1] = STATE(1167), + [anon_sym_fi] = ACTIONS(3606), + [anon_sym_elif] = ACTIONS(2456), + [anon_sym_else] = ACTIONS(2458), + [sym_comment] = ACTIONS(57), }, [1167] = { - [sym_file_descriptor] = ACTIONS(2011), - [ts_builtin_sym_end] = ACTIONS(2011), - [anon_sym_SEMI] = ACTIONS(2013), - [anon_sym_esac] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2013), - [anon_sym_RPAREN] = ACTIONS(2011), - [anon_sym_SEMI_SEMI] = ACTIONS(2011), - [anon_sym_PIPE_AMP] = ACTIONS(2011), - [anon_sym_AMP_AMP] = ACTIONS(2011), - [anon_sym_PIPE_PIPE] = ACTIONS(2011), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_GT] = ACTIONS(2013), - [anon_sym_GT_GT] = ACTIONS(2011), - [anon_sym_AMP_GT] = ACTIONS(2013), - [anon_sym_AMP_GT_GT] = ACTIONS(2011), - [anon_sym_LT_AMP] = ACTIONS(2011), - [anon_sym_GT_AMP] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(2013), - [anon_sym_LT_LT_DASH] = ACTIONS(2011), - [anon_sym_LT_LT_LT] = ACTIONS(2011), - [anon_sym_BQUOTE] = ACTIONS(2011), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2013), + [sym_elif_clause] = STATE(1167), + [aux_sym_if_statement_repeat1] = STATE(1167), + [anon_sym_fi] = ACTIONS(3608), + [anon_sym_elif] = ACTIONS(3610), + [anon_sym_else] = ACTIONS(3608), + [sym_comment] = ACTIONS(57), }, [1168] = { - [aux_sym_concatenation_repeat1] = STATE(1588), - [sym_file_descriptor] = ACTIONS(2015), - [sym__concat] = ACTIONS(3579), - [ts_builtin_sym_end] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2017), - [anon_sym_PIPE] = ACTIONS(2017), - [anon_sym_SEMI_SEMI] = ACTIONS(2015), - [anon_sym_PIPE_AMP] = ACTIONS(2015), - [anon_sym_AMP_AMP] = ACTIONS(2015), - [anon_sym_PIPE_PIPE] = ACTIONS(2015), - [anon_sym_LT] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2017), - [anon_sym_GT_GT] = ACTIONS(2015), - [anon_sym_AMP_GT] = ACTIONS(2017), - [anon_sym_AMP_GT_GT] = ACTIONS(2015), - [anon_sym_LT_AMP] = ACTIONS(2015), - [anon_sym_GT_AMP] = ACTIONS(2015), - [anon_sym_LT_LT] = ACTIONS(2017), - [anon_sym_LT_LT_DASH] = ACTIONS(2015), - [anon_sym_LT_LT_LT] = ACTIONS(2015), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2017), + [sym__simple_heredoc_body] = ACTIONS(3613), + [sym__heredoc_body_beginning] = ACTIONS(3613), + [sym_file_descriptor] = ACTIONS(3613), + [ts_builtin_sym_end] = ACTIONS(3613), + [anon_sym_SEMI] = ACTIONS(3615), + [anon_sym_esac] = ACTIONS(3613), + [anon_sym_PIPE] = ACTIONS(3615), + [anon_sym_RPAREN] = ACTIONS(3613), + [anon_sym_SEMI_SEMI] = ACTIONS(3613), + [anon_sym_PIPE_AMP] = ACTIONS(3613), + [anon_sym_AMP_AMP] = ACTIONS(3613), + [anon_sym_PIPE_PIPE] = ACTIONS(3613), + [anon_sym_LT] = ACTIONS(3615), + [anon_sym_GT] = ACTIONS(3615), + [anon_sym_GT_GT] = ACTIONS(3613), + [anon_sym_AMP_GT] = ACTIONS(3615), + [anon_sym_AMP_GT_GT] = ACTIONS(3613), + [anon_sym_LT_AMP] = ACTIONS(3613), + [anon_sym_GT_AMP] = ACTIONS(3613), + [anon_sym_LT_LT] = ACTIONS(3615), + [anon_sym_LT_LT_DASH] = ACTIONS(3613), + [anon_sym_LT_LT_LT] = ACTIONS(3613), + [anon_sym_BQUOTE] = ACTIONS(3613), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3613), + [anon_sym_AMP] = ACTIONS(3615), }, [1169] = { - [aux_sym_concatenation_repeat1] = STATE(1588), - [sym_file_descriptor] = ACTIONS(2019), - [sym__concat] = ACTIONS(3579), - [ts_builtin_sym_end] = ACTIONS(2019), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_SEMI_SEMI] = ACTIONS(2019), - [anon_sym_PIPE_AMP] = ACTIONS(2019), - [anon_sym_AMP_AMP] = ACTIONS(2019), - [anon_sym_PIPE_PIPE] = ACTIONS(2019), - [anon_sym_LT] = ACTIONS(2021), - [anon_sym_GT] = ACTIONS(2021), - [anon_sym_GT_GT] = ACTIONS(2019), - [anon_sym_AMP_GT] = ACTIONS(2021), - [anon_sym_AMP_GT_GT] = ACTIONS(2019), - [anon_sym_LT_AMP] = ACTIONS(2019), - [anon_sym_GT_AMP] = ACTIONS(2019), - [anon_sym_LT_LT] = ACTIONS(2021), - [anon_sym_LT_LT_DASH] = ACTIONS(2019), - [anon_sym_LT_LT_LT] = ACTIONS(2019), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2019), - [anon_sym_AMP] = ACTIONS(2021), + [aux_sym_case_item_repeat1] = STATE(1598), + [aux_sym_concatenation_repeat1] = STATE(1599), + [sym__concat] = ACTIONS(1191), + [anon_sym_PIPE] = ACTIONS(3617), + [anon_sym_RPAREN] = ACTIONS(3619), + [sym_comment] = ACTIONS(57), }, [1170] = { - [sym_file_descriptor] = ACTIONS(2019), - [ts_builtin_sym_end] = ACTIONS(2019), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_esac] = ACTIONS(2019), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2019), - [anon_sym_SEMI_SEMI] = ACTIONS(2019), - [anon_sym_PIPE_AMP] = ACTIONS(2019), - [anon_sym_AMP_AMP] = ACTIONS(2019), - [anon_sym_PIPE_PIPE] = ACTIONS(2019), - [anon_sym_LT] = ACTIONS(2021), - [anon_sym_GT] = ACTIONS(2021), - [anon_sym_GT_GT] = ACTIONS(2019), - [anon_sym_AMP_GT] = ACTIONS(2021), - [anon_sym_AMP_GT_GT] = ACTIONS(2019), - [anon_sym_LT_AMP] = ACTIONS(2019), - [anon_sym_GT_AMP] = ACTIONS(2019), - [anon_sym_LT_LT] = ACTIONS(2021), - [anon_sym_LT_LT_DASH] = ACTIONS(2019), - [anon_sym_LT_LT_LT] = ACTIONS(2019), - [anon_sym_BQUOTE] = ACTIONS(2019), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2019), - [anon_sym_AMP] = ACTIONS(2021), + [aux_sym_case_item_repeat1] = STATE(1601), + [aux_sym_concatenation_repeat1] = STATE(1599), + [sym__concat] = ACTIONS(1191), + [anon_sym_PIPE] = ACTIONS(3617), + [anon_sym_RPAREN] = ACTIONS(3621), + [sym_comment] = ACTIONS(57), }, [1171] = { - [sym_file_redirect] = STATE(1171), - [sym_heredoc_redirect] = STATE(1171), - [sym_herestring_redirect] = STATE(1171), - [aux_sym_while_statement_repeat1] = STATE(1171), - [sym_file_descriptor] = ACTIONS(3603), - [ts_builtin_sym_end] = ACTIONS(2027), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2027), - [anon_sym_PIPE_AMP] = ACTIONS(2027), - [anon_sym_AMP_AMP] = ACTIONS(2027), - [anon_sym_PIPE_PIPE] = ACTIONS(2027), - [anon_sym_LT] = ACTIONS(3606), - [anon_sym_GT] = ACTIONS(3606), - [anon_sym_GT_GT] = ACTIONS(3609), - [anon_sym_AMP_GT] = ACTIONS(3606), - [anon_sym_AMP_GT_GT] = ACTIONS(3609), - [anon_sym_LT_AMP] = ACTIONS(3609), - [anon_sym_GT_AMP] = ACTIONS(3609), - [anon_sym_LT_LT] = ACTIONS(3612), - [anon_sym_LT_LT_DASH] = ACTIONS(3615), - [anon_sym_LT_LT_LT] = ACTIONS(3618), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(2032), + [anon_sym_esac] = ACTIONS(3623), + [sym_comment] = ACTIONS(57), }, [1172] = { - [aux_sym_concatenation_repeat1] = STATE(1608), - [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(1130), - [sym_variable_name] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(809), - [anon_sym_AMP_GT_GT] = ACTIONS(807), - [anon_sym_LT_AMP] = ACTIONS(807), - [anon_sym_GT_AMP] = ACTIONS(807), - [sym__special_characters] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_LT_LPAREN] = ACTIONS(807), - [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(809), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), + [aux_sym_case_item_repeat1] = STATE(1601), + [anon_sym_PIPE] = ACTIONS(3617), + [anon_sym_RPAREN] = ACTIONS(3621), + [sym_comment] = ACTIONS(57), }, [1173] = { - [anon_sym_LT] = ACTIONS(3621), - [anon_sym_GT] = ACTIONS(3621), - [anon_sym_GT_GT] = ACTIONS(3623), - [anon_sym_AMP_GT] = ACTIONS(3621), - [anon_sym_AMP_GT_GT] = ACTIONS(3623), - [anon_sym_LT_AMP] = ACTIONS(3623), - [anon_sym_GT_AMP] = ACTIONS(3623), - [sym_comment] = ACTIONS(55), + [sym_case_item] = STATE(1604), + [sym_last_case_item] = STATE(1603), + [sym_concatenation] = STATE(1172), + [sym_string] = STATE(1170), + [sym_simple_expansion] = STATE(1170), + [sym_string_expansion] = STATE(1170), + [sym_expansion] = STATE(1170), + [sym_command_substitution] = STATE(1170), + [sym_process_substitution] = STATE(1170), + [aux_sym_case_statement_repeat1] = STATE(1604), + [sym__special_characters] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(415), + [sym_raw_string] = ACTIONS(2464), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2464), }, [1174] = { - [sym_concatenation] = STATE(1166), - [sym_string] = STATE(1611), - [sym_simple_expansion] = STATE(1611), - [sym_string_expansion] = STATE(1611), - [sym_expansion] = STATE(1611), - [sym_command_substitution] = STATE(1611), - [sym_process_substitution] = STATE(1611), - [sym__special_characters] = ACTIONS(3625), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(3627), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2406), - [anon_sym_LT_LPAREN] = ACTIONS(2408), - [anon_sym_GT_LPAREN] = ACTIONS(2408), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3627), + [sym_case_item] = STATE(1605), + [sym_last_case_item] = STATE(1603), + [sym_concatenation] = STATE(1172), + [sym_string] = STATE(1170), + [sym_simple_expansion] = STATE(1170), + [sym_string_expansion] = STATE(1170), + [sym_expansion] = STATE(1170), + [sym_command_substitution] = STATE(1170), + [sym_process_substitution] = STATE(1170), + [aux_sym_case_statement_repeat1] = STATE(1605), + [anon_sym_esac] = ACTIONS(3625), + [sym__special_characters] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(415), + [sym_raw_string] = ACTIONS(2464), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2466), }, [1175] = { - [sym_concatenation] = STATE(1170), - [sym_string] = STATE(1613), - [sym_simple_expansion] = STATE(1613), - [sym_string_expansion] = STATE(1613), - [sym_expansion] = STATE(1613), - [sym_command_substitution] = STATE(1613), - [sym_process_substitution] = STATE(1613), - [sym__special_characters] = ACTIONS(3629), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(3631), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2406), - [anon_sym_LT_LPAREN] = ACTIONS(2408), - [anon_sym_GT_LPAREN] = ACTIONS(2408), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3631), + [sym__concat] = ACTIONS(2930), + [anon_sym_in] = ACTIONS(2930), + [anon_sym_SEMI] = ACTIONS(2932), + [anon_sym_SEMI_SEMI] = ACTIONS(2930), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2930), + [anon_sym_AMP] = ACTIONS(2930), }, [1176] = { - [sym_file_redirect] = STATE(1614), - [sym_heredoc_redirect] = STATE(1614), - [sym_herestring_redirect] = STATE(1614), - [aux_sym_while_statement_repeat1] = STATE(1614), - [sym_file_descriptor] = ACTIONS(2424), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_SEMI_SEMI] = ACTIONS(2416), - [anon_sym_PIPE_AMP] = ACTIONS(2416), - [anon_sym_AMP_AMP] = ACTIONS(2416), - [anon_sym_PIPE_PIPE] = ACTIONS(2416), - [anon_sym_LT] = ACTIONS(2426), - [anon_sym_GT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2428), - [anon_sym_AMP_GT] = ACTIONS(2426), - [anon_sym_AMP_GT_GT] = ACTIONS(2428), - [anon_sym_LT_AMP] = ACTIONS(2428), - [anon_sym_GT_AMP] = ACTIONS(2428), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_LT_LT_DASH] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(2430), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2418), + [sym__simple_heredoc_body] = ACTIONS(3627), + [sym__heredoc_body_beginning] = ACTIONS(3627), + [sym_file_descriptor] = ACTIONS(3627), + [ts_builtin_sym_end] = ACTIONS(3627), + [anon_sym_SEMI] = ACTIONS(3629), + [anon_sym_esac] = ACTIONS(3627), + [anon_sym_PIPE] = ACTIONS(3629), + [anon_sym_RPAREN] = ACTIONS(3627), + [anon_sym_SEMI_SEMI] = ACTIONS(3627), + [anon_sym_PIPE_AMP] = ACTIONS(3627), + [anon_sym_AMP_AMP] = ACTIONS(3627), + [anon_sym_PIPE_PIPE] = ACTIONS(3627), + [anon_sym_LT] = ACTIONS(3629), + [anon_sym_GT] = ACTIONS(3629), + [anon_sym_GT_GT] = ACTIONS(3627), + [anon_sym_AMP_GT] = ACTIONS(3629), + [anon_sym_AMP_GT_GT] = ACTIONS(3627), + [anon_sym_LT_AMP] = ACTIONS(3627), + [anon_sym_GT_AMP] = ACTIONS(3627), + [anon_sym_LT_LT] = ACTIONS(3629), + [anon_sym_LT_LT_DASH] = ACTIONS(3627), + [anon_sym_LT_LT_LT] = ACTIONS(3627), + [anon_sym_BQUOTE] = ACTIONS(3627), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3627), + [anon_sym_AMP] = ACTIONS(3629), }, [1177] = { - [sym_file_redirect] = STATE(710), - [sym_heredoc_redirect] = STATE(710), - [sym_heredoc_body] = STATE(1188), - [sym_herestring_redirect] = STATE(710), - [aux_sym_while_statement_repeat1] = STATE(710), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(537), - [anon_sym_SEMI] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(2479), - [anon_sym_SEMI_SEMI] = ACTIONS(2477), - [anon_sym_PIPE_AMP] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_LT] = ACTIONS(541), - [anon_sym_GT] = ACTIONS(541), - [anon_sym_GT_GT] = ACTIONS(543), - [anon_sym_AMP_GT] = ACTIONS(541), - [anon_sym_AMP_GT_GT] = ACTIONS(543), - [anon_sym_LT_AMP] = ACTIONS(543), - [anon_sym_GT_AMP] = ACTIONS(543), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(545), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_esac] = ACTIONS(3631), + [sym_comment] = ACTIONS(57), }, [1178] = { - [sym_compound_statement] = STATE(1615), - [anon_sym_LBRACE] = ACTIONS(595), - [sym_comment] = ACTIONS(55), + [sym_case_item] = STATE(1604), + [sym_last_case_item] = STATE(1607), + [sym_concatenation] = STATE(1172), + [sym_string] = STATE(1170), + [sym_simple_expansion] = STATE(1170), + [sym_string_expansion] = STATE(1170), + [sym_expansion] = STATE(1170), + [sym_command_substitution] = STATE(1170), + [sym_process_substitution] = STATE(1170), + [aux_sym_case_statement_repeat1] = STATE(1604), + [sym__special_characters] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(415), + [sym_raw_string] = ACTIONS(2464), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2464), }, [1179] = { - [anon_sym_LT] = ACTIONS(3633), - [anon_sym_GT] = ACTIONS(3633), - [anon_sym_GT_GT] = ACTIONS(3635), - [anon_sym_AMP_GT] = ACTIONS(3633), - [anon_sym_AMP_GT_GT] = ACTIONS(3635), - [anon_sym_LT_AMP] = ACTIONS(3635), - [anon_sym_GT_AMP] = ACTIONS(3635), - [sym_comment] = ACTIONS(55), + [sym_case_item] = STATE(1608), + [sym_last_case_item] = STATE(1607), + [sym_concatenation] = STATE(1172), + [sym_string] = STATE(1170), + [sym_simple_expansion] = STATE(1170), + [sym_string_expansion] = STATE(1170), + [sym_expansion] = STATE(1170), + [sym_command_substitution] = STATE(1170), + [sym_process_substitution] = STATE(1170), + [aux_sym_case_statement_repeat1] = STATE(1608), + [anon_sym_esac] = ACTIONS(3633), + [sym__special_characters] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(415), + [sym_raw_string] = ACTIONS(2464), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2466), }, [1180] = { - [sym_concatenation] = STATE(1238), - [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(3637), - [anon_sym_DQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [sym_raw_string] = ACTIONS(3639), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [anon_sym_LT_LPAREN] = ACTIONS(241), - [anon_sym_GT_LPAREN] = ACTIONS(241), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3639), + [sym__concat] = ACTIONS(2944), + [anon_sym_in] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_SEMI_SEMI] = ACTIONS(2944), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2944), + [anon_sym_AMP] = ACTIONS(2944), }, [1181] = { - [aux_sym_concatenation_repeat1] = STATE(691), - [sym__concat] = ACTIONS(697), - [sym_variable_name] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1132), - [anon_sym_SEMI_SEMI] = ACTIONS(1128), - [anon_sym_PIPE_AMP] = ACTIONS(1128), - [anon_sym_AMP_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1128), - [sym__special_characters] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [anon_sym_DOLLAR] = ACTIONS(1132), - [sym_raw_string] = ACTIONS(1128), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1128), - [anon_sym_LT_LPAREN] = ACTIONS(1128), - [anon_sym_GT_LPAREN] = ACTIONS(1128), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1132), - [sym_word] = ACTIONS(1132), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1132), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(3635), + [sym_comment] = ACTIONS(57), }, [1182] = { - [aux_sym_concatenation_repeat1] = STATE(691), - [sym__concat] = ACTIONS(697), - [sym_variable_name] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_SEMI_SEMI] = ACTIONS(1106), - [anon_sym_PIPE_AMP] = ACTIONS(1106), - [anon_sym_AMP_AMP] = ACTIONS(1106), - [anon_sym_PIPE_PIPE] = ACTIONS(1106), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [sym_raw_string] = ACTIONS(1106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), - [anon_sym_BQUOTE] = ACTIONS(1106), - [anon_sym_LT_LPAREN] = ACTIONS(1106), - [anon_sym_GT_LPAREN] = ACTIONS(1106), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1108), - [sym_word] = ACTIONS(1108), - [anon_sym_LF] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(3637), + [sym_comment] = ACTIONS(57), }, [1183] = { - [aux_sym_concatenation_repeat1] = STATE(1183), - [sym__concat] = ACTIONS(2754), - [sym_variable_name] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(3637), + [sym_comment] = ACTIONS(57), }, [1184] = { - [aux_sym_concatenation_repeat1] = STATE(1184), - [sym__concat] = ACTIONS(2807), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym_concatenation] = STATE(1613), + [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), + [anon_sym_RBRACE] = ACTIONS(3637), + [sym__special_characters] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(3641), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3641), }, [1185] = { - [sym_file_redirect] = STATE(1437), - [sym_file_descriptor] = ACTIONS(2434), - [anon_sym_SEMI] = ACTIONS(2614), - [anon_sym_PIPE] = ACTIONS(2614), - [anon_sym_SEMI_SEMI] = ACTIONS(2612), - [anon_sym_PIPE_AMP] = ACTIONS(2612), - [anon_sym_AMP_AMP] = ACTIONS(2612), - [anon_sym_PIPE_PIPE] = ACTIONS(2612), - [anon_sym_LT] = ACTIONS(2436), - [anon_sym_GT] = ACTIONS(2436), - [anon_sym_GT_GT] = ACTIONS(2438), - [anon_sym_AMP_GT] = ACTIONS(2436), - [anon_sym_AMP_GT_GT] = ACTIONS(2438), - [anon_sym_LT_AMP] = ACTIONS(2438), - [anon_sym_GT_AMP] = ACTIONS(2438), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2612), - [anon_sym_AMP] = ACTIONS(2614), + [sym__concat] = ACTIONS(2980), + [anon_sym_in] = ACTIONS(2980), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_SEMI_SEMI] = ACTIONS(2980), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2980), }, [1186] = { - [sym__simple_heredoc_body] = ACTIONS(3641), - [sym__heredoc_body_beginning] = ACTIONS(3641), - [sym_file_descriptor] = ACTIONS(3641), - [ts_builtin_sym_end] = ACTIONS(3641), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym_esac] = ACTIONS(3641), - [anon_sym_PIPE] = ACTIONS(3643), - [anon_sym_RPAREN] = ACTIONS(3641), - [anon_sym_SEMI_SEMI] = ACTIONS(3641), - [anon_sym_PIPE_AMP] = ACTIONS(3641), - [anon_sym_AMP_AMP] = ACTIONS(3641), - [anon_sym_PIPE_PIPE] = ACTIONS(3641), - [anon_sym_LT] = ACTIONS(3643), - [anon_sym_GT] = ACTIONS(3643), - [anon_sym_GT_GT] = ACTIONS(3641), - [anon_sym_AMP_GT] = ACTIONS(3643), - [anon_sym_AMP_GT_GT] = ACTIONS(3641), - [anon_sym_LT_AMP] = ACTIONS(3641), - [anon_sym_GT_AMP] = ACTIONS(3641), - [anon_sym_LT_LT] = ACTIONS(3643), - [anon_sym_LT_LT_DASH] = ACTIONS(3641), - [anon_sym_LT_LT_LT] = ACTIONS(3641), - [anon_sym_BQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3641), - [anon_sym_AMP] = ACTIONS(3643), + [sym_concatenation] = STATE(1616), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1616), + [sym_regex] = ACTIONS(3643), + [anon_sym_RBRACE] = ACTIONS(3645), + [anon_sym_EQ] = ACTIONS(3647), + [anon_sym_DASH] = ACTIONS(3647), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3649), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3647), + [anon_sym_COLON_QMARK] = ACTIONS(3647), + [anon_sym_COLON_DASH] = ACTIONS(3647), + [anon_sym_PERCENT] = ACTIONS(3647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1187] = { - [sym__terminated_statement] = STATE(1187), - [sym_for_statement] = STATE(545), - [sym_c_style_for_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_function_definition] = STATE(545), - [sym_subshell] = STATE(545), - [sym_pipeline] = STATE(545), - [sym_list] = STATE(545), - [sym_negated_command] = STATE(545), - [sym_test_command] = STATE(545), - [sym_declaration_command] = STATE(545), - [sym_unset_command] = STATE(545), - [sym_command] = STATE(545), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(546), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(1187), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(997), - [sym_variable_name] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1003), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1009), - [anon_sym_done] = ACTIONS(3645), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1015), - [anon_sym_function] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1027), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym_declare] = ACTIONS(1033), - [anon_sym_typeset] = ACTIONS(1033), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_readonly] = ACTIONS(1033), - [anon_sym_local] = ACTIONS(1033), - [anon_sym_unset] = ACTIONS(1036), - [anon_sym_unsetenv] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1039), - [anon_sym_GT_GT] = ACTIONS(1042), - [anon_sym_AMP_GT] = ACTIONS(1039), - [anon_sym_AMP_GT_GT] = ACTIONS(1042), - [anon_sym_LT_AMP] = ACTIONS(1042), - [anon_sym_GT_AMP] = ACTIONS(1042), - [sym__special_characters] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_DOLLAR] = ACTIONS(1051), - [sym_raw_string] = ACTIONS(1054), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1060), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1069), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3645), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1188] = { - [ts_builtin_sym_end] = ACTIONS(3647), - [anon_sym_SEMI] = ACTIONS(3649), - [anon_sym_esac] = ACTIONS(3647), - [anon_sym_PIPE] = ACTIONS(3649), - [anon_sym_RPAREN] = ACTIONS(3647), - [anon_sym_SEMI_SEMI] = ACTIONS(3647), - [anon_sym_PIPE_AMP] = ACTIONS(3647), - [anon_sym_AMP_AMP] = ACTIONS(3647), - [anon_sym_PIPE_PIPE] = ACTIONS(3647), - [anon_sym_BQUOTE] = ACTIONS(3647), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3647), - [anon_sym_AMP] = ACTIONS(3649), + [sym_concatenation] = STATE(1618), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1618), + [sym_regex] = ACTIONS(3651), + [anon_sym_RBRACE] = ACTIONS(3637), + [anon_sym_EQ] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3653), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3653), + [anon_sym_COLON_QMARK] = ACTIONS(3653), + [anon_sym_COLON_DASH] = ACTIONS(3653), + [anon_sym_PERCENT] = ACTIONS(3653), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1189] = { - [aux_sym_concatenation_repeat1] = STATE(1191), - [sym__simple_heredoc_body] = ACTIONS(1088), - [sym__heredoc_body_beginning] = ACTIONS(1088), - [sym_file_descriptor] = ACTIONS(1088), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1090), - [anon_sym_SEMI_SEMI] = ACTIONS(1088), - [anon_sym_PIPE_AMP] = ACTIONS(1088), - [anon_sym_AMP_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1088), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(1090), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_AMP_GT] = ACTIONS(1090), - [anon_sym_AMP_GT_GT] = ACTIONS(1088), - [anon_sym_LT_AMP] = ACTIONS(1088), - [anon_sym_GT_AMP] = ACTIONS(1088), - [anon_sym_LT_LT] = ACTIONS(1090), - [anon_sym_LT_LT_DASH] = ACTIONS(1088), - [anon_sym_LT_LT_LT] = ACTIONS(1088), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3637), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1190] = { - [aux_sym_concatenation_repeat1] = STATE(1191), - [sym__simple_heredoc_body] = ACTIONS(1092), - [sym__heredoc_body_beginning] = ACTIONS(1092), - [sym_file_descriptor] = ACTIONS(1092), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_SEMI_SEMI] = ACTIONS(1092), - [anon_sym_PIPE_AMP] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_LT] = ACTIONS(1094), - [anon_sym_GT] = ACTIONS(1094), - [anon_sym_GT_GT] = ACTIONS(1092), - [anon_sym_AMP_GT] = ACTIONS(1094), - [anon_sym_AMP_GT_GT] = ACTIONS(1092), - [anon_sym_LT_AMP] = ACTIONS(1092), - [anon_sym_GT_AMP] = ACTIONS(1092), - [anon_sym_LT_LT] = ACTIONS(1094), - [anon_sym_LT_LT_DASH] = ACTIONS(1092), - [anon_sym_LT_LT_LT] = ACTIONS(1092), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1092), - [anon_sym_AMP] = ACTIONS(1094), + [sym_concatenation] = STATE(1620), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1620), + [anon_sym_RBRACE] = ACTIONS(3657), + [anon_sym_EQ] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3661), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3659), + [anon_sym_COLON_QMARK] = ACTIONS(3659), + [anon_sym_COLON_DASH] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3659), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1191] = { - [aux_sym_concatenation_repeat1] = STATE(1619), - [sym__simple_heredoc_body] = ACTIONS(807), - [sym__heredoc_body_beginning] = ACTIONS(807), - [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(809), - [anon_sym_AMP_GT_GT] = ACTIONS(807), - [anon_sym_LT_AMP] = ACTIONS(807), - [anon_sym_GT_AMP] = ACTIONS(807), - [anon_sym_LT_LT] = ACTIONS(809), - [anon_sym_LT_LT_DASH] = ACTIONS(807), - [anon_sym_LT_LT_LT] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), + [sym__concat] = ACTIONS(3036), + [anon_sym_in] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_SEMI_SEMI] = ACTIONS(3036), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3036), + [anon_sym_AMP] = ACTIONS(3036), }, [1192] = { - [sym_file_redirect] = STATE(710), - [sym_heredoc_redirect] = STATE(710), - [sym_heredoc_body] = STATE(1449), - [sym_herestring_redirect] = STATE(710), - [aux_sym_while_statement_repeat1] = STATE(710), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(537), - [anon_sym_SEMI] = ACTIONS(3207), - [anon_sym_PIPE] = ACTIONS(3207), - [anon_sym_SEMI_SEMI] = ACTIONS(3205), - [anon_sym_PIPE_AMP] = ACTIONS(3205), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_PIPE_PIPE] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(541), - [anon_sym_GT] = ACTIONS(541), - [anon_sym_GT_GT] = ACTIONS(543), - [anon_sym_AMP_GT] = ACTIONS(541), - [anon_sym_AMP_GT_GT] = ACTIONS(543), - [anon_sym_LT_AMP] = ACTIONS(543), - [anon_sym_GT_AMP] = ACTIONS(543), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(545), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3207), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3657), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1193] = { - [anon_sym_then] = ACTIONS(3651), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(1618), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1618), + [anon_sym_RBRACE] = ACTIONS(3637), + [anon_sym_EQ] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3653), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3653), + [anon_sym_COLON_QMARK] = ACTIONS(3653), + [anon_sym_COLON_DASH] = ACTIONS(3653), + [anon_sym_PERCENT] = ACTIONS(3653), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1194] = { - [sym__terminated_statement] = STATE(1621), - [sym_for_statement] = STATE(545), - [sym_c_style_for_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_function_definition] = STATE(545), - [sym_subshell] = STATE(545), - [sym_pipeline] = STATE(545), - [sym_list] = STATE(545), - [sym_negated_command] = STATE(545), - [sym_test_command] = STATE(545), - [sym_declaration_command] = STATE(545), - [sym_unset_command] = STATE(545), - [sym_command] = STATE(545), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(546), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(1621), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_fi] = ACTIONS(3653), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [sym__concat] = ACTIONS(3091), + [anon_sym_in] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_SEMI_SEMI] = ACTIONS(3091), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3091), }, [1195] = { - [ts_builtin_sym_end] = ACTIONS(3655), - [anon_sym_SEMI] = ACTIONS(3657), - [anon_sym_esac] = ACTIONS(3655), - [anon_sym_PIPE] = ACTIONS(3657), - [anon_sym_RPAREN] = ACTIONS(3655), - [anon_sym_SEMI_SEMI] = ACTIONS(3655), - [anon_sym_PIPE_AMP] = ACTIONS(3655), - [anon_sym_AMP_AMP] = ACTIONS(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_BQUOTE] = ACTIONS(3655), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3655), - [anon_sym_AMP] = ACTIONS(3657), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(3663), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1196] = { - [anon_sym_fi] = ACTIONS(3659), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(3663), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1197] = { - [sym__terminated_statement] = STATE(1197), - [sym_for_statement] = STATE(545), - [sym_c_style_for_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_function_definition] = STATE(545), - [sym_subshell] = STATE(545), - [sym_pipeline] = STATE(545), - [sym_list] = STATE(545), - [sym_negated_command] = STATE(545), - [sym_test_command] = STATE(545), - [sym_declaration_command] = STATE(545), - [sym_unset_command] = STATE(545), - [sym_command] = STATE(545), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(546), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(1197), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(997), - [sym_variable_name] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1003), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1009), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_fi] = ACTIONS(3645), - [anon_sym_elif] = ACTIONS(3645), - [anon_sym_else] = ACTIONS(3645), - [anon_sym_case] = ACTIONS(1015), - [anon_sym_function] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1027), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym_declare] = ACTIONS(1033), - [anon_sym_typeset] = ACTIONS(1033), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_readonly] = ACTIONS(1033), - [anon_sym_local] = ACTIONS(1033), - [anon_sym_unset] = ACTIONS(1036), - [anon_sym_unsetenv] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1039), - [anon_sym_GT_GT] = ACTIONS(1042), - [anon_sym_AMP_GT] = ACTIONS(1039), - [anon_sym_AMP_GT_GT] = ACTIONS(1042), - [anon_sym_LT_AMP] = ACTIONS(1042), - [anon_sym_GT_AMP] = ACTIONS(1042), - [sym__special_characters] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_DOLLAR] = ACTIONS(1051), - [sym_raw_string] = ACTIONS(1054), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1060), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1069), + [anon_sym_SEMI] = ACTIONS(3665), + [anon_sym_RPAREN] = ACTIONS(3663), + [anon_sym_SEMI_SEMI] = ACTIONS(3667), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3667), + [anon_sym_AMP] = ACTIONS(3667), }, [1198] = { - [sym_elif_clause] = STATE(1199), - [sym_else_clause] = STATE(1623), - [aux_sym_if_statement_repeat1] = STATE(1199), - [anon_sym_fi] = ACTIONS(3659), - [anon_sym_elif] = ACTIONS(2519), - [anon_sym_else] = ACTIONS(2521), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(3663), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [1199] = { - [sym_elif_clause] = STATE(1199), - [aux_sym_if_statement_repeat1] = STATE(1199), - [anon_sym_fi] = ACTIONS(3661), - [anon_sym_elif] = ACTIONS(3663), - [anon_sym_else] = ACTIONS(3661), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(3663), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1200] = { - [ts_builtin_sym_end] = ACTIONS(3666), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym_esac] = ACTIONS(3666), - [anon_sym_PIPE] = ACTIONS(3668), - [anon_sym_RPAREN] = ACTIONS(3666), - [anon_sym_SEMI_SEMI] = ACTIONS(3666), - [anon_sym_PIPE_AMP] = ACTIONS(3666), - [anon_sym_AMP_AMP] = ACTIONS(3666), - [anon_sym_PIPE_PIPE] = ACTIONS(3666), - [anon_sym_BQUOTE] = ACTIONS(3666), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3666), - [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3669), + [anon_sym_SEMI_SEMI] = ACTIONS(3671), + [anon_sym_BQUOTE] = ACTIONS(3663), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3671), + [anon_sym_AMP] = ACTIONS(3671), }, [1201] = { - [aux_sym_case_item_repeat1] = STATE(1626), - [aux_sym_concatenation_repeat1] = STATE(1627), - [sym__concat] = ACTIONS(1214), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_RPAREN] = ACTIONS(3672), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(3121), + [anon_sym_in] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_SEMI_SEMI] = ACTIONS(3121), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3121), }, [1202] = { - [aux_sym_case_item_repeat1] = STATE(1629), - [aux_sym_concatenation_repeat1] = STATE(1627), - [sym__concat] = ACTIONS(1214), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_RPAREN] = ACTIONS(3674), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(3673), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1203] = { - [anon_sym_esac] = ACTIONS(3676), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(3673), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1204] = { - [aux_sym_case_item_repeat1] = STATE(1629), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_RPAREN] = ACTIONS(3674), - [sym_comment] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(3675), + [anon_sym_RPAREN] = ACTIONS(3673), + [anon_sym_SEMI_SEMI] = ACTIONS(3677), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3677), + [anon_sym_AMP] = ACTIONS(3677), }, [1205] = { - [sym_case_item] = STATE(1632), - [sym_last_case_item] = STATE(1631), - [sym_concatenation] = STATE(1204), - [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), - [aux_sym_case_statement_repeat1] = STATE(1632), - [sym__special_characters] = ACTIONS(2525), - [anon_sym_DQUOTE] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(443), - [sym_raw_string] = ACTIONS(2527), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), - [anon_sym_BQUOTE] = ACTIONS(451), - [anon_sym_LT_LPAREN] = ACTIONS(453), - [anon_sym_GT_LPAREN] = ACTIONS(453), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2527), + [sym__simple_heredoc_body] = ACTIONS(3679), + [sym__heredoc_body_beginning] = ACTIONS(3679), + [sym_file_descriptor] = ACTIONS(3679), + [ts_builtin_sym_end] = ACTIONS(3679), + [anon_sym_SEMI] = ACTIONS(3681), + [anon_sym_esac] = ACTIONS(3679), + [anon_sym_PIPE] = ACTIONS(3681), + [anon_sym_RPAREN] = ACTIONS(3679), + [anon_sym_SEMI_SEMI] = ACTIONS(3679), + [anon_sym_PIPE_AMP] = ACTIONS(3679), + [anon_sym_AMP_AMP] = ACTIONS(3679), + [anon_sym_PIPE_PIPE] = ACTIONS(3679), + [anon_sym_LT] = ACTIONS(3681), + [anon_sym_GT] = ACTIONS(3681), + [anon_sym_GT_GT] = ACTIONS(3679), + [anon_sym_AMP_GT] = ACTIONS(3681), + [anon_sym_AMP_GT_GT] = ACTIONS(3679), + [anon_sym_LT_AMP] = ACTIONS(3679), + [anon_sym_GT_AMP] = ACTIONS(3679), + [anon_sym_LT_LT] = ACTIONS(3681), + [anon_sym_LT_LT_DASH] = ACTIONS(3679), + [anon_sym_LT_LT_LT] = ACTIONS(3679), + [anon_sym_BQUOTE] = ACTIONS(3679), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3679), + [anon_sym_AMP] = ACTIONS(3681), }, [1206] = { - [sym_case_item] = STATE(1633), - [sym_last_case_item] = STATE(1631), - [sym_concatenation] = STATE(1204), - [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), - [aux_sym_case_statement_repeat1] = STATE(1633), - [anon_sym_esac] = ACTIONS(3678), - [sym__special_characters] = ACTIONS(2525), - [anon_sym_DQUOTE] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(443), - [sym_raw_string] = ACTIONS(2527), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), - [anon_sym_BQUOTE] = ACTIONS(451), - [anon_sym_LT_LPAREN] = ACTIONS(453), - [anon_sym_GT_LPAREN] = ACTIONS(453), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2529), + [aux_sym_concatenation_repeat1] = STATE(1626), + [sym__simple_heredoc_body] = ACTIONS(779), + [sym__heredoc_body_beginning] = ACTIONS(779), + [sym_file_descriptor] = ACTIONS(779), + [sym__concat] = ACTIONS(1109), + [sym_variable_name] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [anon_sym_PIPE_AMP] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_AMP_GT] = ACTIONS(781), + [anon_sym_AMP_GT_GT] = ACTIONS(779), + [anon_sym_LT_AMP] = ACTIONS(779), + [anon_sym_GT_AMP] = ACTIONS(779), + [anon_sym_LT_LT] = ACTIONS(781), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_LT] = ACTIONS(779), + [sym__special_characters] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(781), + [sym_raw_string] = ACTIONS(779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(779), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(781), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(781), }, [1207] = { - [sym__concat] = ACTIONS(2959), - [anon_sym_in] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_SEMI_SEMI] = ACTIONS(2959), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), + [aux_sym_concatenation_repeat1] = STATE(727), + [sym__simple_heredoc_body] = ACTIONS(1107), + [sym__heredoc_body_beginning] = ACTIONS(1107), + [sym_file_descriptor] = ACTIONS(1107), + [sym__concat] = ACTIONS(671), + [sym_variable_name] = ACTIONS(1107), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_RPAREN] = ACTIONS(1107), + [anon_sym_SEMI_SEMI] = ACTIONS(1107), + [anon_sym_PIPE_AMP] = ACTIONS(1107), + [anon_sym_AMP_AMP] = ACTIONS(1107), + [anon_sym_PIPE_PIPE] = ACTIONS(1107), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1107), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1107), + [anon_sym_LT_AMP] = ACTIONS(1107), + [anon_sym_GT_AMP] = ACTIONS(1107), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_LT_LT_DASH] = ACTIONS(1107), + [anon_sym_LT_LT_LT] = ACTIONS(1107), + [sym__special_characters] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(1107), + [anon_sym_DOLLAR] = ACTIONS(1111), + [sym_raw_string] = ACTIONS(1107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1107), + [anon_sym_BQUOTE] = ACTIONS(1107), + [anon_sym_LT_LPAREN] = ACTIONS(1107), + [anon_sym_GT_LPAREN] = ACTIONS(1107), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1111), + [sym_word] = ACTIONS(1111), + [anon_sym_LF] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1111), }, [1208] = { - [ts_builtin_sym_end] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_esac] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3682), - [anon_sym_RPAREN] = ACTIONS(3680), - [anon_sym_SEMI_SEMI] = ACTIONS(3680), - [anon_sym_PIPE_AMP] = ACTIONS(3680), - [anon_sym_AMP_AMP] = ACTIONS(3680), - [anon_sym_PIPE_PIPE] = ACTIONS(3680), - [anon_sym_BQUOTE] = ACTIONS(3680), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3682), + [aux_sym_concatenation_repeat1] = STATE(727), + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(671), + [sym_variable_name] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1087), + [anon_sym_RPAREN] = ACTIONS(1085), + [anon_sym_SEMI_SEMI] = ACTIONS(1085), + [anon_sym_PIPE_AMP] = ACTIONS(1085), + [anon_sym_AMP_AMP] = ACTIONS(1085), + [anon_sym_PIPE_PIPE] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_AMP_GT] = ACTIONS(1087), + [anon_sym_AMP_GT_GT] = ACTIONS(1085), + [anon_sym_LT_AMP] = ACTIONS(1085), + [anon_sym_GT_AMP] = ACTIONS(1085), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_LT_LT_DASH] = ACTIONS(1085), + [anon_sym_LT_LT_LT] = ACTIONS(1085), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1087), + [sym_raw_string] = ACTIONS(1085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_LT_LPAREN] = ACTIONS(1085), + [anon_sym_GT_LPAREN] = ACTIONS(1085), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1087), + [sym_word] = ACTIONS(1087), + [anon_sym_LF] = ACTIONS(1085), + [anon_sym_AMP] = ACTIONS(1087), }, [1209] = { - [anon_sym_esac] = ACTIONS(3684), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(1209), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(2681), + [sym_variable_name] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1728), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), }, [1210] = { - [sym_case_item] = STATE(1632), - [sym_last_case_item] = STATE(1635), - [sym_concatenation] = STATE(1204), - [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), - [aux_sym_case_statement_repeat1] = STATE(1632), - [sym__special_characters] = ACTIONS(2525), - [anon_sym_DQUOTE] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(443), - [sym_raw_string] = ACTIONS(2527), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), - [anon_sym_BQUOTE] = ACTIONS(451), - [anon_sym_LT_LPAREN] = ACTIONS(453), - [anon_sym_GT_LPAREN] = ACTIONS(453), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2527), + [aux_sym_concatenation_repeat1] = STATE(1210), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(2746), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1728), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), }, [1211] = { - [sym_case_item] = STATE(1636), - [sym_last_case_item] = STATE(1635), - [sym_concatenation] = STATE(1204), - [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), - [aux_sym_case_statement_repeat1] = STATE(1636), - [anon_sym_esac] = ACTIONS(3686), - [sym__special_characters] = ACTIONS(2525), - [anon_sym_DQUOTE] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(443), - [sym_raw_string] = ACTIONS(2527), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), - [anon_sym_BQUOTE] = ACTIONS(451), - [anon_sym_LT_LPAREN] = ACTIONS(453), - [anon_sym_GT_LPAREN] = ACTIONS(453), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2529), + [aux_sym_concatenation_repeat1] = STATE(1213), + [sym__simple_heredoc_body] = ACTIONS(1067), + [sym__heredoc_body_beginning] = ACTIONS(1067), + [sym_file_descriptor] = ACTIONS(1067), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1069), + [anon_sym_RPAREN] = ACTIONS(1067), + [anon_sym_SEMI_SEMI] = ACTIONS(1067), + [anon_sym_PIPE_AMP] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1067), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1069), + [anon_sym_GT] = ACTIONS(1069), + [anon_sym_GT_GT] = ACTIONS(1067), + [anon_sym_AMP_GT] = ACTIONS(1069), + [anon_sym_AMP_GT_GT] = ACTIONS(1067), + [anon_sym_LT_AMP] = ACTIONS(1067), + [anon_sym_GT_AMP] = ACTIONS(1067), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_LT_LT_DASH] = ACTIONS(1067), + [anon_sym_LT_LT_LT] = ACTIONS(1067), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), }, [1212] = { - [sym__concat] = ACTIONS(2973), - [anon_sym_in] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym_SEMI_SEMI] = ACTIONS(2973), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2973), + [aux_sym_concatenation_repeat1] = STATE(1213), + [sym__simple_heredoc_body] = ACTIONS(1071), + [sym__heredoc_body_beginning] = ACTIONS(1071), + [sym_file_descriptor] = ACTIONS(1071), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1071), + [anon_sym_SEMI_SEMI] = ACTIONS(1071), + [anon_sym_PIPE_AMP] = ACTIONS(1071), + [anon_sym_AMP_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1071), + [anon_sym_LT] = ACTIONS(1073), + [anon_sym_GT] = ACTIONS(1073), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_AMP_GT] = ACTIONS(1073), + [anon_sym_AMP_GT_GT] = ACTIONS(1071), + [anon_sym_LT_AMP] = ACTIONS(1071), + [anon_sym_GT_AMP] = ACTIONS(1071), + [anon_sym_LT_LT] = ACTIONS(1073), + [anon_sym_LT_LT_DASH] = ACTIONS(1071), + [anon_sym_LT_LT_LT] = ACTIONS(1071), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), }, [1213] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(3688), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(1627), + [sym__simple_heredoc_body] = ACTIONS(779), + [sym__heredoc_body_beginning] = ACTIONS(779), + [sym_file_descriptor] = ACTIONS(779), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [anon_sym_PIPE_AMP] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_AMP_GT] = ACTIONS(781), + [anon_sym_AMP_GT_GT] = ACTIONS(779), + [anon_sym_LT_AMP] = ACTIONS(779), + [anon_sym_GT_AMP] = ACTIONS(779), + [anon_sym_LT_LT] = ACTIONS(781), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_LT] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(781), }, [1214] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(3690), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(3683), + [sym__heredoc_body_beginning] = ACTIONS(3683), + [sym_file_descriptor] = ACTIONS(3683), + [ts_builtin_sym_end] = ACTIONS(3683), + [anon_sym_SEMI] = ACTIONS(3685), + [anon_sym_esac] = ACTIONS(3683), + [anon_sym_PIPE] = ACTIONS(3685), + [anon_sym_RPAREN] = ACTIONS(3683), + [anon_sym_SEMI_SEMI] = ACTIONS(3683), + [anon_sym_PIPE_AMP] = ACTIONS(3683), + [anon_sym_AMP_AMP] = ACTIONS(3683), + [anon_sym_PIPE_PIPE] = ACTIONS(3683), + [anon_sym_LT] = ACTIONS(3685), + [anon_sym_GT] = ACTIONS(3685), + [anon_sym_GT_GT] = ACTIONS(3683), + [anon_sym_AMP_GT] = ACTIONS(3685), + [anon_sym_AMP_GT_GT] = ACTIONS(3683), + [anon_sym_LT_AMP] = ACTIONS(3683), + [anon_sym_GT_AMP] = ACTIONS(3683), + [anon_sym_LT_LT] = ACTIONS(3685), + [anon_sym_LT_LT_DASH] = ACTIONS(3683), + [anon_sym_LT_LT_LT] = ACTIONS(3683), + [anon_sym_BQUOTE] = ACTIONS(3683), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3683), + [anon_sym_AMP] = ACTIONS(3685), }, [1215] = { - [anon_sym_RBRACE] = ACTIONS(3690), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(3687), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1216] = { - [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(3690), - [sym__special_characters] = ACTIONS(3692), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(3694), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3694), + [sym_file_descriptor] = ACTIONS(2076), + [sym_variable_name] = ACTIONS(2076), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_GT] = ACTIONS(2078), + [anon_sym_GT_GT] = ACTIONS(2076), + [anon_sym_AMP_GT] = ACTIONS(2078), + [anon_sym_AMP_GT_GT] = ACTIONS(2076), + [anon_sym_LT_AMP] = ACTIONS(2076), + [anon_sym_GT_AMP] = ACTIONS(2076), + [sym__special_characters] = ACTIONS(2076), + [anon_sym_DQUOTE] = ACTIONS(2076), + [anon_sym_DOLLAR] = ACTIONS(2078), + [sym_raw_string] = ACTIONS(2076), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2076), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2076), + [anon_sym_BQUOTE] = ACTIONS(2076), + [anon_sym_LT_LPAREN] = ACTIONS(2076), + [anon_sym_GT_LPAREN] = ACTIONS(2076), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2076), }, [1217] = { - [sym__concat] = ACTIONS(3009), - [anon_sym_in] = ACTIONS(3009), - [anon_sym_SEMI] = ACTIONS(3011), - [anon_sym_SEMI_SEMI] = ACTIONS(3009), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3009), + [sym_concatenation] = STATE(1007), + [sym_string] = STATE(537), + [sym_simple_expansion] = STATE(537), + [sym_string_expansion] = STATE(537), + [sym_expansion] = STATE(537), + [sym_command_substitution] = STATE(537), + [sym_process_substitution] = STATE(537), + [aux_sym_for_statement_repeat1] = STATE(1007), + [anon_sym_RPAREN] = ACTIONS(3689), + [sym__special_characters] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1095), + [sym_raw_string] = ACTIONS(1097), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1099), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1103), + [anon_sym_LT_LPAREN] = ACTIONS(1105), + [anon_sym_GT_LPAREN] = ACTIONS(1105), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1097), }, [1218] = { - [sym_concatenation] = STATE(1644), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1644), - [sym_regex] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3698), - [anon_sym_EQ] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3700), - [anon_sym_COLON_QMARK] = ACTIONS(3700), - [anon_sym_COLON_DASH] = ACTIONS(3700), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_PIPE_PIPE] = ACTIONS(2930), + [anon_sym_RBRACK] = ACTIONS(2930), + [anon_sym_EQ_TILDE] = ACTIONS(2930), + [anon_sym_EQ_EQ] = ACTIONS(2930), + [anon_sym_EQ] = ACTIONS(2932), + [anon_sym_PLUS_EQ] = ACTIONS(2930), + [anon_sym_LT] = ACTIONS(2932), + [anon_sym_GT] = ACTIONS(2932), + [anon_sym_BANG_EQ] = ACTIONS(2930), + [anon_sym_PLUS] = ACTIONS(2932), + [anon_sym_DASH] = ACTIONS(2932), + [anon_sym_DASH_EQ] = ACTIONS(2930), + [anon_sym_LT_EQ] = ACTIONS(2930), + [anon_sym_GT_EQ] = ACTIONS(2930), + [anon_sym_PLUS_PLUS] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2930), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2930), }, [1219] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3698), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_RBRACK] = ACTIONS(2944), + [anon_sym_EQ_TILDE] = ACTIONS(2944), + [anon_sym_EQ_EQ] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2946), + [anon_sym_PLUS_EQ] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_GT] = ACTIONS(2946), + [anon_sym_BANG_EQ] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2946), + [anon_sym_DASH] = ACTIONS(2946), + [anon_sym_DASH_EQ] = ACTIONS(2944), + [anon_sym_LT_EQ] = ACTIONS(2944), + [anon_sym_GT_EQ] = ACTIONS(2944), + [anon_sym_PLUS_PLUS] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2944), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2944), }, [1220] = { - [sym_concatenation] = STATE(1646), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1646), - [sym_regex] = ACTIONS(3704), - [anon_sym_RBRACE] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(3706), - [anon_sym_DASH] = ACTIONS(3706), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3706), - [anon_sym_COLON_QMARK] = ACTIONS(3706), - [anon_sym_COLON_DASH] = ACTIONS(3706), - [anon_sym_PERCENT] = ACTIONS(3706), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(3691), + [sym_comment] = ACTIONS(57), }, [1221] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(3693), + [sym_comment] = ACTIONS(57), }, [1222] = { - [sym_concatenation] = STATE(1648), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1648), - [anon_sym_RBRACE] = ACTIONS(3710), - [anon_sym_EQ] = ACTIONS(3712), - [anon_sym_DASH] = ACTIONS(3712), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3712), - [anon_sym_COLON_QMARK] = ACTIONS(3712), - [anon_sym_COLON_DASH] = ACTIONS(3712), - [anon_sym_PERCENT] = ACTIONS(3712), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(3693), + [sym_comment] = ACTIONS(57), }, [1223] = { - [sym__concat] = ACTIONS(3065), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym_SEMI_SEMI] = ACTIONS(3065), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3065), + [sym_concatenation] = STATE(1634), + [sym_string] = STATE(1633), + [sym_simple_expansion] = STATE(1633), + [sym_string_expansion] = STATE(1633), + [sym_expansion] = STATE(1633), + [sym_command_substitution] = STATE(1633), + [sym_process_substitution] = STATE(1633), + [anon_sym_RBRACE] = ACTIONS(3693), + [sym__special_characters] = ACTIONS(3695), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(3697), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3697), }, [1224] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3710), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(2980), + [anon_sym_AMP_AMP] = ACTIONS(2980), + [anon_sym_PIPE_PIPE] = ACTIONS(2980), + [anon_sym_RBRACK] = ACTIONS(2980), + [anon_sym_EQ_TILDE] = ACTIONS(2980), + [anon_sym_EQ_EQ] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(2982), + [anon_sym_PLUS_EQ] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_GT] = ACTIONS(2982), + [anon_sym_BANG_EQ] = ACTIONS(2980), + [anon_sym_PLUS] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2982), + [anon_sym_DASH_EQ] = ACTIONS(2980), + [anon_sym_LT_EQ] = ACTIONS(2980), + [anon_sym_GT_EQ] = ACTIONS(2980), + [anon_sym_PLUS_PLUS] = ACTIONS(2980), + [anon_sym_DASH_DASH] = ACTIONS(2980), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2980), }, [1225] = { - [sym_concatenation] = STATE(1646), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1646), - [anon_sym_RBRACE] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(3706), - [anon_sym_DASH] = ACTIONS(3706), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3706), - [anon_sym_COLON_QMARK] = ACTIONS(3706), - [anon_sym_COLON_DASH] = ACTIONS(3706), - [anon_sym_PERCENT] = ACTIONS(3706), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1637), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1637), + [sym_regex] = ACTIONS(3699), + [anon_sym_RBRACE] = ACTIONS(3701), + [anon_sym_EQ] = ACTIONS(3703), + [anon_sym_DASH] = ACTIONS(3703), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3705), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3703), + [anon_sym_COLON_QMARK] = ACTIONS(3703), + [anon_sym_COLON_DASH] = ACTIONS(3703), + [anon_sym_PERCENT] = ACTIONS(3703), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1226] = { - [sym__concat] = ACTIONS(3120), - [anon_sym_in] = ACTIONS(3120), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_SEMI_SEMI] = ACTIONS(3120), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3120), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3701), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1227] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(3716), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_concatenation] = STATE(1639), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1639), + [sym_regex] = ACTIONS(3707), + [anon_sym_RBRACE] = ACTIONS(3693), + [anon_sym_EQ] = ACTIONS(3709), + [anon_sym_DASH] = ACTIONS(3709), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3711), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3709), + [anon_sym_COLON_QMARK] = ACTIONS(3709), + [anon_sym_COLON_DASH] = ACTIONS(3709), + [anon_sym_PERCENT] = ACTIONS(3709), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1228] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(3716), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3693), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1229] = { - [sym__concat] = ACTIONS(3158), - [anon_sym_in] = ACTIONS(3158), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_SEMI_SEMI] = ACTIONS(3158), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3158), + [sym_concatenation] = STATE(1641), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1641), + [anon_sym_RBRACE] = ACTIONS(3713), + [anon_sym_EQ] = ACTIONS(3715), + [anon_sym_DASH] = ACTIONS(3715), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3717), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3715), + [anon_sym_COLON_QMARK] = ACTIONS(3715), + [anon_sym_COLON_DASH] = ACTIONS(3715), + [anon_sym_PERCENT] = ACTIONS(3715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1230] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(3718), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__concat] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [anon_sym_RBRACK] = ACTIONS(3036), + [anon_sym_EQ_TILDE] = ACTIONS(3036), + [anon_sym_EQ_EQ] = ACTIONS(3036), + [anon_sym_EQ] = ACTIONS(3038), + [anon_sym_PLUS_EQ] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3038), + [anon_sym_BANG_EQ] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(3038), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym_DASH_EQ] = ACTIONS(3036), + [anon_sym_LT_EQ] = ACTIONS(3036), + [anon_sym_GT_EQ] = ACTIONS(3036), + [anon_sym_PLUS_PLUS] = ACTIONS(3036), + [anon_sym_DASH_DASH] = ACTIONS(3036), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3036), }, [1231] = { - [sym_file_redirect] = STATE(1651), - [sym_file_descriptor] = ACTIONS(1428), - [ts_builtin_sym_end] = ACTIONS(3720), - [anon_sym_SEMI] = ACTIONS(3722), - [anon_sym_PIPE] = ACTIONS(3722), - [anon_sym_SEMI_SEMI] = ACTIONS(3720), - [anon_sym_PIPE_AMP] = ACTIONS(3720), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_LT] = ACTIONS(1434), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_GT_GT] = ACTIONS(1436), - [anon_sym_AMP_GT] = ACTIONS(1434), - [anon_sym_AMP_GT_GT] = ACTIONS(1436), - [anon_sym_LT_AMP] = ACTIONS(1436), - [anon_sym_GT_AMP] = ACTIONS(1436), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3720), - [anon_sym_AMP] = ACTIONS(3722), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3713), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1232] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_concatenation] = STATE(1639), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1639), + [anon_sym_RBRACE] = ACTIONS(3693), + [anon_sym_EQ] = ACTIONS(3709), + [anon_sym_DASH] = ACTIONS(3709), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3711), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3709), + [anon_sym_COLON_QMARK] = ACTIONS(3709), + [anon_sym_COLON_DASH] = ACTIONS(3709), + [anon_sym_PERCENT] = ACTIONS(3709), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1233] = { - [sym_file_descriptor] = ACTIONS(3724), - [ts_builtin_sym_end] = ACTIONS(3724), - [anon_sym_SEMI] = ACTIONS(3726), - [anon_sym_esac] = ACTIONS(3724), - [anon_sym_PIPE] = ACTIONS(3726), - [anon_sym_RPAREN] = ACTIONS(3724), - [anon_sym_SEMI_SEMI] = ACTIONS(3724), - [anon_sym_PIPE_AMP] = ACTIONS(3724), - [anon_sym_AMP_AMP] = ACTIONS(3724), - [anon_sym_PIPE_PIPE] = ACTIONS(3724), - [anon_sym_LT] = ACTIONS(3726), - [anon_sym_GT] = ACTIONS(3726), - [anon_sym_GT_GT] = ACTIONS(3724), - [anon_sym_AMP_GT] = ACTIONS(3726), - [anon_sym_AMP_GT_GT] = ACTIONS(3724), - [anon_sym_LT_AMP] = ACTIONS(3724), - [anon_sym_GT_AMP] = ACTIONS(3724), - [anon_sym_BQUOTE] = ACTIONS(3724), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3724), - [anon_sym_AMP] = ACTIONS(3726), + [sym__concat] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_RBRACK] = ACTIONS(3091), + [anon_sym_EQ_TILDE] = ACTIONS(3091), + [anon_sym_EQ_EQ] = ACTIONS(3091), + [anon_sym_EQ] = ACTIONS(3093), + [anon_sym_PLUS_EQ] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_GT] = ACTIONS(3093), + [anon_sym_BANG_EQ] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3093), + [anon_sym_DASH_EQ] = ACTIONS(3091), + [anon_sym_LT_EQ] = ACTIONS(3091), + [anon_sym_GT_EQ] = ACTIONS(3091), + [anon_sym_PLUS_PLUS] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3091), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3091), }, [1234] = { - [sym__terminated_statement] = STATE(1234), - [sym_for_statement] = STATE(751), - [sym_c_style_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_if_statement] = STATE(751), - [sym_case_statement] = STATE(751), - [sym_function_definition] = STATE(751), - [sym_subshell] = STATE(751), - [sym_pipeline] = STATE(751), - [sym_list] = STATE(751), - [sym_negated_command] = STATE(751), - [sym_test_command] = STATE(751), - [sym_declaration_command] = STATE(751), - [sym_unset_command] = STATE(751), - [sym_command] = STATE(751), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(752), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(1234), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(997), - [sym_variable_name] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1003), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1009), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1015), - [anon_sym_function] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_RBRACE] = ACTIONS(3728), - [anon_sym_BANG] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1027), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym_declare] = ACTIONS(1033), - [anon_sym_typeset] = ACTIONS(1033), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_readonly] = ACTIONS(1033), - [anon_sym_local] = ACTIONS(1033), - [anon_sym_unset] = ACTIONS(1036), - [anon_sym_unsetenv] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1039), - [anon_sym_GT_GT] = ACTIONS(1042), - [anon_sym_AMP_GT] = ACTIONS(1039), - [anon_sym_AMP_GT_GT] = ACTIONS(1042), - [anon_sym_LT_AMP] = ACTIONS(1042), - [anon_sym_GT_AMP] = ACTIONS(1042), - [sym__special_characters] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_DOLLAR] = ACTIONS(1051), - [sym_raw_string] = ACTIONS(1054), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1060), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1069), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(3719), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1235] = { - [sym_concatenation] = STATE(1654), - [sym_string] = STATE(1653), - [sym_simple_expansion] = STATE(1653), - [sym_string_expansion] = STATE(1653), - [sym_expansion] = STATE(1653), - [sym_command_substitution] = STATE(1653), - [sym_process_substitution] = STATE(1653), - [sym__special_characters] = ACTIONS(3730), - [anon_sym_DQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [sym_raw_string] = ACTIONS(3732), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [anon_sym_LT_LPAREN] = ACTIONS(241), - [anon_sym_GT_LPAREN] = ACTIONS(241), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3732), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(3719), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1236] = { - [aux_sym_concatenation_repeat1] = STATE(1655), - [sym__concat] = ACTIONS(735), - [ts_builtin_sym_end] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(3721), + [anon_sym_RPAREN] = ACTIONS(3719), + [anon_sym_SEMI_SEMI] = ACTIONS(3723), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3723), + [anon_sym_AMP] = ACTIONS(3723), }, [1237] = { - [aux_sym_concatenation_repeat1] = STATE(1655), - [sym__concat] = ACTIONS(735), - [ts_builtin_sym_end] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_SEMI_SEMI] = ACTIONS(791), - [anon_sym_PIPE_AMP] = ACTIONS(791), - [anon_sym_AMP_AMP] = ACTIONS(791), - [anon_sym_PIPE_PIPE] = ACTIONS(791), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_AMP] = ACTIONS(793), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(3719), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [1238] = { - [ts_builtin_sym_end] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_esac] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_SEMI_SEMI] = ACTIONS(791), - [anon_sym_PIPE_AMP] = ACTIONS(791), - [anon_sym_AMP_AMP] = ACTIONS(791), - [anon_sym_PIPE_PIPE] = ACTIONS(791), - [anon_sym_BQUOTE] = ACTIONS(791), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_AMP] = ACTIONS(793), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(3719), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1239] = { - [aux_sym_concatenation_repeat1] = STATE(1656), - [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(1130), - [sym_variable_name] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(809), - [anon_sym_AMP_GT_GT] = ACTIONS(807), - [anon_sym_LT_AMP] = ACTIONS(807), - [anon_sym_GT_AMP] = ACTIONS(807), - [sym__special_characters] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_LT_LPAREN] = ACTIONS(807), - [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(809), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), + [anon_sym_SEMI] = ACTIONS(3725), + [anon_sym_SEMI_SEMI] = ACTIONS(3727), + [anon_sym_BQUOTE] = ACTIONS(3719), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3727), + [anon_sym_AMP] = ACTIONS(3727), }, [1240] = { - [anon_sym_LT] = ACTIONS(3734), - [anon_sym_GT] = ACTIONS(3734), - [anon_sym_GT_GT] = ACTIONS(3736), - [anon_sym_AMP_GT] = ACTIONS(3734), - [anon_sym_AMP_GT_GT] = ACTIONS(3736), - [anon_sym_LT_AMP] = ACTIONS(3736), - [anon_sym_GT_AMP] = ACTIONS(3736), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(3121), + [anon_sym_AMP_AMP] = ACTIONS(3121), + [anon_sym_PIPE_PIPE] = ACTIONS(3121), + [anon_sym_RBRACK] = ACTIONS(3121), + [anon_sym_EQ_TILDE] = ACTIONS(3121), + [anon_sym_EQ_EQ] = ACTIONS(3121), + [anon_sym_EQ] = ACTIONS(3123), + [anon_sym_PLUS_EQ] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(3123), + [anon_sym_GT] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(3121), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_DASH_EQ] = ACTIONS(3121), + [anon_sym_LT_EQ] = ACTIONS(3121), + [anon_sym_GT_EQ] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3121), }, [1241] = { - [sym_concatenation] = STATE(1166), - [sym_string] = STATE(1659), - [sym_simple_expansion] = STATE(1659), - [sym_string_expansion] = STATE(1659), - [sym_expansion] = STATE(1659), - [sym_command_substitution] = STATE(1659), - [sym_process_substitution] = STATE(1659), - [sym__special_characters] = ACTIONS(3738), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(3740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2406), - [anon_sym_LT_LPAREN] = ACTIONS(2408), - [anon_sym_GT_LPAREN] = ACTIONS(2408), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3740), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(3729), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1242] = { - [sym_concatenation] = STATE(1170), - [sym_string] = STATE(1661), - [sym_simple_expansion] = STATE(1661), - [sym_string_expansion] = STATE(1661), - [sym_expansion] = STATE(1661), - [sym_command_substitution] = STATE(1661), - [sym_process_substitution] = STATE(1661), - [sym__special_characters] = ACTIONS(3742), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(3744), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2406), - [anon_sym_LT_LPAREN] = ACTIONS(2408), - [anon_sym_GT_LPAREN] = ACTIONS(2408), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3744), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(3729), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1243] = { - [sym_file_redirect] = STATE(1662), - [sym_heredoc_redirect] = STATE(1662), - [sym_herestring_redirect] = STATE(1662), - [aux_sym_while_statement_repeat1] = STATE(1662), - [sym_file_descriptor] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_RPAREN] = ACTIONS(2416), - [anon_sym_SEMI_SEMI] = ACTIONS(2416), - [anon_sym_PIPE_AMP] = ACTIONS(2416), - [anon_sym_AMP_AMP] = ACTIONS(2416), - [anon_sym_PIPE_PIPE] = ACTIONS(2416), - [anon_sym_LT] = ACTIONS(2618), - [anon_sym_GT] = ACTIONS(2618), - [anon_sym_GT_GT] = ACTIONS(2620), - [anon_sym_AMP_GT] = ACTIONS(2618), - [anon_sym_AMP_GT_GT] = ACTIONS(2620), - [anon_sym_LT_AMP] = ACTIONS(2620), - [anon_sym_GT_AMP] = ACTIONS(2620), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_LT_LT_DASH] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(2622), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(3731), + [anon_sym_RPAREN] = ACTIONS(3729), + [anon_sym_SEMI_SEMI] = ACTIONS(3733), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3733), + [anon_sym_AMP] = ACTIONS(3733), }, [1244] = { - [sym_file_redirect] = STATE(780), - [sym_heredoc_redirect] = STATE(780), - [sym_heredoc_body] = STATE(1188), - [sym_herestring_redirect] = STATE(780), - [aux_sym_while_statement_repeat1] = STATE(780), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(633), - [anon_sym_SEMI] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(2479), - [anon_sym_RPAREN] = ACTIONS(2477), - [anon_sym_SEMI_SEMI] = ACTIONS(2477), - [anon_sym_PIPE_AMP] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_LT] = ACTIONS(637), - [anon_sym_GT] = ACTIONS(637), - [anon_sym_GT_GT] = ACTIONS(639), - [anon_sym_AMP_GT] = ACTIONS(637), - [anon_sym_AMP_GT_GT] = ACTIONS(639), - [anon_sym_LT_AMP] = ACTIONS(639), - [anon_sym_GT_AMP] = ACTIONS(639), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(641), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2479), + [sym__simple_heredoc_body] = ACTIONS(2076), + [sym__heredoc_body_beginning] = ACTIONS(2076), + [sym_file_descriptor] = ACTIONS(2076), + [sym_variable_name] = ACTIONS(2076), + [ts_builtin_sym_end] = ACTIONS(2076), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_PIPE] = ACTIONS(2078), + [anon_sym_RPAREN] = ACTIONS(2076), + [anon_sym_SEMI_SEMI] = ACTIONS(2076), + [anon_sym_PIPE_AMP] = ACTIONS(2076), + [anon_sym_AMP_AMP] = ACTIONS(2076), + [anon_sym_PIPE_PIPE] = ACTIONS(2076), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_GT] = ACTIONS(2078), + [anon_sym_GT_GT] = ACTIONS(2076), + [anon_sym_AMP_GT] = ACTIONS(2078), + [anon_sym_AMP_GT_GT] = ACTIONS(2076), + [anon_sym_LT_AMP] = ACTIONS(2076), + [anon_sym_GT_AMP] = ACTIONS(2076), + [anon_sym_LT_LT] = ACTIONS(2078), + [anon_sym_LT_LT_DASH] = ACTIONS(2076), + [anon_sym_LT_LT_LT] = ACTIONS(2076), + [sym__special_characters] = ACTIONS(2076), + [anon_sym_DQUOTE] = ACTIONS(2076), + [anon_sym_DOLLAR] = ACTIONS(2078), + [sym_raw_string] = ACTIONS(2076), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2076), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2076), + [anon_sym_BQUOTE] = ACTIONS(2076), + [anon_sym_LT_LPAREN] = ACTIONS(2076), + [anon_sym_GT_LPAREN] = ACTIONS(2076), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2078), + [sym_word] = ACTIONS(2078), + [anon_sym_LF] = ACTIONS(2076), + [anon_sym_AMP] = ACTIONS(2078), }, [1245] = { - [sym_compound_statement] = STATE(1663), - [anon_sym_LBRACE] = ACTIONS(595), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(1007), + [sym_string] = STATE(537), + [sym_simple_expansion] = STATE(537), + [sym_string_expansion] = STATE(537), + [sym_expansion] = STATE(537), + [sym_command_substitution] = STATE(537), + [sym_process_substitution] = STATE(537), + [aux_sym_for_statement_repeat1] = STATE(1007), + [anon_sym_RPAREN] = ACTIONS(3735), + [sym__special_characters] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1095), + [sym_raw_string] = ACTIONS(1097), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1099), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1103), + [anon_sym_LT_LPAREN] = ACTIONS(1105), + [anon_sym_GT_LPAREN] = ACTIONS(1105), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1097), }, [1246] = { - [anon_sym_LT] = ACTIONS(3746), - [anon_sym_GT] = ACTIONS(3746), - [anon_sym_GT_GT] = ACTIONS(3748), - [anon_sym_AMP_GT] = ACTIONS(3746), - [anon_sym_AMP_GT_GT] = ACTIONS(3748), - [anon_sym_LT_AMP] = ACTIONS(3748), - [anon_sym_GT_AMP] = ACTIONS(3748), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(2930), + [sym__heredoc_body_beginning] = ACTIONS(2930), + [sym_file_descriptor] = ACTIONS(2930), + [sym__concat] = ACTIONS(2930), + [sym_variable_name] = ACTIONS(2930), + [ts_builtin_sym_end] = ACTIONS(2930), + [anon_sym_SEMI] = ACTIONS(2932), + [anon_sym_PIPE] = ACTIONS(2932), + [anon_sym_RPAREN] = ACTIONS(2930), + [anon_sym_SEMI_SEMI] = ACTIONS(2930), + [anon_sym_PIPE_AMP] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_PIPE_PIPE] = ACTIONS(2930), + [anon_sym_LT] = ACTIONS(2932), + [anon_sym_GT] = ACTIONS(2932), + [anon_sym_GT_GT] = ACTIONS(2930), + [anon_sym_AMP_GT] = ACTIONS(2932), + [anon_sym_AMP_GT_GT] = ACTIONS(2930), + [anon_sym_LT_AMP] = ACTIONS(2930), + [anon_sym_GT_AMP] = ACTIONS(2930), + [anon_sym_LT_LT] = ACTIONS(2932), + [anon_sym_LT_LT_DASH] = ACTIONS(2930), + [anon_sym_LT_LT_LT] = ACTIONS(2930), + [sym__special_characters] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [anon_sym_DOLLAR] = ACTIONS(2932), + [sym_raw_string] = ACTIONS(2930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2930), + [anon_sym_BQUOTE] = ACTIONS(2930), + [anon_sym_LT_LPAREN] = ACTIONS(2930), + [anon_sym_GT_LPAREN] = ACTIONS(2930), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2932), + [sym_word] = ACTIONS(2932), + [anon_sym_LF] = ACTIONS(2930), + [anon_sym_AMP] = ACTIONS(2932), }, [1247] = { - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(1666), - [sym_simple_expansion] = STATE(1666), - [sym_string_expansion] = STATE(1666), - [sym_expansion] = STATE(1666), - [sym_command_substitution] = STATE(1666), - [sym_process_substitution] = STATE(1666), - [sym__special_characters] = ACTIONS(3750), - [anon_sym_DQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [sym_raw_string] = ACTIONS(3752), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [anon_sym_LT_LPAREN] = ACTIONS(241), - [anon_sym_GT_LPAREN] = ACTIONS(241), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3752), + [sym__simple_heredoc_body] = ACTIONS(2944), + [sym__heredoc_body_beginning] = ACTIONS(2944), + [sym_file_descriptor] = ACTIONS(2944), + [sym__concat] = ACTIONS(2944), + [sym_variable_name] = ACTIONS(2944), + [ts_builtin_sym_end] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_PIPE] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(2944), + [anon_sym_SEMI_SEMI] = ACTIONS(2944), + [anon_sym_PIPE_AMP] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_GT] = ACTIONS(2946), + [anon_sym_GT_GT] = ACTIONS(2944), + [anon_sym_AMP_GT] = ACTIONS(2946), + [anon_sym_AMP_GT_GT] = ACTIONS(2944), + [anon_sym_LT_AMP] = ACTIONS(2944), + [anon_sym_GT_AMP] = ACTIONS(2944), + [anon_sym_LT_LT] = ACTIONS(2946), + [anon_sym_LT_LT_DASH] = ACTIONS(2944), + [anon_sym_LT_LT_LT] = ACTIONS(2944), + [sym__special_characters] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_DOLLAR] = ACTIONS(2946), + [sym_raw_string] = ACTIONS(2944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2944), + [anon_sym_BQUOTE] = ACTIONS(2944), + [anon_sym_LT_LPAREN] = ACTIONS(2944), + [anon_sym_GT_LPAREN] = ACTIONS(2944), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2946), + [sym_word] = ACTIONS(2946), + [anon_sym_LF] = ACTIONS(2944), + [anon_sym_AMP] = ACTIONS(2946), }, [1248] = { - [aux_sym_concatenation_repeat1] = STATE(764), - [sym__concat] = ACTIONS(697), - [sym_variable_name] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1132), - [anon_sym_RPAREN] = ACTIONS(1128), - [anon_sym_SEMI_SEMI] = ACTIONS(1128), - [anon_sym_PIPE_AMP] = ACTIONS(1128), - [anon_sym_AMP_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1128), - [sym__special_characters] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [anon_sym_DOLLAR] = ACTIONS(1132), - [sym_raw_string] = ACTIONS(1128), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1128), - [anon_sym_LT_LPAREN] = ACTIONS(1128), - [anon_sym_GT_LPAREN] = ACTIONS(1128), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1132), - [sym_word] = ACTIONS(1132), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1132), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(3737), + [sym_comment] = ACTIONS(57), }, [1249] = { - [aux_sym_concatenation_repeat1] = STATE(764), - [sym__concat] = ACTIONS(697), - [sym_variable_name] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_RPAREN] = ACTIONS(1106), - [anon_sym_SEMI_SEMI] = ACTIONS(1106), - [anon_sym_PIPE_AMP] = ACTIONS(1106), - [anon_sym_AMP_AMP] = ACTIONS(1106), - [anon_sym_PIPE_PIPE] = ACTIONS(1106), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [sym_raw_string] = ACTIONS(1106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), - [anon_sym_BQUOTE] = ACTIONS(1106), - [anon_sym_LT_LPAREN] = ACTIONS(1106), - [anon_sym_GT_LPAREN] = ACTIONS(1106), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1108), - [sym_word] = ACTIONS(1108), - [anon_sym_LF] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(3739), + [sym_comment] = ACTIONS(57), }, [1250] = { - [aux_sym_concatenation_repeat1] = STATE(1250), - [sym__concat] = ACTIONS(2754), - [sym_variable_name] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_RBRACE] = ACTIONS(3739), + [sym_comment] = ACTIONS(57), }, [1251] = { - [aux_sym_concatenation_repeat1] = STATE(1251), - [sym__concat] = ACTIONS(2807), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym_concatenation] = STATE(1652), + [sym_string] = STATE(1651), + [sym_simple_expansion] = STATE(1651), + [sym_string_expansion] = STATE(1651), + [sym_expansion] = STATE(1651), + [sym_command_substitution] = STATE(1651), + [sym_process_substitution] = STATE(1651), + [anon_sym_RBRACE] = ACTIONS(3739), + [sym__special_characters] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(3743), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3743), }, [1252] = { - [sym_file_redirect] = STATE(1437), - [sym_file_descriptor] = ACTIONS(2626), - [anon_sym_SEMI] = ACTIONS(2614), - [anon_sym_PIPE] = ACTIONS(2614), - [anon_sym_RPAREN] = ACTIONS(2612), - [anon_sym_SEMI_SEMI] = ACTIONS(2612), - [anon_sym_PIPE_AMP] = ACTIONS(2612), - [anon_sym_AMP_AMP] = ACTIONS(2612), - [anon_sym_PIPE_PIPE] = ACTIONS(2612), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_GT] = ACTIONS(2628), - [anon_sym_GT_GT] = ACTIONS(2630), - [anon_sym_AMP_GT] = ACTIONS(2628), - [anon_sym_AMP_GT_GT] = ACTIONS(2630), - [anon_sym_LT_AMP] = ACTIONS(2630), - [anon_sym_GT_AMP] = ACTIONS(2630), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2612), - [anon_sym_AMP] = ACTIONS(2614), + [sym__simple_heredoc_body] = ACTIONS(2980), + [sym__heredoc_body_beginning] = ACTIONS(2980), + [sym_file_descriptor] = ACTIONS(2980), + [sym__concat] = ACTIONS(2980), + [sym_variable_name] = ACTIONS(2980), + [ts_builtin_sym_end] = ACTIONS(2980), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2982), + [anon_sym_RPAREN] = ACTIONS(2980), + [anon_sym_SEMI_SEMI] = ACTIONS(2980), + [anon_sym_PIPE_AMP] = ACTIONS(2980), + [anon_sym_AMP_AMP] = ACTIONS(2980), + [anon_sym_PIPE_PIPE] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_GT] = ACTIONS(2982), + [anon_sym_GT_GT] = ACTIONS(2980), + [anon_sym_AMP_GT] = ACTIONS(2982), + [anon_sym_AMP_GT_GT] = ACTIONS(2980), + [anon_sym_LT_AMP] = ACTIONS(2980), + [anon_sym_GT_AMP] = ACTIONS(2980), + [anon_sym_LT_LT] = ACTIONS(2982), + [anon_sym_LT_LT_DASH] = ACTIONS(2980), + [anon_sym_LT_LT_LT] = ACTIONS(2980), + [sym__special_characters] = ACTIONS(2980), + [anon_sym_DQUOTE] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2982), + [sym_raw_string] = ACTIONS(2980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2980), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2980), + [anon_sym_BQUOTE] = ACTIONS(2980), + [anon_sym_LT_LPAREN] = ACTIONS(2980), + [anon_sym_GT_LPAREN] = ACTIONS(2980), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2982), + [sym_word] = ACTIONS(2982), + [anon_sym_LF] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), }, [1253] = { - [aux_sym_concatenation_repeat1] = STATE(1255), - [sym__simple_heredoc_body] = ACTIONS(1088), - [sym__heredoc_body_beginning] = ACTIONS(1088), - [sym_file_descriptor] = ACTIONS(1088), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1090), - [anon_sym_RPAREN] = ACTIONS(1088), - [anon_sym_SEMI_SEMI] = ACTIONS(1088), - [anon_sym_PIPE_AMP] = ACTIONS(1088), - [anon_sym_AMP_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1088), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(1090), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_AMP_GT] = ACTIONS(1090), - [anon_sym_AMP_GT_GT] = ACTIONS(1088), - [anon_sym_LT_AMP] = ACTIONS(1088), - [anon_sym_GT_AMP] = ACTIONS(1088), - [anon_sym_LT_LT] = ACTIONS(1090), - [anon_sym_LT_LT_DASH] = ACTIONS(1088), - [anon_sym_LT_LT_LT] = ACTIONS(1088), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), + [sym_concatenation] = STATE(1655), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1655), + [sym_regex] = ACTIONS(3745), + [anon_sym_RBRACE] = ACTIONS(3747), + [anon_sym_EQ] = ACTIONS(3749), + [anon_sym_DASH] = ACTIONS(3749), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3749), + [anon_sym_COLON_QMARK] = ACTIONS(3749), + [anon_sym_COLON_DASH] = ACTIONS(3749), + [anon_sym_PERCENT] = ACTIONS(3749), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1254] = { - [aux_sym_concatenation_repeat1] = STATE(1255), - [sym__simple_heredoc_body] = ACTIONS(1092), - [sym__heredoc_body_beginning] = ACTIONS(1092), - [sym_file_descriptor] = ACTIONS(1092), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_RPAREN] = ACTIONS(1092), - [anon_sym_SEMI_SEMI] = ACTIONS(1092), - [anon_sym_PIPE_AMP] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_LT] = ACTIONS(1094), - [anon_sym_GT] = ACTIONS(1094), - [anon_sym_GT_GT] = ACTIONS(1092), - [anon_sym_AMP_GT] = ACTIONS(1094), - [anon_sym_AMP_GT_GT] = ACTIONS(1092), - [anon_sym_LT_AMP] = ACTIONS(1092), - [anon_sym_GT_AMP] = ACTIONS(1092), - [anon_sym_LT_LT] = ACTIONS(1094), - [anon_sym_LT_LT_DASH] = ACTIONS(1092), - [anon_sym_LT_LT_LT] = ACTIONS(1092), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1092), - [anon_sym_AMP] = ACTIONS(1094), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3747), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1255] = { - [aux_sym_concatenation_repeat1] = STATE(1667), - [sym__simple_heredoc_body] = ACTIONS(807), - [sym__heredoc_body_beginning] = ACTIONS(807), - [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(809), - [anon_sym_AMP_GT_GT] = ACTIONS(807), - [anon_sym_LT_AMP] = ACTIONS(807), - [anon_sym_GT_AMP] = ACTIONS(807), - [anon_sym_LT_LT] = ACTIONS(809), - [anon_sym_LT_LT_DASH] = ACTIONS(807), - [anon_sym_LT_LT_LT] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), + [sym_concatenation] = STATE(1657), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1657), + [sym_regex] = ACTIONS(3753), + [anon_sym_RBRACE] = ACTIONS(3739), + [anon_sym_EQ] = ACTIONS(3755), + [anon_sym_DASH] = ACTIONS(3755), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3757), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3755), + [anon_sym_COLON_QMARK] = ACTIONS(3755), + [anon_sym_COLON_DASH] = ACTIONS(3755), + [anon_sym_PERCENT] = ACTIONS(3755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1256] = { - [ts_builtin_sym_end] = ACTIONS(3754), - [anon_sym_SEMI] = ACTIONS(3756), - [anon_sym_esac] = ACTIONS(3754), - [anon_sym_PIPE] = ACTIONS(3756), - [anon_sym_RPAREN] = ACTIONS(3754), - [anon_sym_SEMI_SEMI] = ACTIONS(3754), - [anon_sym_PIPE_AMP] = ACTIONS(3754), - [anon_sym_AMP_AMP] = ACTIONS(3754), - [anon_sym_PIPE_PIPE] = ACTIONS(3754), - [anon_sym_BQUOTE] = ACTIONS(3754), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3756), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3739), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1257] = { - [sym_file_redirect] = STATE(780), - [sym_heredoc_redirect] = STATE(780), - [sym_heredoc_body] = STATE(1449), - [sym_herestring_redirect] = STATE(780), - [aux_sym_while_statement_repeat1] = STATE(780), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(633), - [anon_sym_SEMI] = ACTIONS(3207), - [anon_sym_PIPE] = ACTIONS(3207), - [anon_sym_RPAREN] = ACTIONS(3205), - [anon_sym_SEMI_SEMI] = ACTIONS(3205), - [anon_sym_PIPE_AMP] = ACTIONS(3205), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_PIPE_PIPE] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(637), - [anon_sym_GT] = ACTIONS(637), - [anon_sym_GT_GT] = ACTIONS(639), - [anon_sym_AMP_GT] = ACTIONS(637), - [anon_sym_AMP_GT_GT] = ACTIONS(639), - [anon_sym_LT_AMP] = ACTIONS(639), - [anon_sym_GT_AMP] = ACTIONS(639), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(641), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3207), + [sym_concatenation] = STATE(1659), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1659), + [anon_sym_RBRACE] = ACTIONS(3759), + [anon_sym_EQ] = ACTIONS(3761), + [anon_sym_DASH] = ACTIONS(3761), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3763), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3761), + [anon_sym_COLON_QMARK] = ACTIONS(3761), + [anon_sym_COLON_DASH] = ACTIONS(3761), + [anon_sym_PERCENT] = ACTIONS(3761), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1258] = { - [sym_file_descriptor] = ACTIONS(2099), - [sym_variable_name] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2101), - [anon_sym_GT] = ACTIONS(2101), - [anon_sym_GT_GT] = ACTIONS(2099), - [anon_sym_AMP_GT] = ACTIONS(2101), - [anon_sym_AMP_GT_GT] = ACTIONS(2099), - [anon_sym_LT_AMP] = ACTIONS(2099), - [anon_sym_GT_AMP] = ACTIONS(2099), - [sym__special_characters] = ACTIONS(2099), - [anon_sym_DQUOTE] = ACTIONS(2099), - [anon_sym_DOLLAR] = ACTIONS(2101), - [sym_raw_string] = ACTIONS(2099), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2099), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2099), - [anon_sym_BQUOTE] = ACTIONS(2099), - [anon_sym_LT_LPAREN] = ACTIONS(2099), - [anon_sym_GT_LPAREN] = ACTIONS(2099), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2099), + [sym__simple_heredoc_body] = ACTIONS(3036), + [sym__heredoc_body_beginning] = ACTIONS(3036), + [sym_file_descriptor] = ACTIONS(3036), + [sym__concat] = ACTIONS(3036), + [sym_variable_name] = ACTIONS(3036), + [ts_builtin_sym_end] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_PIPE] = ACTIONS(3038), + [anon_sym_RPAREN] = ACTIONS(3036), + [anon_sym_SEMI_SEMI] = ACTIONS(3036), + [anon_sym_PIPE_AMP] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3038), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_AMP_GT] = ACTIONS(3038), + [anon_sym_AMP_GT_GT] = ACTIONS(3036), + [anon_sym_LT_AMP] = ACTIONS(3036), + [anon_sym_GT_AMP] = ACTIONS(3036), + [anon_sym_LT_LT] = ACTIONS(3038), + [anon_sym_LT_LT_DASH] = ACTIONS(3036), + [anon_sym_LT_LT_LT] = ACTIONS(3036), + [sym__special_characters] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_DOLLAR] = ACTIONS(3038), + [sym_raw_string] = ACTIONS(3036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3036), + [anon_sym_BQUOTE] = ACTIONS(3036), + [anon_sym_LT_LPAREN] = ACTIONS(3036), + [anon_sym_GT_LPAREN] = ACTIONS(3036), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3038), + [sym_word] = ACTIONS(3038), + [anon_sym_LF] = ACTIONS(3036), + [anon_sym_AMP] = ACTIONS(3038), }, [1259] = { - [sym_concatenation] = STATE(1026), - [sym_string] = STATE(558), - [sym_simple_expansion] = STATE(558), - [sym_string_expansion] = STATE(558), - [sym_expansion] = STATE(558), - [sym_command_substitution] = STATE(558), - [sym_process_substitution] = STATE(558), - [aux_sym_for_statement_repeat1] = STATE(1026), - [anon_sym_RPAREN] = ACTIONS(3758), - [sym__special_characters] = ACTIONS(1112), - [anon_sym_DQUOTE] = ACTIONS(1114), - [anon_sym_DOLLAR] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), - [anon_sym_BQUOTE] = ACTIONS(1124), - [anon_sym_LT_LPAREN] = ACTIONS(1126), - [anon_sym_GT_LPAREN] = ACTIONS(1126), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1118), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3759), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1260] = { - [sym__concat] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_RBRACK] = ACTIONS(2959), - [anon_sym_EQ_TILDE] = ACTIONS(2959), - [anon_sym_EQ_EQ] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(2961), - [anon_sym_PLUS_EQ] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_GT] = ACTIONS(2961), - [anon_sym_BANG_EQ] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_DASH_EQ] = ACTIONS(2959), - [anon_sym_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_EQ] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(2959), + [sym_concatenation] = STATE(1657), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1657), + [anon_sym_RBRACE] = ACTIONS(3739), + [anon_sym_EQ] = ACTIONS(3755), + [anon_sym_DASH] = ACTIONS(3755), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3757), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3755), + [anon_sym_COLON_QMARK] = ACTIONS(3755), + [anon_sym_COLON_DASH] = ACTIONS(3755), + [anon_sym_PERCENT] = ACTIONS(3755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1261] = { - [sym__concat] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_RBRACK] = ACTIONS(2973), - [anon_sym_EQ_TILDE] = ACTIONS(2973), - [anon_sym_EQ_EQ] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_PLUS_EQ] = ACTIONS(2973), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_GT] = ACTIONS(2975), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2975), - [anon_sym_DASH_EQ] = ACTIONS(2973), - [anon_sym_LT_EQ] = ACTIONS(2973), - [anon_sym_GT_EQ] = ACTIONS(2973), - [anon_sym_PLUS_PLUS] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2973), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(2973), + [sym__simple_heredoc_body] = ACTIONS(3091), + [sym__heredoc_body_beginning] = ACTIONS(3091), + [sym_file_descriptor] = ACTIONS(3091), + [sym__concat] = ACTIONS(3091), + [sym_variable_name] = ACTIONS(3091), + [ts_builtin_sym_end] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3093), + [anon_sym_RPAREN] = ACTIONS(3091), + [anon_sym_SEMI_SEMI] = ACTIONS(3091), + [anon_sym_PIPE_AMP] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_GT] = ACTIONS(3093), + [anon_sym_GT_GT] = ACTIONS(3091), + [anon_sym_AMP_GT] = ACTIONS(3093), + [anon_sym_AMP_GT_GT] = ACTIONS(3091), + [anon_sym_LT_AMP] = ACTIONS(3091), + [anon_sym_GT_AMP] = ACTIONS(3091), + [anon_sym_LT_LT] = ACTIONS(3093), + [anon_sym_LT_LT_DASH] = ACTIONS(3091), + [anon_sym_LT_LT_LT] = ACTIONS(3091), + [sym__special_characters] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [anon_sym_DOLLAR] = ACTIONS(3093), + [sym_raw_string] = ACTIONS(3091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3091), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(3091), + [anon_sym_LT_LPAREN] = ACTIONS(3091), + [anon_sym_GT_LPAREN] = ACTIONS(3091), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3093), + [sym_word] = ACTIONS(3093), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3093), }, [1262] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(3760), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(3765), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1263] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(3762), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(3765), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1264] = { - [anon_sym_RBRACE] = ACTIONS(3762), - [sym_comment] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(3767), + [anon_sym_RPAREN] = ACTIONS(3765), + [anon_sym_SEMI_SEMI] = ACTIONS(3769), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3769), + [anon_sym_AMP] = ACTIONS(3769), }, [1265] = { - [sym_concatenation] = STATE(1673), - [sym_string] = STATE(1672), - [sym_simple_expansion] = STATE(1672), - [sym_string_expansion] = STATE(1672), - [sym_expansion] = STATE(1672), - [sym_command_substitution] = STATE(1672), - [sym_process_substitution] = STATE(1672), - [anon_sym_RBRACE] = ACTIONS(3762), - [sym__special_characters] = ACTIONS(3764), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(3766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3766), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(3765), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [1266] = { - [sym__concat] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3009), - [anon_sym_RBRACK] = ACTIONS(3009), - [anon_sym_EQ_TILDE] = ACTIONS(3009), - [anon_sym_EQ_EQ] = ACTIONS(3009), - [anon_sym_EQ] = ACTIONS(3011), - [anon_sym_PLUS_EQ] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(3011), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_BANG_EQ] = ACTIONS(3009), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_DASH_EQ] = ACTIONS(3009), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_PLUS_PLUS] = ACTIONS(3009), - [anon_sym_DASH_DASH] = ACTIONS(3009), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3009), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(3765), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1267] = { - [sym_concatenation] = STATE(1676), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1676), - [sym_regex] = ACTIONS(3768), - [anon_sym_RBRACE] = ACTIONS(3770), - [anon_sym_EQ] = ACTIONS(3772), - [anon_sym_DASH] = ACTIONS(3772), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3774), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3772), - [anon_sym_COLON_QMARK] = ACTIONS(3772), - [anon_sym_COLON_DASH] = ACTIONS(3772), - [anon_sym_PERCENT] = ACTIONS(3772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(3771), + [anon_sym_SEMI_SEMI] = ACTIONS(3773), + [anon_sym_BQUOTE] = ACTIONS(3765), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3773), + [anon_sym_AMP] = ACTIONS(3773), }, [1268] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3770), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(3121), + [sym__heredoc_body_beginning] = ACTIONS(3121), + [sym_file_descriptor] = ACTIONS(3121), + [sym__concat] = ACTIONS(3121), + [sym_variable_name] = ACTIONS(3121), + [ts_builtin_sym_end] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_PIPE] = ACTIONS(3123), + [anon_sym_RPAREN] = ACTIONS(3121), + [anon_sym_SEMI_SEMI] = ACTIONS(3121), + [anon_sym_PIPE_AMP] = ACTIONS(3121), + [anon_sym_AMP_AMP] = ACTIONS(3121), + [anon_sym_PIPE_PIPE] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(3123), + [anon_sym_GT] = ACTIONS(3123), + [anon_sym_GT_GT] = ACTIONS(3121), + [anon_sym_AMP_GT] = ACTIONS(3123), + [anon_sym_AMP_GT_GT] = ACTIONS(3121), + [anon_sym_LT_AMP] = ACTIONS(3121), + [anon_sym_GT_AMP] = ACTIONS(3121), + [anon_sym_LT_LT] = ACTIONS(3123), + [anon_sym_LT_LT_DASH] = ACTIONS(3121), + [anon_sym_LT_LT_LT] = ACTIONS(3121), + [sym__special_characters] = ACTIONS(3121), + [anon_sym_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3123), + [sym_raw_string] = ACTIONS(3121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3121), + [anon_sym_BQUOTE] = ACTIONS(3121), + [anon_sym_LT_LPAREN] = ACTIONS(3121), + [anon_sym_GT_LPAREN] = ACTIONS(3121), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3123), + [sym_word] = ACTIONS(3123), + [anon_sym_LF] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), }, [1269] = { - [sym_concatenation] = STATE(1678), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1678), - [sym_regex] = ACTIONS(3776), - [anon_sym_RBRACE] = ACTIONS(3762), - [anon_sym_EQ] = ACTIONS(3778), - [anon_sym_DASH] = ACTIONS(3778), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3780), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3778), - [anon_sym_COLON_QMARK] = ACTIONS(3778), - [anon_sym_COLON_DASH] = ACTIONS(3778), - [anon_sym_PERCENT] = ACTIONS(3778), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(3775), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1270] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3762), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(3775), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1271] = { - [sym_concatenation] = STATE(1680), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1680), - [anon_sym_RBRACE] = ACTIONS(3782), - [anon_sym_EQ] = ACTIONS(3784), - [anon_sym_DASH] = ACTIONS(3784), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3786), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3784), - [anon_sym_COLON_QMARK] = ACTIONS(3784), - [anon_sym_COLON_DASH] = ACTIONS(3784), - [anon_sym_PERCENT] = ACTIONS(3784), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(3777), + [anon_sym_RPAREN] = ACTIONS(3775), + [anon_sym_SEMI_SEMI] = ACTIONS(3779), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3779), + [anon_sym_AMP] = ACTIONS(3779), }, [1272] = { - [sym__concat] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_PIPE_PIPE] = ACTIONS(3065), - [anon_sym_RBRACK] = ACTIONS(3065), - [anon_sym_EQ_TILDE] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_PLUS_EQ] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_DASH_EQ] = ACTIONS(3065), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT_EQ] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3065), + [sym__simple_heredoc_body] = ACTIONS(2930), + [sym__heredoc_body_beginning] = ACTIONS(2930), + [sym_file_descriptor] = ACTIONS(2930), + [sym__concat] = ACTIONS(2930), + [ts_builtin_sym_end] = ACTIONS(2930), + [anon_sym_SEMI] = ACTIONS(2932), + [anon_sym_PIPE] = ACTIONS(2932), + [anon_sym_RPAREN] = ACTIONS(2930), + [anon_sym_SEMI_SEMI] = ACTIONS(2930), + [anon_sym_PIPE_AMP] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_PIPE_PIPE] = ACTIONS(2930), + [anon_sym_LT] = ACTIONS(2932), + [anon_sym_GT] = ACTIONS(2932), + [anon_sym_GT_GT] = ACTIONS(2930), + [anon_sym_AMP_GT] = ACTIONS(2932), + [anon_sym_AMP_GT_GT] = ACTIONS(2930), + [anon_sym_LT_AMP] = ACTIONS(2930), + [anon_sym_GT_AMP] = ACTIONS(2930), + [anon_sym_LT_LT] = ACTIONS(2932), + [anon_sym_LT_LT_DASH] = ACTIONS(2930), + [anon_sym_LT_LT_LT] = ACTIONS(2930), + [sym__special_characters] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [anon_sym_DOLLAR] = ACTIONS(2932), + [sym_raw_string] = ACTIONS(2930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2930), + [anon_sym_BQUOTE] = ACTIONS(2930), + [anon_sym_LT_LPAREN] = ACTIONS(2930), + [anon_sym_GT_LPAREN] = ACTIONS(2930), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2932), + [sym_word] = ACTIONS(2932), + [anon_sym_LF] = ACTIONS(2930), + [anon_sym_AMP] = ACTIONS(2932), }, [1273] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3782), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(2944), + [sym__heredoc_body_beginning] = ACTIONS(2944), + [sym_file_descriptor] = ACTIONS(2944), + [sym__concat] = ACTIONS(2944), + [ts_builtin_sym_end] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_PIPE] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(2944), + [anon_sym_SEMI_SEMI] = ACTIONS(2944), + [anon_sym_PIPE_AMP] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_GT] = ACTIONS(2946), + [anon_sym_GT_GT] = ACTIONS(2944), + [anon_sym_AMP_GT] = ACTIONS(2946), + [anon_sym_AMP_GT_GT] = ACTIONS(2944), + [anon_sym_LT_AMP] = ACTIONS(2944), + [anon_sym_GT_AMP] = ACTIONS(2944), + [anon_sym_LT_LT] = ACTIONS(2946), + [anon_sym_LT_LT_DASH] = ACTIONS(2944), + [anon_sym_LT_LT_LT] = ACTIONS(2944), + [sym__special_characters] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_DOLLAR] = ACTIONS(2946), + [sym_raw_string] = ACTIONS(2944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2944), + [anon_sym_BQUOTE] = ACTIONS(2944), + [anon_sym_LT_LPAREN] = ACTIONS(2944), + [anon_sym_GT_LPAREN] = ACTIONS(2944), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2946), + [sym_word] = ACTIONS(2946), + [anon_sym_LF] = ACTIONS(2944), + [anon_sym_AMP] = ACTIONS(2946), }, [1274] = { - [sym_concatenation] = STATE(1678), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1678), - [anon_sym_RBRACE] = ACTIONS(3762), - [anon_sym_EQ] = ACTIONS(3778), - [anon_sym_DASH] = ACTIONS(3778), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3780), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3778), - [anon_sym_COLON_QMARK] = ACTIONS(3778), - [anon_sym_COLON_DASH] = ACTIONS(3778), - [anon_sym_PERCENT] = ACTIONS(3778), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(3781), + [sym_comment] = ACTIONS(57), }, [1275] = { - [sym__concat] = ACTIONS(3120), - [anon_sym_AMP_AMP] = ACTIONS(3120), - [anon_sym_PIPE_PIPE] = ACTIONS(3120), - [anon_sym_RBRACK] = ACTIONS(3120), - [anon_sym_EQ_TILDE] = ACTIONS(3120), - [anon_sym_EQ_EQ] = ACTIONS(3120), - [anon_sym_EQ] = ACTIONS(3122), - [anon_sym_PLUS_EQ] = ACTIONS(3120), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_GT] = ACTIONS(3122), - [anon_sym_BANG_EQ] = ACTIONS(3120), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_DASH_EQ] = ACTIONS(3120), - [anon_sym_LT_EQ] = ACTIONS(3120), - [anon_sym_GT_EQ] = ACTIONS(3120), - [anon_sym_PLUS_PLUS] = ACTIONS(3120), - [anon_sym_DASH_DASH] = ACTIONS(3120), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3120), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(3783), + [sym_comment] = ACTIONS(57), }, [1276] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(3788), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(3783), + [sym_comment] = ACTIONS(57), }, [1277] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(3788), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_concatenation] = STATE(1669), + [sym_string] = STATE(1668), + [sym_simple_expansion] = STATE(1668), + [sym_string_expansion] = STATE(1668), + [sym_expansion] = STATE(1668), + [sym_command_substitution] = STATE(1668), + [sym_process_substitution] = STATE(1668), + [anon_sym_RBRACE] = ACTIONS(3783), + [sym__special_characters] = ACTIONS(3785), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(3787), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3787), }, [1278] = { - [sym__concat] = ACTIONS(3158), - [anon_sym_AMP_AMP] = ACTIONS(3158), - [anon_sym_PIPE_PIPE] = ACTIONS(3158), - [anon_sym_RBRACK] = ACTIONS(3158), - [anon_sym_EQ_TILDE] = ACTIONS(3158), - [anon_sym_EQ_EQ] = ACTIONS(3158), - [anon_sym_EQ] = ACTIONS(3160), - [anon_sym_PLUS_EQ] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3160), - [anon_sym_GT] = ACTIONS(3160), - [anon_sym_BANG_EQ] = ACTIONS(3158), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_DASH_EQ] = ACTIONS(3158), - [anon_sym_LT_EQ] = ACTIONS(3158), - [anon_sym_GT_EQ] = ACTIONS(3158), - [anon_sym_PLUS_PLUS] = ACTIONS(3158), - [anon_sym_DASH_DASH] = ACTIONS(3158), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3158), + [sym__simple_heredoc_body] = ACTIONS(2980), + [sym__heredoc_body_beginning] = ACTIONS(2980), + [sym_file_descriptor] = ACTIONS(2980), + [sym__concat] = ACTIONS(2980), + [ts_builtin_sym_end] = ACTIONS(2980), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2982), + [anon_sym_RPAREN] = ACTIONS(2980), + [anon_sym_SEMI_SEMI] = ACTIONS(2980), + [anon_sym_PIPE_AMP] = ACTIONS(2980), + [anon_sym_AMP_AMP] = ACTIONS(2980), + [anon_sym_PIPE_PIPE] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_GT] = ACTIONS(2982), + [anon_sym_GT_GT] = ACTIONS(2980), + [anon_sym_AMP_GT] = ACTIONS(2982), + [anon_sym_AMP_GT_GT] = ACTIONS(2980), + [anon_sym_LT_AMP] = ACTIONS(2980), + [anon_sym_GT_AMP] = ACTIONS(2980), + [anon_sym_LT_LT] = ACTIONS(2982), + [anon_sym_LT_LT_DASH] = ACTIONS(2980), + [anon_sym_LT_LT_LT] = ACTIONS(2980), + [sym__special_characters] = ACTIONS(2980), + [anon_sym_DQUOTE] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2982), + [sym_raw_string] = ACTIONS(2980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2980), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2980), + [anon_sym_BQUOTE] = ACTIONS(2980), + [anon_sym_LT_LPAREN] = ACTIONS(2980), + [anon_sym_GT_LPAREN] = ACTIONS(2980), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2982), + [sym_word] = ACTIONS(2982), + [anon_sym_LF] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), }, [1279] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(3790), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_concatenation] = STATE(1672), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1672), + [sym_regex] = ACTIONS(3789), + [anon_sym_RBRACE] = ACTIONS(3791), + [anon_sym_EQ] = ACTIONS(3793), + [anon_sym_DASH] = ACTIONS(3793), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3795), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3793), + [anon_sym_COLON_QMARK] = ACTIONS(3793), + [anon_sym_COLON_DASH] = ACTIONS(3793), + [anon_sym_PERCENT] = ACTIONS(3793), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1280] = { - [sym_variable_name] = ACTIONS(2099), - [ts_builtin_sym_end] = ACTIONS(2099), - [anon_sym_SEMI] = ACTIONS(2101), - [anon_sym_PIPE] = ACTIONS(2101), - [anon_sym_RPAREN] = ACTIONS(2099), - [anon_sym_SEMI_SEMI] = ACTIONS(2099), - [anon_sym_PIPE_AMP] = ACTIONS(2099), - [anon_sym_AMP_AMP] = ACTIONS(2099), - [anon_sym_PIPE_PIPE] = ACTIONS(2099), - [sym__special_characters] = ACTIONS(2099), - [anon_sym_DQUOTE] = ACTIONS(2099), - [anon_sym_DOLLAR] = ACTIONS(2101), - [sym_raw_string] = ACTIONS(2099), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2099), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2099), - [anon_sym_BQUOTE] = ACTIONS(2099), - [anon_sym_LT_LPAREN] = ACTIONS(2099), - [anon_sym_GT_LPAREN] = ACTIONS(2099), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2101), - [sym_word] = ACTIONS(2101), - [anon_sym_LF] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2101), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3791), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1281] = { - [sym_concatenation] = STATE(1026), - [sym_string] = STATE(558), - [sym_simple_expansion] = STATE(558), - [sym_string_expansion] = STATE(558), - [sym_expansion] = STATE(558), - [sym_command_substitution] = STATE(558), - [sym_process_substitution] = STATE(558), - [aux_sym_for_statement_repeat1] = STATE(1026), - [anon_sym_RPAREN] = ACTIONS(3792), - [sym__special_characters] = ACTIONS(1112), - [anon_sym_DQUOTE] = ACTIONS(1114), - [anon_sym_DOLLAR] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), - [anon_sym_BQUOTE] = ACTIONS(1124), - [anon_sym_LT_LPAREN] = ACTIONS(1126), - [anon_sym_GT_LPAREN] = ACTIONS(1126), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1118), + [sym_concatenation] = STATE(1674), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1674), + [sym_regex] = ACTIONS(3797), + [anon_sym_RBRACE] = ACTIONS(3783), + [anon_sym_EQ] = ACTIONS(3799), + [anon_sym_DASH] = ACTIONS(3799), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3801), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3799), + [anon_sym_COLON_QMARK] = ACTIONS(3799), + [anon_sym_COLON_DASH] = ACTIONS(3799), + [anon_sym_PERCENT] = ACTIONS(3799), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1282] = { - [sym__concat] = ACTIONS(2959), - [sym_variable_name] = ACTIONS(2959), - [ts_builtin_sym_end] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2961), - [anon_sym_RPAREN] = ACTIONS(2959), - [anon_sym_SEMI_SEMI] = ACTIONS(2959), - [anon_sym_PIPE_AMP] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [sym__special_characters] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_DOLLAR] = ACTIONS(2961), - [sym_raw_string] = ACTIONS(2959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), - [anon_sym_BQUOTE] = ACTIONS(2959), - [anon_sym_LT_LPAREN] = ACTIONS(2959), - [anon_sym_GT_LPAREN] = ACTIONS(2959), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2961), - [sym_word] = ACTIONS(2961), - [anon_sym_LF] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3783), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1283] = { - [sym__concat] = ACTIONS(2973), - [sym_variable_name] = ACTIONS(2973), - [ts_builtin_sym_end] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym_PIPE] = ACTIONS(2975), - [anon_sym_RPAREN] = ACTIONS(2973), - [anon_sym_SEMI_SEMI] = ACTIONS(2973), - [anon_sym_PIPE_AMP] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [sym__special_characters] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_DOLLAR] = ACTIONS(2975), - [sym_raw_string] = ACTIONS(2973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), - [anon_sym_BQUOTE] = ACTIONS(2973), - [anon_sym_LT_LPAREN] = ACTIONS(2973), - [anon_sym_GT_LPAREN] = ACTIONS(2973), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2975), - [sym_word] = ACTIONS(2975), - [anon_sym_LF] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2975), + [sym_concatenation] = STATE(1676), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1676), + [anon_sym_RBRACE] = ACTIONS(3803), + [anon_sym_EQ] = ACTIONS(3805), + [anon_sym_DASH] = ACTIONS(3805), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3807), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3805), + [anon_sym_COLON_QMARK] = ACTIONS(3805), + [anon_sym_COLON_DASH] = ACTIONS(3805), + [anon_sym_PERCENT] = ACTIONS(3805), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1284] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(3794), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(3036), + [sym__heredoc_body_beginning] = ACTIONS(3036), + [sym_file_descriptor] = ACTIONS(3036), + [sym__concat] = ACTIONS(3036), + [ts_builtin_sym_end] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_PIPE] = ACTIONS(3038), + [anon_sym_RPAREN] = ACTIONS(3036), + [anon_sym_SEMI_SEMI] = ACTIONS(3036), + [anon_sym_PIPE_AMP] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3038), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_AMP_GT] = ACTIONS(3038), + [anon_sym_AMP_GT_GT] = ACTIONS(3036), + [anon_sym_LT_AMP] = ACTIONS(3036), + [anon_sym_GT_AMP] = ACTIONS(3036), + [anon_sym_LT_LT] = ACTIONS(3038), + [anon_sym_LT_LT_DASH] = ACTIONS(3036), + [anon_sym_LT_LT_LT] = ACTIONS(3036), + [sym__special_characters] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_DOLLAR] = ACTIONS(3038), + [sym_raw_string] = ACTIONS(3036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3036), + [anon_sym_BQUOTE] = ACTIONS(3036), + [anon_sym_LT_LPAREN] = ACTIONS(3036), + [anon_sym_GT_LPAREN] = ACTIONS(3036), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3038), + [sym_word] = ACTIONS(3038), + [anon_sym_LF] = ACTIONS(3036), + [anon_sym_AMP] = ACTIONS(3038), }, [1285] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(3796), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3803), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1286] = { - [anon_sym_RBRACE] = ACTIONS(3796), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(1674), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1674), + [anon_sym_RBRACE] = ACTIONS(3783), + [anon_sym_EQ] = ACTIONS(3799), + [anon_sym_DASH] = ACTIONS(3799), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3801), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3799), + [anon_sym_COLON_QMARK] = ACTIONS(3799), + [anon_sym_COLON_DASH] = ACTIONS(3799), + [anon_sym_PERCENT] = ACTIONS(3799), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1287] = { - [sym_concatenation] = STATE(1688), - [sym_string] = STATE(1687), - [sym_simple_expansion] = STATE(1687), - [sym_string_expansion] = STATE(1687), - [sym_expansion] = STATE(1687), - [sym_command_substitution] = STATE(1687), - [sym_process_substitution] = STATE(1687), - [anon_sym_RBRACE] = ACTIONS(3796), - [sym__special_characters] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(3800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3800), + [sym__simple_heredoc_body] = ACTIONS(3091), + [sym__heredoc_body_beginning] = ACTIONS(3091), + [sym_file_descriptor] = ACTIONS(3091), + [sym__concat] = ACTIONS(3091), + [ts_builtin_sym_end] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3093), + [anon_sym_RPAREN] = ACTIONS(3091), + [anon_sym_SEMI_SEMI] = ACTIONS(3091), + [anon_sym_PIPE_AMP] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_GT] = ACTIONS(3093), + [anon_sym_GT_GT] = ACTIONS(3091), + [anon_sym_AMP_GT] = ACTIONS(3093), + [anon_sym_AMP_GT_GT] = ACTIONS(3091), + [anon_sym_LT_AMP] = ACTIONS(3091), + [anon_sym_GT_AMP] = ACTIONS(3091), + [anon_sym_LT_LT] = ACTIONS(3093), + [anon_sym_LT_LT_DASH] = ACTIONS(3091), + [anon_sym_LT_LT_LT] = ACTIONS(3091), + [sym__special_characters] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [anon_sym_DOLLAR] = ACTIONS(3093), + [sym_raw_string] = ACTIONS(3091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3091), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(3091), + [anon_sym_LT_LPAREN] = ACTIONS(3091), + [anon_sym_GT_LPAREN] = ACTIONS(3091), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3093), + [sym_word] = ACTIONS(3093), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3093), }, [1288] = { - [sym__concat] = ACTIONS(3009), - [sym_variable_name] = ACTIONS(3009), - [ts_builtin_sym_end] = ACTIONS(3009), - [anon_sym_SEMI] = ACTIONS(3011), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_RPAREN] = ACTIONS(3009), - [anon_sym_SEMI_SEMI] = ACTIONS(3009), - [anon_sym_PIPE_AMP] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3009), - [sym__special_characters] = ACTIONS(3009), - [anon_sym_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3011), - [sym_raw_string] = ACTIONS(3009), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), - [anon_sym_BQUOTE] = ACTIONS(3009), - [anon_sym_LT_LPAREN] = ACTIONS(3009), - [anon_sym_GT_LPAREN] = ACTIONS(3009), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3011), - [sym_word] = ACTIONS(3011), - [anon_sym_LF] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3011), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(3809), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1289] = { - [sym_concatenation] = STATE(1691), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1691), - [sym_regex] = ACTIONS(3802), - [anon_sym_RBRACE] = ACTIONS(3804), - [anon_sym_EQ] = ACTIONS(3806), - [anon_sym_DASH] = ACTIONS(3806), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3808), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3806), - [anon_sym_COLON_QMARK] = ACTIONS(3806), - [anon_sym_COLON_DASH] = ACTIONS(3806), - [anon_sym_PERCENT] = ACTIONS(3806), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(3809), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1290] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3804), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym_RPAREN] = ACTIONS(3809), + [anon_sym_SEMI_SEMI] = ACTIONS(3813), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3813), + [anon_sym_AMP] = ACTIONS(3813), }, [1291] = { - [sym_concatenation] = STATE(1693), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1693), - [sym_regex] = ACTIONS(3810), - [anon_sym_RBRACE] = ACTIONS(3796), - [anon_sym_EQ] = ACTIONS(3812), - [anon_sym_DASH] = ACTIONS(3812), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3812), - [anon_sym_COLON_QMARK] = ACTIONS(3812), - [anon_sym_COLON_DASH] = ACTIONS(3812), - [anon_sym_PERCENT] = ACTIONS(3812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(3809), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [1292] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3796), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(3809), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1293] = { - [sym_concatenation] = STATE(1695), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1695), - [anon_sym_RBRACE] = ACTIONS(3816), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_DASH] = ACTIONS(3818), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3820), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3818), - [anon_sym_COLON_QMARK] = ACTIONS(3818), - [anon_sym_COLON_DASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(3815), + [anon_sym_SEMI_SEMI] = ACTIONS(3817), + [anon_sym_BQUOTE] = ACTIONS(3809), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3817), + [anon_sym_AMP] = ACTIONS(3817), }, [1294] = { - [sym__concat] = ACTIONS(3065), - [sym_variable_name] = ACTIONS(3065), - [ts_builtin_sym_end] = ACTIONS(3065), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_RPAREN] = ACTIONS(3065), - [anon_sym_SEMI_SEMI] = ACTIONS(3065), - [anon_sym_PIPE_AMP] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_PIPE_PIPE] = ACTIONS(3065), - [sym__special_characters] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [anon_sym_DOLLAR] = ACTIONS(3067), - [sym_raw_string] = ACTIONS(3065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), - [anon_sym_BQUOTE] = ACTIONS(3065), - [anon_sym_LT_LPAREN] = ACTIONS(3065), - [anon_sym_GT_LPAREN] = ACTIONS(3065), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3067), - [sym_word] = ACTIONS(3067), - [anon_sym_LF] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), + [sym__simple_heredoc_body] = ACTIONS(3121), + [sym__heredoc_body_beginning] = ACTIONS(3121), + [sym_file_descriptor] = ACTIONS(3121), + [sym__concat] = ACTIONS(3121), + [ts_builtin_sym_end] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_PIPE] = ACTIONS(3123), + [anon_sym_RPAREN] = ACTIONS(3121), + [anon_sym_SEMI_SEMI] = ACTIONS(3121), + [anon_sym_PIPE_AMP] = ACTIONS(3121), + [anon_sym_AMP_AMP] = ACTIONS(3121), + [anon_sym_PIPE_PIPE] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(3123), + [anon_sym_GT] = ACTIONS(3123), + [anon_sym_GT_GT] = ACTIONS(3121), + [anon_sym_AMP_GT] = ACTIONS(3123), + [anon_sym_AMP_GT_GT] = ACTIONS(3121), + [anon_sym_LT_AMP] = ACTIONS(3121), + [anon_sym_GT_AMP] = ACTIONS(3121), + [anon_sym_LT_LT] = ACTIONS(3123), + [anon_sym_LT_LT_DASH] = ACTIONS(3121), + [anon_sym_LT_LT_LT] = ACTIONS(3121), + [sym__special_characters] = ACTIONS(3121), + [anon_sym_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3123), + [sym_raw_string] = ACTIONS(3121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3121), + [anon_sym_BQUOTE] = ACTIONS(3121), + [anon_sym_LT_LPAREN] = ACTIONS(3121), + [anon_sym_GT_LPAREN] = ACTIONS(3121), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3123), + [sym_word] = ACTIONS(3123), + [anon_sym_LF] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), }, [1295] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3816), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(3819), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1296] = { - [sym_concatenation] = STATE(1693), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1693), - [anon_sym_RBRACE] = ACTIONS(3796), - [anon_sym_EQ] = ACTIONS(3812), - [anon_sym_DASH] = ACTIONS(3812), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3814), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3812), - [anon_sym_COLON_QMARK] = ACTIONS(3812), - [anon_sym_COLON_DASH] = ACTIONS(3812), - [anon_sym_PERCENT] = ACTIONS(3812), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(3819), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1297] = { - [sym__concat] = ACTIONS(3120), - [sym_variable_name] = ACTIONS(3120), - [ts_builtin_sym_end] = ACTIONS(3120), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_RPAREN] = ACTIONS(3120), - [anon_sym_SEMI_SEMI] = ACTIONS(3120), - [anon_sym_PIPE_AMP] = ACTIONS(3120), - [anon_sym_AMP_AMP] = ACTIONS(3120), - [anon_sym_PIPE_PIPE] = ACTIONS(3120), - [sym__special_characters] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [sym_raw_string] = ACTIONS(3120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), - [anon_sym_BQUOTE] = ACTIONS(3120), - [anon_sym_LT_LPAREN] = ACTIONS(3120), - [anon_sym_GT_LPAREN] = ACTIONS(3120), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3122), - [sym_word] = ACTIONS(3122), - [anon_sym_LF] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3821), + [anon_sym_RPAREN] = ACTIONS(3819), + [anon_sym_SEMI_SEMI] = ACTIONS(3823), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3823), + [anon_sym_AMP] = ACTIONS(3823), }, [1298] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(3822), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(2930), + [sym__concat] = ACTIONS(2930), + [sym_variable_name] = ACTIONS(2930), + [anon_sym_LT] = ACTIONS(2932), + [anon_sym_GT] = ACTIONS(2932), + [anon_sym_GT_GT] = ACTIONS(2930), + [anon_sym_AMP_GT] = ACTIONS(2932), + [anon_sym_AMP_GT_GT] = ACTIONS(2930), + [anon_sym_LT_AMP] = ACTIONS(2930), + [anon_sym_GT_AMP] = ACTIONS(2930), + [sym__special_characters] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [anon_sym_DOLLAR] = ACTIONS(2932), + [sym_raw_string] = ACTIONS(2930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2930), + [anon_sym_BQUOTE] = ACTIONS(2930), + [anon_sym_LT_LPAREN] = ACTIONS(2930), + [anon_sym_GT_LPAREN] = ACTIONS(2930), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2930), }, [1299] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(3822), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(2944), + [sym__concat] = ACTIONS(2944), + [sym_variable_name] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_GT] = ACTIONS(2946), + [anon_sym_GT_GT] = ACTIONS(2944), + [anon_sym_AMP_GT] = ACTIONS(2946), + [anon_sym_AMP_GT_GT] = ACTIONS(2944), + [anon_sym_LT_AMP] = ACTIONS(2944), + [anon_sym_GT_AMP] = ACTIONS(2944), + [sym__special_characters] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_DOLLAR] = ACTIONS(2946), + [sym_raw_string] = ACTIONS(2944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2944), + [anon_sym_BQUOTE] = ACTIONS(2944), + [anon_sym_LT_LPAREN] = ACTIONS(2944), + [anon_sym_GT_LPAREN] = ACTIONS(2944), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2944), }, [1300] = { - [sym__concat] = ACTIONS(3158), - [sym_variable_name] = ACTIONS(3158), - [ts_builtin_sym_end] = ACTIONS(3158), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_PIPE] = ACTIONS(3160), - [anon_sym_RPAREN] = ACTIONS(3158), - [anon_sym_SEMI_SEMI] = ACTIONS(3158), - [anon_sym_PIPE_AMP] = ACTIONS(3158), - [anon_sym_AMP_AMP] = ACTIONS(3158), - [anon_sym_PIPE_PIPE] = ACTIONS(3158), - [sym__special_characters] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [anon_sym_DOLLAR] = ACTIONS(3160), - [sym_raw_string] = ACTIONS(3158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), - [anon_sym_BQUOTE] = ACTIONS(3158), - [anon_sym_LT_LPAREN] = ACTIONS(3158), - [anon_sym_GT_LPAREN] = ACTIONS(3158), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3160), - [sym_word] = ACTIONS(3160), - [anon_sym_LF] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(3825), + [sym_comment] = ACTIONS(57), }, [1301] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(3824), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(3827), + [sym_comment] = ACTIONS(57), }, [1302] = { - [sym__concat] = ACTIONS(2959), - [ts_builtin_sym_end] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2961), - [anon_sym_RPAREN] = ACTIONS(2959), - [anon_sym_SEMI_SEMI] = ACTIONS(2959), - [anon_sym_PIPE_AMP] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [sym__special_characters] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_DOLLAR] = ACTIONS(2961), - [sym_raw_string] = ACTIONS(2959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), - [anon_sym_BQUOTE] = ACTIONS(2959), - [anon_sym_LT_LPAREN] = ACTIONS(2959), - [anon_sym_GT_LPAREN] = ACTIONS(2959), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2961), - [sym_word] = ACTIONS(2961), - [anon_sym_LF] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_RBRACE] = ACTIONS(3827), + [sym_comment] = ACTIONS(57), }, [1303] = { - [sym__concat] = ACTIONS(2973), - [ts_builtin_sym_end] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym_PIPE] = ACTIONS(2975), - [anon_sym_RPAREN] = ACTIONS(2973), - [anon_sym_SEMI_SEMI] = ACTIONS(2973), - [anon_sym_PIPE_AMP] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [sym__special_characters] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_DOLLAR] = ACTIONS(2975), - [sym_raw_string] = ACTIONS(2973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), - [anon_sym_BQUOTE] = ACTIONS(2973), - [anon_sym_LT_LPAREN] = ACTIONS(2973), - [anon_sym_GT_LPAREN] = ACTIONS(2973), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2975), - [sym_word] = ACTIONS(2975), - [anon_sym_LF] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2975), + [sym_concatenation] = STATE(1686), + [sym_string] = STATE(1685), + [sym_simple_expansion] = STATE(1685), + [sym_string_expansion] = STATE(1685), + [sym_expansion] = STATE(1685), + [sym_command_substitution] = STATE(1685), + [sym_process_substitution] = STATE(1685), + [anon_sym_RBRACE] = ACTIONS(3827), + [sym__special_characters] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(3831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3831), }, [1304] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(3826), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(2980), + [sym__concat] = ACTIONS(2980), + [sym_variable_name] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_GT] = ACTIONS(2982), + [anon_sym_GT_GT] = ACTIONS(2980), + [anon_sym_AMP_GT] = ACTIONS(2982), + [anon_sym_AMP_GT_GT] = ACTIONS(2980), + [anon_sym_LT_AMP] = ACTIONS(2980), + [anon_sym_GT_AMP] = ACTIONS(2980), + [sym__special_characters] = ACTIONS(2980), + [anon_sym_DQUOTE] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2982), + [sym_raw_string] = ACTIONS(2980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2980), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2980), + [anon_sym_BQUOTE] = ACTIONS(2980), + [anon_sym_LT_LPAREN] = ACTIONS(2980), + [anon_sym_GT_LPAREN] = ACTIONS(2980), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2980), }, [1305] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(3828), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(1689), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1689), + [sym_regex] = ACTIONS(3833), + [anon_sym_RBRACE] = ACTIONS(3835), + [anon_sym_EQ] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3837), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3839), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3837), + [anon_sym_COLON_QMARK] = ACTIONS(3837), + [anon_sym_COLON_DASH] = ACTIONS(3837), + [anon_sym_PERCENT] = ACTIONS(3837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1306] = { - [anon_sym_RBRACE] = ACTIONS(3828), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3835), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1307] = { - [sym_concatenation] = STATE(1702), - [sym_string] = STATE(1701), - [sym_simple_expansion] = STATE(1701), - [sym_string_expansion] = STATE(1701), - [sym_expansion] = STATE(1701), - [sym_command_substitution] = STATE(1701), - [sym_process_substitution] = STATE(1701), - [anon_sym_RBRACE] = ACTIONS(3828), - [sym__special_characters] = ACTIONS(3830), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(3832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3832), + [sym_concatenation] = STATE(1691), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1691), + [sym_regex] = ACTIONS(3841), + [anon_sym_RBRACE] = ACTIONS(3827), + [anon_sym_EQ] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3843), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3843), + [anon_sym_COLON_QMARK] = ACTIONS(3843), + [anon_sym_COLON_DASH] = ACTIONS(3843), + [anon_sym_PERCENT] = ACTIONS(3843), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1308] = { - [sym__concat] = ACTIONS(3009), - [ts_builtin_sym_end] = ACTIONS(3009), - [anon_sym_SEMI] = ACTIONS(3011), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_RPAREN] = ACTIONS(3009), - [anon_sym_SEMI_SEMI] = ACTIONS(3009), - [anon_sym_PIPE_AMP] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3009), - [sym__special_characters] = ACTIONS(3009), - [anon_sym_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3011), - [sym_raw_string] = ACTIONS(3009), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), - [anon_sym_BQUOTE] = ACTIONS(3009), - [anon_sym_LT_LPAREN] = ACTIONS(3009), - [anon_sym_GT_LPAREN] = ACTIONS(3009), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3011), - [sym_word] = ACTIONS(3011), - [anon_sym_LF] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3011), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3827), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1309] = { - [sym_concatenation] = STATE(1705), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1705), - [sym_regex] = ACTIONS(3834), - [anon_sym_RBRACE] = ACTIONS(3836), - [anon_sym_EQ] = ACTIONS(3838), - [anon_sym_DASH] = ACTIONS(3838), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3840), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3838), - [anon_sym_COLON_QMARK] = ACTIONS(3838), - [anon_sym_COLON_DASH] = ACTIONS(3838), - [anon_sym_PERCENT] = ACTIONS(3838), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1693), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1693), + [anon_sym_RBRACE] = ACTIONS(3847), + [anon_sym_EQ] = ACTIONS(3849), + [anon_sym_DASH] = ACTIONS(3849), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3851), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3849), + [anon_sym_COLON_QMARK] = ACTIONS(3849), + [anon_sym_COLON_DASH] = ACTIONS(3849), + [anon_sym_PERCENT] = ACTIONS(3849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1310] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3836), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(3036), + [sym__concat] = ACTIONS(3036), + [sym_variable_name] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3038), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_AMP_GT] = ACTIONS(3038), + [anon_sym_AMP_GT_GT] = ACTIONS(3036), + [anon_sym_LT_AMP] = ACTIONS(3036), + [anon_sym_GT_AMP] = ACTIONS(3036), + [sym__special_characters] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_DOLLAR] = ACTIONS(3038), + [sym_raw_string] = ACTIONS(3036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3036), + [anon_sym_BQUOTE] = ACTIONS(3036), + [anon_sym_LT_LPAREN] = ACTIONS(3036), + [anon_sym_GT_LPAREN] = ACTIONS(3036), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3036), }, [1311] = { - [sym_concatenation] = STATE(1707), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1707), - [sym_regex] = ACTIONS(3842), - [anon_sym_RBRACE] = ACTIONS(3828), - [anon_sym_EQ] = ACTIONS(3844), - [anon_sym_DASH] = ACTIONS(3844), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3846), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3844), - [anon_sym_COLON_QMARK] = ACTIONS(3844), - [anon_sym_COLON_DASH] = ACTIONS(3844), - [anon_sym_PERCENT] = ACTIONS(3844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3847), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1312] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3828), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1691), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1691), + [anon_sym_RBRACE] = ACTIONS(3827), + [anon_sym_EQ] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3843), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3843), + [anon_sym_COLON_QMARK] = ACTIONS(3843), + [anon_sym_COLON_DASH] = ACTIONS(3843), + [anon_sym_PERCENT] = ACTIONS(3843), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1313] = { - [sym_concatenation] = STATE(1709), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1709), - [anon_sym_RBRACE] = ACTIONS(3848), - [anon_sym_EQ] = ACTIONS(3850), - [anon_sym_DASH] = ACTIONS(3850), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3850), - [anon_sym_COLON_QMARK] = ACTIONS(3850), - [anon_sym_COLON_DASH] = ACTIONS(3850), - [anon_sym_PERCENT] = ACTIONS(3850), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(3091), + [sym__concat] = ACTIONS(3091), + [sym_variable_name] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_GT] = ACTIONS(3093), + [anon_sym_GT_GT] = ACTIONS(3091), + [anon_sym_AMP_GT] = ACTIONS(3093), + [anon_sym_AMP_GT_GT] = ACTIONS(3091), + [anon_sym_LT_AMP] = ACTIONS(3091), + [anon_sym_GT_AMP] = ACTIONS(3091), + [sym__special_characters] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [anon_sym_DOLLAR] = ACTIONS(3093), + [sym_raw_string] = ACTIONS(3091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3091), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(3091), + [anon_sym_LT_LPAREN] = ACTIONS(3091), + [anon_sym_GT_LPAREN] = ACTIONS(3091), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3091), }, [1314] = { - [sym__concat] = ACTIONS(3065), - [ts_builtin_sym_end] = ACTIONS(3065), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_RPAREN] = ACTIONS(3065), - [anon_sym_SEMI_SEMI] = ACTIONS(3065), - [anon_sym_PIPE_AMP] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_PIPE_PIPE] = ACTIONS(3065), - [sym__special_characters] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [anon_sym_DOLLAR] = ACTIONS(3067), - [sym_raw_string] = ACTIONS(3065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), - [anon_sym_BQUOTE] = ACTIONS(3065), - [anon_sym_LT_LPAREN] = ACTIONS(3065), - [anon_sym_GT_LPAREN] = ACTIONS(3065), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3067), - [sym_word] = ACTIONS(3067), - [anon_sym_LF] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(3853), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1315] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3848), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(3853), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1316] = { - [sym_concatenation] = STATE(1707), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1707), - [anon_sym_RBRACE] = ACTIONS(3828), - [anon_sym_EQ] = ACTIONS(3844), - [anon_sym_DASH] = ACTIONS(3844), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3846), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3844), - [anon_sym_COLON_QMARK] = ACTIONS(3844), - [anon_sym_COLON_DASH] = ACTIONS(3844), - [anon_sym_PERCENT] = ACTIONS(3844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(3855), + [anon_sym_RPAREN] = ACTIONS(3853), + [anon_sym_SEMI_SEMI] = ACTIONS(3857), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3857), + [anon_sym_AMP] = ACTIONS(3857), }, [1317] = { - [sym__concat] = ACTIONS(3120), - [ts_builtin_sym_end] = ACTIONS(3120), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_RPAREN] = ACTIONS(3120), - [anon_sym_SEMI_SEMI] = ACTIONS(3120), - [anon_sym_PIPE_AMP] = ACTIONS(3120), - [anon_sym_AMP_AMP] = ACTIONS(3120), - [anon_sym_PIPE_PIPE] = ACTIONS(3120), - [sym__special_characters] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [sym_raw_string] = ACTIONS(3120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), - [anon_sym_BQUOTE] = ACTIONS(3120), - [anon_sym_LT_LPAREN] = ACTIONS(3120), - [anon_sym_GT_LPAREN] = ACTIONS(3120), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3122), - [sym_word] = ACTIONS(3122), - [anon_sym_LF] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3122), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(3853), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [1318] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(3854), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(3853), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1319] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(3854), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(3859), + [anon_sym_SEMI_SEMI] = ACTIONS(3861), + [anon_sym_BQUOTE] = ACTIONS(3853), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3861), + [anon_sym_AMP] = ACTIONS(3861), }, [1320] = { - [sym__concat] = ACTIONS(3158), - [ts_builtin_sym_end] = ACTIONS(3158), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_PIPE] = ACTIONS(3160), - [anon_sym_RPAREN] = ACTIONS(3158), - [anon_sym_SEMI_SEMI] = ACTIONS(3158), - [anon_sym_PIPE_AMP] = ACTIONS(3158), - [anon_sym_AMP_AMP] = ACTIONS(3158), - [anon_sym_PIPE_PIPE] = ACTIONS(3158), - [sym__special_characters] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [anon_sym_DOLLAR] = ACTIONS(3160), - [sym_raw_string] = ACTIONS(3158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), - [anon_sym_BQUOTE] = ACTIONS(3158), - [anon_sym_LT_LPAREN] = ACTIONS(3158), - [anon_sym_GT_LPAREN] = ACTIONS(3158), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3160), - [sym_word] = ACTIONS(3160), - [anon_sym_LF] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), + [sym_file_descriptor] = ACTIONS(3121), + [sym__concat] = ACTIONS(3121), + [sym_variable_name] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(3123), + [anon_sym_GT] = ACTIONS(3123), + [anon_sym_GT_GT] = ACTIONS(3121), + [anon_sym_AMP_GT] = ACTIONS(3123), + [anon_sym_AMP_GT_GT] = ACTIONS(3121), + [anon_sym_LT_AMP] = ACTIONS(3121), + [anon_sym_GT_AMP] = ACTIONS(3121), + [sym__special_characters] = ACTIONS(3121), + [anon_sym_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3123), + [sym_raw_string] = ACTIONS(3121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3121), + [anon_sym_BQUOTE] = ACTIONS(3121), + [anon_sym_LT_LPAREN] = ACTIONS(3121), + [anon_sym_GT_LPAREN] = ACTIONS(3121), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3121), }, [1321] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(3856), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(3863), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1322] = { - [sym_file_descriptor] = ACTIONS(2959), - [sym__concat] = ACTIONS(2959), - [sym_variable_name] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_GT] = ACTIONS(2961), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_AMP_GT] = ACTIONS(2961), - [anon_sym_AMP_GT_GT] = ACTIONS(2959), - [anon_sym_LT_AMP] = ACTIONS(2959), - [anon_sym_GT_AMP] = ACTIONS(2959), - [sym__special_characters] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_DOLLAR] = ACTIONS(2961), - [sym_raw_string] = ACTIONS(2959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), - [anon_sym_BQUOTE] = ACTIONS(2959), - [anon_sym_LT_LPAREN] = ACTIONS(2959), - [anon_sym_GT_LPAREN] = ACTIONS(2959), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2959), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(3863), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1323] = { - [sym_file_descriptor] = ACTIONS(2973), - [sym__concat] = ACTIONS(2973), - [sym_variable_name] = ACTIONS(2973), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_GT] = ACTIONS(2975), - [anon_sym_GT_GT] = ACTIONS(2973), - [anon_sym_AMP_GT] = ACTIONS(2975), - [anon_sym_AMP_GT_GT] = ACTIONS(2973), - [anon_sym_LT_AMP] = ACTIONS(2973), - [anon_sym_GT_AMP] = ACTIONS(2973), - [sym__special_characters] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_DOLLAR] = ACTIONS(2975), - [sym_raw_string] = ACTIONS(2973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), - [anon_sym_BQUOTE] = ACTIONS(2973), - [anon_sym_LT_LPAREN] = ACTIONS(2973), - [anon_sym_GT_LPAREN] = ACTIONS(2973), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(3865), + [anon_sym_RPAREN] = ACTIONS(3863), + [anon_sym_SEMI_SEMI] = ACTIONS(3867), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3867), }, [1324] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(3858), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2946), + [anon_sym_DOLLAR] = ACTIONS(2946), + [sym__string_content] = ACTIONS(2944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2946), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2946), + [anon_sym_BQUOTE] = ACTIONS(2946), + [sym_comment] = ACTIONS(265), }, [1325] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(3860), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(3869), + [sym_comment] = ACTIONS(57), }, [1326] = { - [anon_sym_RBRACE] = ACTIONS(3860), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(3871), + [sym_comment] = ACTIONS(57), }, [1327] = { - [sym_concatenation] = STATE(1716), - [sym_string] = STATE(1715), - [sym_simple_expansion] = STATE(1715), - [sym_string_expansion] = STATE(1715), - [sym_expansion] = STATE(1715), - [sym_command_substitution] = STATE(1715), - [sym_process_substitution] = STATE(1715), - [anon_sym_RBRACE] = ACTIONS(3860), - [sym__special_characters] = ACTIONS(3862), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(3864), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3864), + [anon_sym_RBRACE] = ACTIONS(3871), + [sym_comment] = ACTIONS(57), }, [1328] = { - [sym_file_descriptor] = ACTIONS(3009), - [sym__concat] = ACTIONS(3009), - [sym_variable_name] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(3011), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_GT_GT] = ACTIONS(3009), - [anon_sym_AMP_GT] = ACTIONS(3011), - [anon_sym_AMP_GT_GT] = ACTIONS(3009), - [anon_sym_LT_AMP] = ACTIONS(3009), - [anon_sym_GT_AMP] = ACTIONS(3009), - [sym__special_characters] = ACTIONS(3009), - [anon_sym_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3011), - [sym_raw_string] = ACTIONS(3009), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), - [anon_sym_BQUOTE] = ACTIONS(3009), - [anon_sym_LT_LPAREN] = ACTIONS(3009), - [anon_sym_GT_LPAREN] = ACTIONS(3009), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3009), + [sym_concatenation] = STATE(1703), + [sym_string] = STATE(1702), + [sym_simple_expansion] = STATE(1702), + [sym_string_expansion] = STATE(1702), + [sym_expansion] = STATE(1702), + [sym_command_substitution] = STATE(1702), + [sym_process_substitution] = STATE(1702), + [anon_sym_RBRACE] = ACTIONS(3871), + [sym__special_characters] = ACTIONS(3873), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(3875), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3875), }, [1329] = { - [sym_concatenation] = STATE(1719), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1719), - [sym_regex] = ACTIONS(3866), - [anon_sym_RBRACE] = ACTIONS(3868), - [anon_sym_EQ] = ACTIONS(3870), - [anon_sym_DASH] = ACTIONS(3870), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3872), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3870), - [anon_sym_COLON_QMARK] = ACTIONS(3870), - [anon_sym_COLON_DASH] = ACTIONS(3870), - [anon_sym_PERCENT] = ACTIONS(3870), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(2980), + [anon_sym_DQUOTE] = ACTIONS(2982), + [anon_sym_DOLLAR] = ACTIONS(2982), + [sym__string_content] = ACTIONS(2980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2982), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2982), + [anon_sym_BQUOTE] = ACTIONS(2982), + [sym_comment] = ACTIONS(265), }, [1330] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3868), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1706), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1706), + [sym_regex] = ACTIONS(3877), + [anon_sym_RBRACE] = ACTIONS(3879), + [anon_sym_EQ] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3881), + [anon_sym_COLON_QMARK] = ACTIONS(3881), + [anon_sym_COLON_DASH] = ACTIONS(3881), + [anon_sym_PERCENT] = ACTIONS(3881), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1331] = { - [sym_concatenation] = STATE(1721), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1721), - [sym_regex] = ACTIONS(3874), - [anon_sym_RBRACE] = ACTIONS(3860), - [anon_sym_EQ] = ACTIONS(3876), - [anon_sym_DASH] = ACTIONS(3876), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3876), - [anon_sym_COLON_QMARK] = ACTIONS(3876), - [anon_sym_COLON_DASH] = ACTIONS(3876), - [anon_sym_PERCENT] = ACTIONS(3876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3879), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1332] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3860), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1708), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1708), + [sym_regex] = ACTIONS(3885), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_EQ] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3887), + [anon_sym_COLON_QMARK] = ACTIONS(3887), + [anon_sym_COLON_DASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3887), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1333] = { - [sym_concatenation] = STATE(1723), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1723), - [anon_sym_RBRACE] = ACTIONS(3880), - [anon_sym_EQ] = ACTIONS(3882), - [anon_sym_DASH] = ACTIONS(3882), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3884), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3882), - [anon_sym_COLON_QMARK] = ACTIONS(3882), - [anon_sym_COLON_DASH] = ACTIONS(3882), - [anon_sym_PERCENT] = ACTIONS(3882), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1334] = { - [sym_file_descriptor] = ACTIONS(3065), - [sym__concat] = ACTIONS(3065), - [sym_variable_name] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_GT_GT] = ACTIONS(3065), - [anon_sym_AMP_GT] = ACTIONS(3067), - [anon_sym_AMP_GT_GT] = ACTIONS(3065), - [anon_sym_LT_AMP] = ACTIONS(3065), - [anon_sym_GT_AMP] = ACTIONS(3065), - [sym__special_characters] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [anon_sym_DOLLAR] = ACTIONS(3067), - [sym_raw_string] = ACTIONS(3065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), - [anon_sym_BQUOTE] = ACTIONS(3065), - [anon_sym_LT_LPAREN] = ACTIONS(3065), - [anon_sym_GT_LPAREN] = ACTIONS(3065), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3065), + [sym_concatenation] = STATE(1710), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1710), + [anon_sym_RBRACE] = ACTIONS(3891), + [anon_sym_EQ] = ACTIONS(3893), + [anon_sym_DASH] = ACTIONS(3893), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3893), + [anon_sym_COLON_QMARK] = ACTIONS(3893), + [anon_sym_COLON_DASH] = ACTIONS(3893), + [anon_sym_PERCENT] = ACTIONS(3893), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1335] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3880), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(3038), + [anon_sym_DOLLAR] = ACTIONS(3038), + [sym__string_content] = ACTIONS(3036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3038), + [anon_sym_BQUOTE] = ACTIONS(3038), + [sym_comment] = ACTIONS(265), }, [1336] = { - [sym_concatenation] = STATE(1721), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1721), - [anon_sym_RBRACE] = ACTIONS(3860), - [anon_sym_EQ] = ACTIONS(3876), - [anon_sym_DASH] = ACTIONS(3876), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3876), - [anon_sym_COLON_QMARK] = ACTIONS(3876), - [anon_sym_COLON_DASH] = ACTIONS(3876), - [anon_sym_PERCENT] = ACTIONS(3876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3891), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1337] = { - [sym_file_descriptor] = ACTIONS(3120), - [sym__concat] = ACTIONS(3120), - [sym_variable_name] = ACTIONS(3120), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_GT] = ACTIONS(3122), - [anon_sym_GT_GT] = ACTIONS(3120), - [anon_sym_AMP_GT] = ACTIONS(3122), - [anon_sym_AMP_GT_GT] = ACTIONS(3120), - [anon_sym_LT_AMP] = ACTIONS(3120), - [anon_sym_GT_AMP] = ACTIONS(3120), - [sym__special_characters] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [sym_raw_string] = ACTIONS(3120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), - [anon_sym_BQUOTE] = ACTIONS(3120), - [anon_sym_LT_LPAREN] = ACTIONS(3120), - [anon_sym_GT_LPAREN] = ACTIONS(3120), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3120), + [sym_concatenation] = STATE(1708), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1708), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_EQ] = ACTIONS(3887), + [anon_sym_DASH] = ACTIONS(3887), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3887), + [anon_sym_COLON_QMARK] = ACTIONS(3887), + [anon_sym_COLON_DASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3887), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1338] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(3886), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__concat] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3093), + [anon_sym_DOLLAR] = ACTIONS(3093), + [sym__string_content] = ACTIONS(3091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3093), + [anon_sym_BQUOTE] = ACTIONS(3093), + [sym_comment] = ACTIONS(265), }, [1339] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(3886), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(3897), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1340] = { - [sym_file_descriptor] = ACTIONS(3158), - [sym__concat] = ACTIONS(3158), - [sym_variable_name] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3160), - [anon_sym_GT] = ACTIONS(3160), - [anon_sym_GT_GT] = ACTIONS(3158), - [anon_sym_AMP_GT] = ACTIONS(3160), - [anon_sym_AMP_GT_GT] = ACTIONS(3158), - [anon_sym_LT_AMP] = ACTIONS(3158), - [anon_sym_GT_AMP] = ACTIONS(3158), - [sym__special_characters] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [anon_sym_DOLLAR] = ACTIONS(3160), - [sym_raw_string] = ACTIONS(3158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), - [anon_sym_BQUOTE] = ACTIONS(3158), - [anon_sym_LT_LPAREN] = ACTIONS(3158), - [anon_sym_GT_LPAREN] = ACTIONS(3158), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3158), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(3897), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1341] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(3888), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(3899), + [anon_sym_RPAREN] = ACTIONS(3897), + [anon_sym_SEMI_SEMI] = ACTIONS(3901), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3901), + [anon_sym_AMP] = ACTIONS(3901), }, [1342] = { - [sym__concat] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2975), - [anon_sym_DOLLAR] = ACTIONS(2975), - [sym__string_content] = ACTIONS(2973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2975), - [anon_sym_BQUOTE] = ACTIONS(2975), - [sym_comment] = ACTIONS(281), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(3897), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [1343] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(3890), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(3897), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1344] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(3892), - [sym_comment] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(3903), + [anon_sym_SEMI_SEMI] = ACTIONS(3905), + [anon_sym_BQUOTE] = ACTIONS(3897), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3905), }, [1345] = { - [anon_sym_RBRACE] = ACTIONS(3892), - [sym_comment] = ACTIONS(55), + [sym_string] = STATE(756), + [sym_simple_expansion] = STATE(756), + [sym_string_expansion] = STATE(756), + [sym_expansion] = STATE(756), + [sym_command_substitution] = STATE(756), + [sym_process_substitution] = STATE(756), + [anon_sym_RBRACK] = ACTIONS(3907), + [sym__special_characters] = ACTIONS(2064), + [anon_sym_DQUOTE] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(155), + [sym_raw_string] = ACTIONS(1453), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(163), + [anon_sym_LT_LPAREN] = ACTIONS(165), + [anon_sym_GT_LPAREN] = ACTIONS(165), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1453), }, [1346] = { - [sym_concatenation] = STATE(1730), - [sym_string] = STATE(1729), - [sym_simple_expansion] = STATE(1729), - [sym_string_expansion] = STATE(1729), - [sym_expansion] = STATE(1729), - [sym_command_substitution] = STATE(1729), - [sym_process_substitution] = STATE(1729), - [anon_sym_RBRACE] = ACTIONS(3892), - [sym__special_characters] = ACTIONS(3894), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(3896), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3896), + [sym__concat] = ACTIONS(3909), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_EQ] = ACTIONS(3911), + [anon_sym_DASH] = ACTIONS(3911), + [sym__special_characters] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(2068), + [anon_sym_DOLLAR] = ACTIONS(3911), + [sym_raw_string] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(2068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2068), + [anon_sym_SLASH] = ACTIONS(2068), + [anon_sym_COLON] = ACTIONS(3911), + [anon_sym_COLON_QMARK] = ACTIONS(3911), + [anon_sym_COLON_DASH] = ACTIONS(3911), + [anon_sym_PERCENT] = ACTIONS(3911), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2068), + [anon_sym_BQUOTE] = ACTIONS(2068), + [anon_sym_LT_LPAREN] = ACTIONS(2068), + [anon_sym_GT_LPAREN] = ACTIONS(2068), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(3911), }, [1347] = { - [sym__concat] = ACTIONS(3009), - [anon_sym_DQUOTE] = ACTIONS(3011), - [anon_sym_DOLLAR] = ACTIONS(3011), - [sym__string_content] = ACTIONS(3009), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3011), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3011), - [anon_sym_BQUOTE] = ACTIONS(3011), - [sym_comment] = ACTIONS(281), + [sym_string] = STATE(756), + [sym_simple_expansion] = STATE(756), + [sym_string_expansion] = STATE(756), + [sym_expansion] = STATE(756), + [sym_command_substitution] = STATE(756), + [sym_process_substitution] = STATE(756), + [anon_sym_RBRACK] = ACTIONS(3913), + [sym__special_characters] = ACTIONS(2064), + [anon_sym_DQUOTE] = ACTIONS(153), + [anon_sym_DOLLAR] = ACTIONS(155), + [sym_raw_string] = ACTIONS(1453), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(161), + [anon_sym_BQUOTE] = ACTIONS(163), + [anon_sym_LT_LPAREN] = ACTIONS(165), + [anon_sym_GT_LPAREN] = ACTIONS(165), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1453), }, [1348] = { - [sym_concatenation] = STATE(1733), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1733), - [sym_regex] = ACTIONS(3898), - [anon_sym_RBRACE] = ACTIONS(3900), - [anon_sym_EQ] = ACTIONS(3902), - [anon_sym_DASH] = ACTIONS(3902), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3904), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3902), - [anon_sym_COLON_QMARK] = ACTIONS(3902), - [anon_sym_COLON_DASH] = ACTIONS(3902), - [anon_sym_PERCENT] = ACTIONS(3902), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(3915), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_EQ] = ACTIONS(3917), + [anon_sym_DASH] = ACTIONS(3917), + [sym__special_characters] = ACTIONS(3917), + [anon_sym_DQUOTE] = ACTIONS(2074), + [anon_sym_DOLLAR] = ACTIONS(3917), + [sym_raw_string] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(2074), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2074), + [anon_sym_SLASH] = ACTIONS(2074), + [anon_sym_COLON] = ACTIONS(3917), + [anon_sym_COLON_QMARK] = ACTIONS(3917), + [anon_sym_COLON_DASH] = ACTIONS(3917), + [anon_sym_PERCENT] = ACTIONS(3917), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2074), + [anon_sym_BQUOTE] = ACTIONS(2074), + [anon_sym_LT_LPAREN] = ACTIONS(2074), + [anon_sym_GT_LPAREN] = ACTIONS(2074), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(3917), }, [1349] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3900), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_RBRACK] = ACTIONS(3913), + [sym_comment] = ACTIONS(57), }, [1350] = { - [sym_concatenation] = STATE(1735), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1735), - [sym_regex] = ACTIONS(3906), - [anon_sym_RBRACE] = ACTIONS(3892), - [anon_sym_EQ] = ACTIONS(3908), - [anon_sym_DASH] = ACTIONS(3908), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3908), - [anon_sym_COLON_QMARK] = ACTIONS(3908), - [anon_sym_COLON_DASH] = ACTIONS(3908), - [anon_sym_PERCENT] = ACTIONS(3908), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_string] = STATE(1718), + [sym_simple_expansion] = STATE(1718), + [sym_string_expansion] = STATE(1718), + [sym_expansion] = STATE(1718), + [sym_command_substitution] = STATE(1718), + [sym_process_substitution] = STATE(1718), + [sym__special_characters] = ACTIONS(3919), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(3919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3919), }, [1351] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3892), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(3921), + [sym__heredoc_body_beginning] = ACTIONS(3921), + [sym_file_descriptor] = ACTIONS(3921), + [sym__concat] = ACTIONS(3921), + [ts_builtin_sym_end] = ACTIONS(3921), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym_PIPE] = ACTIONS(3923), + [anon_sym_RPAREN] = ACTIONS(3921), + [anon_sym_SEMI_SEMI] = ACTIONS(3921), + [anon_sym_PIPE_AMP] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_EQ_TILDE] = ACTIONS(3923), + [anon_sym_EQ_EQ] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_GT] = ACTIONS(3923), + [anon_sym_GT_GT] = ACTIONS(3921), + [anon_sym_AMP_GT] = ACTIONS(3923), + [anon_sym_AMP_GT_GT] = ACTIONS(3921), + [anon_sym_LT_AMP] = ACTIONS(3921), + [anon_sym_GT_AMP] = ACTIONS(3921), + [anon_sym_LT_LT] = ACTIONS(3923), + [anon_sym_LT_LT_DASH] = ACTIONS(3921), + [anon_sym_LT_LT_LT] = ACTIONS(3921), + [sym__special_characters] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_DOLLAR] = ACTIONS(3923), + [sym_raw_string] = ACTIONS(3921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3921), + [anon_sym_BQUOTE] = ACTIONS(3921), + [anon_sym_LT_LPAREN] = ACTIONS(3921), + [anon_sym_GT_LPAREN] = ACTIONS(3921), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3923), + [anon_sym_LF] = ACTIONS(3921), + [anon_sym_AMP] = ACTIONS(3923), }, [1352] = { - [sym_concatenation] = STATE(1737), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1737), - [anon_sym_RBRACE] = ACTIONS(3912), - [anon_sym_EQ] = ACTIONS(3914), - [anon_sym_DASH] = ACTIONS(3914), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3914), - [anon_sym_COLON_QMARK] = ACTIONS(3914), - [anon_sym_COLON_DASH] = ACTIONS(3914), - [anon_sym_PERCENT] = ACTIONS(3914), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1719), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(779), + [sym_comment] = ACTIONS(57), }, [1353] = { - [sym__concat] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3067), - [anon_sym_DOLLAR] = ACTIONS(3067), - [sym__string_content] = ACTIONS(3065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3067), - [anon_sym_BQUOTE] = ACTIONS(3067), - [sym_comment] = ACTIONS(281), + [sym__concat] = ACTIONS(783), + [anon_sym_RBRACE] = ACTIONS(783), + [sym_comment] = ACTIONS(57), }, [1354] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3912), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(3925), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [1355] = { - [sym_concatenation] = STATE(1735), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1735), - [anon_sym_RBRACE] = ACTIONS(3892), - [anon_sym_EQ] = ACTIONS(3908), - [anon_sym_DASH] = ACTIONS(3908), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3908), - [anon_sym_COLON_QMARK] = ACTIONS(3908), - [anon_sym_COLON_DASH] = ACTIONS(3908), - [anon_sym_PERCENT] = ACTIONS(3908), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(455), + [anon_sym_DQUOTE] = ACTIONS(3925), + [anon_sym_DOLLAR] = ACTIONS(3927), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [1356] = { - [sym__concat] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(3122), - [anon_sym_DOLLAR] = ACTIONS(3122), - [sym__string_content] = ACTIONS(3120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3122), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3122), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_comment] = ACTIONS(281), + [sym__concat] = ACTIONS(817), + [anon_sym_RBRACE] = ACTIONS(817), + [sym_comment] = ACTIONS(57), }, [1357] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(3918), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__concat] = ACTIONS(821), + [anon_sym_RBRACE] = ACTIONS(821), + [sym_comment] = ACTIONS(57), }, [1358] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(3918), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__concat] = ACTIONS(825), + [anon_sym_RBRACE] = ACTIONS(825), + [sym_comment] = ACTIONS(57), }, [1359] = { - [sym_string] = STATE(790), - [sym_simple_expansion] = STATE(790), - [sym_string_expansion] = STATE(790), - [sym_expansion] = STATE(790), - [sym_command_substitution] = STATE(790), - [sym_process_substitution] = STATE(790), - [anon_sym_RBRACK] = ACTIONS(3920), - [sym__special_characters] = ACTIONS(2087), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_DOLLAR] = ACTIONS(171), - [sym_raw_string] = ACTIONS(1490), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), - [anon_sym_BQUOTE] = ACTIONS(179), - [anon_sym_LT_LPAREN] = ACTIONS(181), - [anon_sym_GT_LPAREN] = ACTIONS(181), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1490), + [sym__simple_heredoc_body] = ACTIONS(3929), + [sym__heredoc_body_beginning] = ACTIONS(3929), + [sym_file_descriptor] = ACTIONS(3929), + [sym__concat] = ACTIONS(3929), + [ts_builtin_sym_end] = ACTIONS(3929), + [anon_sym_SEMI] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3931), + [anon_sym_RPAREN] = ACTIONS(3929), + [anon_sym_SEMI_SEMI] = ACTIONS(3929), + [anon_sym_PIPE_AMP] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_EQ_TILDE] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_GT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_AMP_GT] = ACTIONS(3931), + [anon_sym_AMP_GT_GT] = ACTIONS(3929), + [anon_sym_LT_AMP] = ACTIONS(3929), + [anon_sym_GT_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_LT_LT_DASH] = ACTIONS(3929), + [anon_sym_LT_LT_LT] = ACTIONS(3929), + [sym__special_characters] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_DOLLAR] = ACTIONS(3931), + [sym_raw_string] = ACTIONS(3929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3929), + [anon_sym_BQUOTE] = ACTIONS(3929), + [anon_sym_LT_LPAREN] = ACTIONS(3929), + [anon_sym_GT_LPAREN] = ACTIONS(3929), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3931), + [anon_sym_LF] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3931), }, [1360] = { - [sym__concat] = ACTIONS(3922), - [anon_sym_RBRACE] = ACTIONS(2091), - [anon_sym_EQ] = ACTIONS(3924), - [anon_sym_DASH] = ACTIONS(3924), - [sym__special_characters] = ACTIONS(3924), - [anon_sym_DQUOTE] = ACTIONS(2091), - [anon_sym_DOLLAR] = ACTIONS(3924), - [sym_raw_string] = ACTIONS(2091), - [anon_sym_POUND] = ACTIONS(2091), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2091), - [anon_sym_SLASH] = ACTIONS(2091), - [anon_sym_COLON] = ACTIONS(3924), - [anon_sym_COLON_QMARK] = ACTIONS(3924), - [anon_sym_COLON_DASH] = ACTIONS(3924), - [anon_sym_PERCENT] = ACTIONS(3924), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2091), - [anon_sym_BQUOTE] = ACTIONS(2091), - [anon_sym_LT_LPAREN] = ACTIONS(2091), - [anon_sym_GT_LPAREN] = ACTIONS(2091), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(3924), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(3933), + [sym_comment] = ACTIONS(57), }, [1361] = { - [sym_string] = STATE(790), - [sym_simple_expansion] = STATE(790), - [sym_string_expansion] = STATE(790), - [sym_expansion] = STATE(790), - [sym_command_substitution] = STATE(790), - [sym_process_substitution] = STATE(790), - [anon_sym_RBRACK] = ACTIONS(3926), - [sym__special_characters] = ACTIONS(2087), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_DOLLAR] = ACTIONS(171), - [sym_raw_string] = ACTIONS(1490), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), - [anon_sym_BQUOTE] = ACTIONS(179), - [anon_sym_LT_LPAREN] = ACTIONS(181), - [anon_sym_GT_LPAREN] = ACTIONS(181), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1490), + [sym_subscript] = STATE(1725), + [sym_variable_name] = ACTIONS(3935), + [anon_sym_DASH] = ACTIONS(3937), + [anon_sym_DOLLAR] = ACTIONS(3937), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3939), + [anon_sym_STAR] = ACTIONS(3941), + [anon_sym_AT] = ACTIONS(3941), + [anon_sym_QMARK] = ACTIONS(3941), + [anon_sym_0] = ACTIONS(3939), + [anon_sym__] = ACTIONS(3939), }, [1362] = { - [sym__concat] = ACTIONS(3928), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_EQ] = ACTIONS(3930), - [anon_sym_DASH] = ACTIONS(3930), - [sym__special_characters] = ACTIONS(3930), - [anon_sym_DQUOTE] = ACTIONS(2097), - [anon_sym_DOLLAR] = ACTIONS(3930), - [sym_raw_string] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(2097), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2097), - [anon_sym_SLASH] = ACTIONS(2097), - [anon_sym_COLON] = ACTIONS(3930), - [anon_sym_COLON_QMARK] = ACTIONS(3930), - [anon_sym_COLON_DASH] = ACTIONS(3930), - [anon_sym_PERCENT] = ACTIONS(3930), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2097), - [anon_sym_BQUOTE] = ACTIONS(2097), - [anon_sym_LT_LPAREN] = ACTIONS(2097), - [anon_sym_GT_LPAREN] = ACTIONS(2097), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(3930), + [sym_concatenation] = STATE(1728), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1728), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_EQ] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3945), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(3949), + [anon_sym_COLON] = ACTIONS(3945), + [anon_sym_COLON_QMARK] = ACTIONS(3945), + [anon_sym_COLON_DASH] = ACTIONS(3945), + [anon_sym_PERCENT] = ACTIONS(3945), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1363] = { - [anon_sym_RBRACK] = ACTIONS(3926), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(1731), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1731), + [anon_sym_RBRACE] = ACTIONS(3951), + [anon_sym_EQ] = ACTIONS(3953), + [anon_sym_DASH] = ACTIONS(3953), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(3957), + [anon_sym_COLON] = ACTIONS(3953), + [anon_sym_COLON_QMARK] = ACTIONS(3953), + [anon_sym_COLON_DASH] = ACTIONS(3953), + [anon_sym_PERCENT] = ACTIONS(3953), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1364] = { - [sym_string] = STATE(1743), - [sym_simple_expansion] = STATE(1743), - [sym_string_expansion] = STATE(1743), - [sym_expansion] = STATE(1743), - [sym_command_substitution] = STATE(1743), - [sym_process_substitution] = STATE(1743), - [sym__special_characters] = ACTIONS(3932), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(3932), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3932), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1734), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(3959), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3961), + [anon_sym_SEMI_SEMI] = ACTIONS(3963), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3963), + [anon_sym_AMP] = ACTIONS(3959), }, [1365] = { - [sym__simple_heredoc_body] = ACTIONS(3934), - [sym__heredoc_body_beginning] = ACTIONS(3934), - [sym_file_descriptor] = ACTIONS(3934), - [sym__concat] = ACTIONS(3934), - [ts_builtin_sym_end] = ACTIONS(3934), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym_PIPE] = ACTIONS(3936), - [anon_sym_RPAREN] = ACTIONS(3934), - [anon_sym_SEMI_SEMI] = ACTIONS(3934), - [anon_sym_PIPE_AMP] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_EQ_TILDE] = ACTIONS(3936), - [anon_sym_EQ_EQ] = ACTIONS(3936), - [anon_sym_LT] = ACTIONS(3936), - [anon_sym_GT] = ACTIONS(3936), - [anon_sym_GT_GT] = ACTIONS(3934), - [anon_sym_AMP_GT] = ACTIONS(3936), - [anon_sym_AMP_GT_GT] = ACTIONS(3934), - [anon_sym_LT_AMP] = ACTIONS(3934), - [anon_sym_GT_AMP] = ACTIONS(3934), - [anon_sym_LT_LT] = ACTIONS(3936), - [anon_sym_LT_LT_DASH] = ACTIONS(3934), - [anon_sym_LT_LT_LT] = ACTIONS(3934), - [sym__special_characters] = ACTIONS(3934), - [anon_sym_DQUOTE] = ACTIONS(3934), - [anon_sym_DOLLAR] = ACTIONS(3936), - [sym_raw_string] = ACTIONS(3934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), - [anon_sym_BQUOTE] = ACTIONS(3934), - [anon_sym_LT_LPAREN] = ACTIONS(3934), - [anon_sym_GT_LPAREN] = ACTIONS(3934), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3936), - [anon_sym_LF] = ACTIONS(3934), - [anon_sym_AMP] = ACTIONS(3936), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1734), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(3959), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3961), + [anon_sym_SEMI_SEMI] = ACTIONS(3963), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(3963), + [anon_sym_AMP] = ACTIONS(3959), }, [1366] = { - [aux_sym_concatenation_repeat1] = STATE(1744), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(807), - [sym_comment] = ACTIONS(55), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(1735), + [sym_for_statement] = STATE(1735), + [sym_c_style_for_statement] = STATE(1735), + [sym_while_statement] = STATE(1735), + [sym_if_statement] = STATE(1735), + [sym_case_statement] = STATE(1735), + [sym_function_definition] = STATE(1735), + [sym_compound_statement] = STATE(1735), + [sym_subshell] = STATE(1735), + [sym_pipeline] = STATE(1735), + [sym_list] = STATE(1735), + [sym_negated_command] = STATE(1735), + [sym_test_command] = STATE(1735), + [sym_declaration_command] = STATE(1735), + [sym_unset_command] = STATE(1735), + [sym_command] = STATE(1735), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(1736), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [1367] = { - [sym__concat] = ACTIONS(811), - [anon_sym_RBRACE] = ACTIONS(811), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1738), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(3965), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(3967), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(3961), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3965), }, [1368] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(3938), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1738), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(3965), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(3967), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(3961), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3965), }, [1369] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(473), - [anon_sym_DQUOTE] = ACTIONS(3938), - [anon_sym_DOLLAR] = ACTIONS(3940), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(1739), + [sym_for_statement] = STATE(1739), + [sym_c_style_for_statement] = STATE(1739), + [sym_while_statement] = STATE(1739), + [sym_if_statement] = STATE(1739), + [sym_case_statement] = STATE(1739), + [sym_function_definition] = STATE(1739), + [sym_compound_statement] = STATE(1739), + [sym_subshell] = STATE(1739), + [sym_pipeline] = STATE(1739), + [sym_list] = STATE(1739), + [sym_negated_command] = STATE(1739), + [sym_test_command] = STATE(1739), + [sym_declaration_command] = STATE(1739), + [sym_unset_command] = STATE(1739), + [sym_command] = STATE(1739), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(1740), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [1370] = { - [sym__concat] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1743), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(3969), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3971), + [anon_sym_SEMI_SEMI] = ACTIONS(3973), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3973), + [anon_sym_AMP] = ACTIONS(3969), }, [1371] = { - [sym__concat] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1743), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(3969), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(3971), + [anon_sym_SEMI_SEMI] = ACTIONS(3973), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(3973), + [anon_sym_AMP] = ACTIONS(3969), }, [1372] = { - [sym__concat] = ACTIONS(853), - [anon_sym_RBRACE] = ACTIONS(853), - [sym_comment] = ACTIONS(55), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(1744), + [sym_for_statement] = STATE(1744), + [sym_c_style_for_statement] = STATE(1744), + [sym_while_statement] = STATE(1744), + [sym_if_statement] = STATE(1744), + [sym_case_statement] = STATE(1744), + [sym_function_definition] = STATE(1744), + [sym_compound_statement] = STATE(1744), + [sym_subshell] = STATE(1744), + [sym_pipeline] = STATE(1744), + [sym_list] = STATE(1744), + [sym_negated_command] = STATE(1744), + [sym_test_command] = STATE(1744), + [sym_declaration_command] = STATE(1744), + [sym_unset_command] = STATE(1744), + [sym_command] = STATE(1744), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(1745), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [1373] = { - [sym__simple_heredoc_body] = ACTIONS(3942), - [sym__heredoc_body_beginning] = ACTIONS(3942), - [sym_file_descriptor] = ACTIONS(3942), - [sym__concat] = ACTIONS(3942), - [ts_builtin_sym_end] = ACTIONS(3942), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym_PIPE] = ACTIONS(3944), - [anon_sym_RPAREN] = ACTIONS(3942), - [anon_sym_SEMI_SEMI] = ACTIONS(3942), - [anon_sym_PIPE_AMP] = ACTIONS(3942), - [anon_sym_AMP_AMP] = ACTIONS(3942), - [anon_sym_PIPE_PIPE] = ACTIONS(3942), - [anon_sym_EQ_TILDE] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT] = ACTIONS(3944), - [anon_sym_GT] = ACTIONS(3944), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_AMP_GT] = ACTIONS(3944), - [anon_sym_AMP_GT_GT] = ACTIONS(3942), - [anon_sym_LT_AMP] = ACTIONS(3942), - [anon_sym_GT_AMP] = ACTIONS(3942), - [anon_sym_LT_LT] = ACTIONS(3944), - [anon_sym_LT_LT_DASH] = ACTIONS(3942), - [anon_sym_LT_LT_LT] = ACTIONS(3942), - [sym__special_characters] = ACTIONS(3942), - [anon_sym_DQUOTE] = ACTIONS(3942), - [anon_sym_DOLLAR] = ACTIONS(3944), - [sym_raw_string] = ACTIONS(3942), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), - [anon_sym_BQUOTE] = ACTIONS(3942), - [anon_sym_LT_LPAREN] = ACTIONS(3942), - [anon_sym_GT_LPAREN] = ACTIONS(3942), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3944), - [anon_sym_LF] = ACTIONS(3942), - [anon_sym_AMP] = ACTIONS(3944), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(3975), + [sym_comment] = ACTIONS(57), }, [1374] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(3946), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(3977), + [sym_comment] = ACTIONS(57), }, [1375] = { - [sym_subscript] = STATE(1750), - [sym_variable_name] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_DOLLAR] = ACTIONS(3950), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3954), - [anon_sym_AT] = ACTIONS(3954), - [anon_sym_QMARK] = ACTIONS(3954), - [anon_sym_0] = ACTIONS(3952), - [anon_sym__] = ACTIONS(3952), + [anon_sym_RBRACE] = ACTIONS(3977), + [sym_comment] = ACTIONS(57), }, [1376] = { - [sym_concatenation] = STATE(1753), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1753), - [anon_sym_RBRACE] = ACTIONS(3956), - [anon_sym_EQ] = ACTIONS(3958), - [anon_sym_DASH] = ACTIONS(3958), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3960), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(3962), - [anon_sym_COLON] = ACTIONS(3958), - [anon_sym_COLON_QMARK] = ACTIONS(3958), - [anon_sym_COLON_DASH] = ACTIONS(3958), - [anon_sym_PERCENT] = ACTIONS(3958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1749), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1749), + [anon_sym_RBRACE] = ACTIONS(3979), + [anon_sym_EQ] = ACTIONS(3981), + [anon_sym_DASH] = ACTIONS(3981), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3983), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3981), + [anon_sym_COLON_QMARK] = ACTIONS(3981), + [anon_sym_COLON_DASH] = ACTIONS(3981), + [anon_sym_PERCENT] = ACTIONS(3981), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1377] = { - [sym_concatenation] = STATE(1756), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1756), - [anon_sym_RBRACE] = ACTIONS(3964), - [anon_sym_EQ] = ACTIONS(3966), - [anon_sym_DASH] = ACTIONS(3966), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3968), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(3970), - [anon_sym_COLON] = ACTIONS(3966), - [anon_sym_COLON_QMARK] = ACTIONS(3966), - [anon_sym_COLON_DASH] = ACTIONS(3966), - [anon_sym_PERCENT] = ACTIONS(3966), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(3985), + [sym__heredoc_body_beginning] = ACTIONS(3985), + [sym_file_descriptor] = ACTIONS(3985), + [sym__concat] = ACTIONS(3985), + [ts_builtin_sym_end] = ACTIONS(3985), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_RPAREN] = ACTIONS(3985), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [anon_sym_PIPE_AMP] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_EQ_TILDE] = ACTIONS(3987), + [anon_sym_EQ_EQ] = ACTIONS(3987), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_GT_GT] = ACTIONS(3985), + [anon_sym_AMP_GT] = ACTIONS(3987), + [anon_sym_AMP_GT_GT] = ACTIONS(3985), + [anon_sym_LT_AMP] = ACTIONS(3985), + [anon_sym_GT_AMP] = ACTIONS(3985), + [anon_sym_LT_LT] = ACTIONS(3987), + [anon_sym_LT_LT_DASH] = ACTIONS(3985), + [anon_sym_LT_LT_LT] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3987), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3987), }, [1378] = { - [anon_sym_SEMI] = ACTIONS(3972), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3974), - [anon_sym_SEMI_SEMI] = ACTIONS(3976), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3972), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3979), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1379] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(3972), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3974), - [anon_sym_SEMI_SEMI] = ACTIONS(3976), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3972), + [sym_concatenation] = STATE(1750), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1750), + [anon_sym_RBRACE] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(3989), + [anon_sym_DASH] = ACTIONS(3989), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(3991), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(3989), + [anon_sym_COLON_QMARK] = ACTIONS(3989), + [anon_sym_COLON_DASH] = ACTIONS(3989), + [anon_sym_PERCENT] = ACTIONS(3989), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1380] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(1759), - [sym_c_style_for_statement] = STATE(1759), - [sym_while_statement] = STATE(1759), - [sym_if_statement] = STATE(1759), - [sym_case_statement] = STATE(1759), - [sym_function_definition] = STATE(1759), - [sym_subshell] = STATE(1759), - [sym_pipeline] = STATE(1759), - [sym_list] = STATE(1759), - [sym_negated_command] = STATE(1759), - [sym_test_command] = STATE(1759), - [sym_declaration_command] = STATE(1759), - [sym_unset_command] = STATE(1759), - [sym_command] = STATE(1759), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(1760), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3977), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1381] = { - [anon_sym_SEMI] = ACTIONS(3978), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(3980), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(3974), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3980), - [anon_sym_AMP] = ACTIONS(3978), + [sym__concat] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_EQ] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1728), + [sym__special_characters] = ACTIONS(1728), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_POUND] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_COLON] = ACTIONS(1728), + [anon_sym_COLON_QMARK] = ACTIONS(1728), + [anon_sym_COLON_DASH] = ACTIONS(1728), + [anon_sym_PERCENT] = ACTIONS(1728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(1728), }, [1382] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(3978), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(3980), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(3974), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(3980), - [anon_sym_AMP] = ACTIONS(3978), + [aux_sym_concatenation_repeat1] = STATE(1382), + [sym__concat] = ACTIONS(3993), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_EQ] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1728), + [sym__special_characters] = ACTIONS(1728), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_POUND] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_COLON] = ACTIONS(1728), + [anon_sym_COLON_QMARK] = ACTIONS(1728), + [anon_sym_COLON_DASH] = ACTIONS(1728), + [anon_sym_PERCENT] = ACTIONS(1728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(1728), }, [1383] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(1762), - [sym_c_style_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_negated_command] = STATE(1762), - [sym_test_command] = STATE(1762), - [sym_declaration_command] = STATE(1762), - [sym_unset_command] = STATE(1762), - [sym_command] = STATE(1762), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(1763), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym__concat] = ACTIONS(1733), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_EQ] = ACTIONS(1735), + [anon_sym_DASH] = ACTIONS(1735), + [sym__special_characters] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1733), + [anon_sym_POUND] = ACTIONS(1733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1733), + [anon_sym_COLON] = ACTIONS(1735), + [anon_sym_COLON_QMARK] = ACTIONS(1735), + [anon_sym_COLON_DASH] = ACTIONS(1735), + [anon_sym_PERCENT] = ACTIONS(1735), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1733), + [anon_sym_BQUOTE] = ACTIONS(1733), + [anon_sym_LT_LPAREN] = ACTIONS(1733), + [anon_sym_GT_LPAREN] = ACTIONS(1733), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(1735), }, [1384] = { - [anon_sym_SEMI] = ACTIONS(3982), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3984), - [anon_sym_SEMI_SEMI] = ACTIONS(3986), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3986), - [anon_sym_AMP] = ACTIONS(3982), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(3996), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [1385] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(3982), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(3984), - [anon_sym_SEMI_SEMI] = ACTIONS(3986), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(3986), - [anon_sym_AMP] = ACTIONS(3982), + [sym_concatenation] = STATE(1755), + [sym_string] = STATE(1754), + [sym_simple_expansion] = STATE(1754), + [sym_string_expansion] = STATE(1754), + [sym_expansion] = STATE(1754), + [sym_command_substitution] = STATE(1754), + [sym_process_substitution] = STATE(1754), + [anon_sym_RBRACE] = ACTIONS(3998), + [sym__special_characters] = ACTIONS(4000), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(4002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4002), }, [1386] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(1766), - [sym_c_style_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_negated_command] = STATE(1766), - [sym_test_command] = STATE(1766), - [sym_declaration_command] = STATE(1766), - [sym_unset_command] = STATE(1766), - [sym_command] = STATE(1766), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(1767), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(4004), + [sym_comment] = ACTIONS(57), }, [1387] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(3988), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(1759), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1759), + [anon_sym_RBRACE] = ACTIONS(4006), + [anon_sym_EQ] = ACTIONS(4008), + [anon_sym_DASH] = ACTIONS(4008), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4010), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(4012), + [anon_sym_COLON] = ACTIONS(4008), + [anon_sym_COLON_QMARK] = ACTIONS(4008), + [anon_sym_COLON_DASH] = ACTIONS(4008), + [anon_sym_PERCENT] = ACTIONS(4008), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1388] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(3990), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(1761), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1761), + [anon_sym_RBRACE] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(4014), + [anon_sym_DASH] = ACTIONS(4014), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(4018), + [anon_sym_COLON] = ACTIONS(4014), + [anon_sym_COLON_QMARK] = ACTIONS(4014), + [anon_sym_COLON_DASH] = ACTIONS(4014), + [anon_sym_PERCENT] = ACTIONS(4014), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1389] = { - [anon_sym_RBRACE] = ACTIONS(3990), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(1834), + [anon_sym_RBRACE] = ACTIONS(1834), + [anon_sym_EQ] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1836), + [sym__special_characters] = ACTIONS(1836), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1836), + [sym_raw_string] = ACTIONS(1834), + [anon_sym_POUND] = ACTIONS(1834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), + [anon_sym_COLON] = ACTIONS(1836), + [anon_sym_COLON_QMARK] = ACTIONS(1836), + [anon_sym_COLON_DASH] = ACTIONS(1836), + [anon_sym_PERCENT] = ACTIONS(1836), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), + [anon_sym_BQUOTE] = ACTIONS(1834), + [anon_sym_LT_LPAREN] = ACTIONS(1834), + [anon_sym_GT_LPAREN] = ACTIONS(1834), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(1836), }, [1390] = { - [sym_concatenation] = STATE(1771), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1771), - [anon_sym_RBRACE] = ACTIONS(3992), - [anon_sym_EQ] = ACTIONS(3994), - [anon_sym_DASH] = ACTIONS(3994), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3996), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(3994), - [anon_sym_COLON_QMARK] = ACTIONS(3994), - [anon_sym_COLON_DASH] = ACTIONS(3994), - [anon_sym_PERCENT] = ACTIONS(3994), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1764), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1764), + [sym_regex] = ACTIONS(4020), + [anon_sym_RBRACE] = ACTIONS(4022), + [anon_sym_EQ] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4024), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4024), + [anon_sym_COLON_QMARK] = ACTIONS(4024), + [anon_sym_COLON_DASH] = ACTIONS(4024), + [anon_sym_PERCENT] = ACTIONS(4024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1391] = { - [sym__simple_heredoc_body] = ACTIONS(3998), - [sym__heredoc_body_beginning] = ACTIONS(3998), - [sym_file_descriptor] = ACTIONS(3998), - [sym__concat] = ACTIONS(3998), - [ts_builtin_sym_end] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym_PIPE] = ACTIONS(4000), - [anon_sym_RPAREN] = ACTIONS(3998), - [anon_sym_SEMI_SEMI] = ACTIONS(3998), - [anon_sym_PIPE_AMP] = ACTIONS(3998), - [anon_sym_AMP_AMP] = ACTIONS(3998), - [anon_sym_PIPE_PIPE] = ACTIONS(3998), - [anon_sym_EQ_TILDE] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(4000), - [anon_sym_LT] = ACTIONS(4000), - [anon_sym_GT] = ACTIONS(4000), - [anon_sym_GT_GT] = ACTIONS(3998), - [anon_sym_AMP_GT] = ACTIONS(4000), - [anon_sym_AMP_GT_GT] = ACTIONS(3998), - [anon_sym_LT_AMP] = ACTIONS(3998), - [anon_sym_GT_AMP] = ACTIONS(3998), - [anon_sym_LT_LT] = ACTIONS(4000), - [anon_sym_LT_LT_DASH] = ACTIONS(3998), - [anon_sym_LT_LT_LT] = ACTIONS(3998), - [sym__special_characters] = ACTIONS(3998), - [anon_sym_DQUOTE] = ACTIONS(3998), - [anon_sym_DOLLAR] = ACTIONS(4000), - [sym_raw_string] = ACTIONS(3998), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), - [anon_sym_BQUOTE] = ACTIONS(3998), - [anon_sym_LT_LPAREN] = ACTIONS(3998), - [anon_sym_GT_LPAREN] = ACTIONS(3998), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4000), - [anon_sym_LF] = ACTIONS(3998), - [anon_sym_AMP] = ACTIONS(4000), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4022), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1392] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3992), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_EQ] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(1884), + [sym__special_characters] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1882), + [anon_sym_POUND] = ACTIONS(1882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1882), + [anon_sym_COLON] = ACTIONS(1884), + [anon_sym_COLON_QMARK] = ACTIONS(1884), + [anon_sym_COLON_DASH] = ACTIONS(1884), + [anon_sym_PERCENT] = ACTIONS(1884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1882), + [anon_sym_BQUOTE] = ACTIONS(1882), + [anon_sym_LT_LPAREN] = ACTIONS(1882), + [anon_sym_GT_LPAREN] = ACTIONS(1882), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(1884), }, [1393] = { - [sym_concatenation] = STATE(1772), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1772), - [anon_sym_RBRACE] = ACTIONS(3990), - [anon_sym_EQ] = ACTIONS(4002), - [anon_sym_DASH] = ACTIONS(4002), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4004), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4002), - [anon_sym_COLON_QMARK] = ACTIONS(4002), - [anon_sym_COLON_DASH] = ACTIONS(4002), - [anon_sym_PERCENT] = ACTIONS(4002), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1761), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1761), + [sym_regex] = ACTIONS(4028), + [anon_sym_RBRACE] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(4014), + [anon_sym_DASH] = ACTIONS(4014), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4014), + [anon_sym_COLON_QMARK] = ACTIONS(4014), + [anon_sym_COLON_DASH] = ACTIONS(4014), + [anon_sym_PERCENT] = ACTIONS(4014), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1394] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(3990), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1395] = { - [sym__concat] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [sym__special_characters] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_COLON] = ACTIONS(1765), - [anon_sym_COLON_QMARK] = ACTIONS(1765), - [anon_sym_COLON_DASH] = ACTIONS(1765), - [anon_sym_PERCENT] = ACTIONS(1765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(1765), + [sym__simple_heredoc_body] = ACTIONS(4030), + [sym__heredoc_body_beginning] = ACTIONS(4030), + [sym_file_descriptor] = ACTIONS(4030), + [sym__concat] = ACTIONS(4030), + [ts_builtin_sym_end] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_PIPE] = ACTIONS(4032), + [anon_sym_RPAREN] = ACTIONS(4030), + [anon_sym_SEMI_SEMI] = ACTIONS(4030), + [anon_sym_PIPE_AMP] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_EQ_TILDE] = ACTIONS(4032), + [anon_sym_EQ_EQ] = ACTIONS(4032), + [anon_sym_LT] = ACTIONS(4032), + [anon_sym_GT] = ACTIONS(4032), + [anon_sym_GT_GT] = ACTIONS(4030), + [anon_sym_AMP_GT] = ACTIONS(4032), + [anon_sym_AMP_GT_GT] = ACTIONS(4030), + [anon_sym_LT_AMP] = ACTIONS(4030), + [anon_sym_GT_AMP] = ACTIONS(4030), + [anon_sym_LT_LT] = ACTIONS(4032), + [anon_sym_LT_LT_DASH] = ACTIONS(4030), + [anon_sym_LT_LT_LT] = ACTIONS(4030), + [sym__special_characters] = ACTIONS(4030), + [anon_sym_DQUOTE] = ACTIONS(4030), + [anon_sym_DOLLAR] = ACTIONS(4032), + [sym_raw_string] = ACTIONS(4030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4030), + [anon_sym_BQUOTE] = ACTIONS(4030), + [anon_sym_LT_LPAREN] = ACTIONS(4030), + [anon_sym_GT_LPAREN] = ACTIONS(4030), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4032), + [anon_sym_LF] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4032), }, [1396] = { - [aux_sym_concatenation_repeat1] = STATE(1396), - [sym__concat] = ACTIONS(4006), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_EQ] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1765), - [sym__special_characters] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_COLON] = ACTIONS(1765), - [anon_sym_COLON_QMARK] = ACTIONS(1765), - [anon_sym_COLON_DASH] = ACTIONS(1765), - [anon_sym_PERCENT] = ACTIONS(1765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(1765), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4034), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1397] = { - [sym__concat] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [sym__special_characters] = ACTIONS(1772), - [anon_sym_DQUOTE] = ACTIONS(1770), - [anon_sym_DOLLAR] = ACTIONS(1772), - [sym_raw_string] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(1770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), - [anon_sym_COLON] = ACTIONS(1772), - [anon_sym_COLON_QMARK] = ACTIONS(1772), - [anon_sym_COLON_DASH] = ACTIONS(1772), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), - [anon_sym_BQUOTE] = ACTIONS(1770), - [anon_sym_LT_LPAREN] = ACTIONS(1770), - [anon_sym_GT_LPAREN] = ACTIONS(1770), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(1772), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(4036), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1398] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(4009), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [sym__concat] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(1892), + [anon_sym_DASH] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_COLON] = ACTIONS(1892), + [anon_sym_COLON_QMARK] = ACTIONS(1892), + [anon_sym_COLON_DASH] = ACTIONS(1892), + [anon_sym_PERCENT] = ACTIONS(1892), + [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(265), + [sym_word] = ACTIONS(1892), }, [1399] = { - [sym_concatenation] = STATE(1777), - [sym_string] = STATE(1776), - [sym_simple_expansion] = STATE(1776), - [sym_string_expansion] = STATE(1776), - [sym_expansion] = STATE(1776), - [sym_command_substitution] = STATE(1776), - [sym_process_substitution] = STATE(1776), - [anon_sym_RBRACE] = ACTIONS(4011), - [sym__special_characters] = ACTIONS(4013), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(4015), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4015), + [anon_sym_SEMI] = ACTIONS(4038), + [anon_sym_RPAREN] = ACTIONS(4036), + [anon_sym_SEMI_SEMI] = ACTIONS(4040), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4040), + [anon_sym_AMP] = ACTIONS(4040), }, [1400] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(4017), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1770), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(4042), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(4036), + [anon_sym_SEMI_SEMI] = ACTIONS(4044), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4044), + [anon_sym_AMP] = ACTIONS(4042), }, [1401] = { - [sym_concatenation] = STATE(1781), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1781), - [anon_sym_RBRACE] = ACTIONS(4019), - [anon_sym_EQ] = ACTIONS(4021), - [anon_sym_DASH] = ACTIONS(4021), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(4025), - [anon_sym_COLON] = ACTIONS(4021), - [anon_sym_COLON_QMARK] = ACTIONS(4021), - [anon_sym_COLON_DASH] = ACTIONS(4021), - [anon_sym_PERCENT] = ACTIONS(4021), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1770), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(4042), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(4036), + [anon_sym_SEMI_SEMI] = ACTIONS(4044), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(4044), + [anon_sym_AMP] = ACTIONS(4042), }, [1402] = { - [sym_concatenation] = STATE(1783), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1783), - [anon_sym_RBRACE] = ACTIONS(4011), - [anon_sym_EQ] = ACTIONS(4027), - [anon_sym_DASH] = ACTIONS(4027), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4029), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_COLON] = ACTIONS(4027), - [anon_sym_COLON_QMARK] = ACTIONS(4027), - [anon_sym_COLON_DASH] = ACTIONS(4027), - [anon_sym_PERCENT] = ACTIONS(4027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(4036), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1403] = { - [sym__concat] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_EQ] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1873), - [sym__special_characters] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1871), - [anon_sym_DOLLAR] = ACTIONS(1873), - [sym_raw_string] = ACTIONS(1871), - [anon_sym_POUND] = ACTIONS(1871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), - [anon_sym_COLON] = ACTIONS(1873), - [anon_sym_COLON_QMARK] = ACTIONS(1873), - [anon_sym_COLON_DASH] = ACTIONS(1873), - [anon_sym_PERCENT] = ACTIONS(1873), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), - [anon_sym_BQUOTE] = ACTIONS(1871), - [anon_sym_LT_LPAREN] = ACTIONS(1871), - [anon_sym_GT_LPAREN] = ACTIONS(1871), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym_SEMI_SEMI] = ACTIONS(4048), + [anon_sym_BQUOTE] = ACTIONS(4036), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4048), }, [1404] = { - [sym_concatenation] = STATE(1786), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1786), - [sym_regex] = ACTIONS(4033), - [anon_sym_RBRACE] = ACTIONS(4035), - [anon_sym_EQ] = ACTIONS(4037), - [anon_sym_DASH] = ACTIONS(4037), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4037), - [anon_sym_COLON_QMARK] = ACTIONS(4037), - [anon_sym_COLON_DASH] = ACTIONS(4037), - [anon_sym_PERCENT] = ACTIONS(4037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1773), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(4052), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(4036), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4052), + [anon_sym_AMP] = ACTIONS(4050), }, [1405] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4035), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1773), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(4052), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(4036), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(4052), + [anon_sym_AMP] = ACTIONS(4050), }, [1406] = { - [sym__concat] = ACTIONS(1919), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_EQ] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [sym__special_characters] = ACTIONS(1921), - [anon_sym_DQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1921), - [sym_raw_string] = ACTIONS(1919), - [anon_sym_POUND] = ACTIONS(1919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(1921), - [anon_sym_COLON_QMARK] = ACTIONS(1921), - [anon_sym_COLON_DASH] = ACTIONS(1921), - [anon_sym_PERCENT] = ACTIONS(1921), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), - [anon_sym_BQUOTE] = ACTIONS(1919), - [anon_sym_LT_LPAREN] = ACTIONS(1919), - [anon_sym_GT_LPAREN] = ACTIONS(1919), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(1921), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(4054), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1407] = { - [sym_concatenation] = STATE(1783), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1783), - [sym_regex] = ACTIONS(4041), - [anon_sym_RBRACE] = ACTIONS(4011), - [anon_sym_EQ] = ACTIONS(4027), - [anon_sym_DASH] = ACTIONS(4027), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4029), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4027), - [anon_sym_COLON_QMARK] = ACTIONS(4027), - [anon_sym_COLON_DASH] = ACTIONS(4027), - [anon_sym_PERCENT] = ACTIONS(4027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(1924), + [anon_sym_RBRACE] = ACTIONS(1924), + [anon_sym_EQ] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [sym__special_characters] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(1924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), + [anon_sym_COLON] = ACTIONS(1926), + [anon_sym_COLON_QMARK] = ACTIONS(1926), + [anon_sym_COLON_DASH] = ACTIONS(1926), + [anon_sym_PERCENT] = ACTIONS(1926), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), + [anon_sym_BQUOTE] = ACTIONS(1924), + [anon_sym_LT_LPAREN] = ACTIONS(1924), + [anon_sym_GT_LPAREN] = ACTIONS(1924), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(1926), }, [1408] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4011), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(4056), + [anon_sym_RPAREN] = ACTIONS(4054), + [anon_sym_SEMI_SEMI] = ACTIONS(4058), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4058), + [anon_sym_AMP] = ACTIONS(4058), }, [1409] = { - [sym__simple_heredoc_body] = ACTIONS(4043), - [sym__heredoc_body_beginning] = ACTIONS(4043), - [sym_file_descriptor] = ACTIONS(4043), - [sym__concat] = ACTIONS(4043), - [ts_builtin_sym_end] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4045), - [anon_sym_PIPE] = ACTIONS(4045), - [anon_sym_RPAREN] = ACTIONS(4043), - [anon_sym_SEMI_SEMI] = ACTIONS(4043), - [anon_sym_PIPE_AMP] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_EQ_TILDE] = ACTIONS(4045), - [anon_sym_EQ_EQ] = ACTIONS(4045), - [anon_sym_LT] = ACTIONS(4045), - [anon_sym_GT] = ACTIONS(4045), - [anon_sym_GT_GT] = ACTIONS(4043), - [anon_sym_AMP_GT] = ACTIONS(4045), - [anon_sym_AMP_GT_GT] = ACTIONS(4043), - [anon_sym_LT_AMP] = ACTIONS(4043), - [anon_sym_GT_AMP] = ACTIONS(4043), - [anon_sym_LT_LT] = ACTIONS(4045), - [anon_sym_LT_LT_DASH] = ACTIONS(4043), - [anon_sym_LT_LT_LT] = ACTIONS(4043), - [sym__special_characters] = ACTIONS(4043), - [anon_sym_DQUOTE] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(4045), - [sym_raw_string] = ACTIONS(4043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), - [anon_sym_BQUOTE] = ACTIONS(4043), - [anon_sym_LT_LPAREN] = ACTIONS(4043), - [anon_sym_GT_LPAREN] = ACTIONS(4043), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4045), - [anon_sym_LF] = ACTIONS(4043), - [anon_sym_AMP] = ACTIONS(4045), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1777), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(4060), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(4054), + [anon_sym_SEMI_SEMI] = ACTIONS(4062), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4060), }, [1410] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4047), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1777), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(4060), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(4054), + [anon_sym_SEMI_SEMI] = ACTIONS(4062), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4060), }, [1411] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(4049), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__simple_heredoc_body] = ACTIONS(4064), + [sym__heredoc_body_beginning] = ACTIONS(4064), + [sym_file_descriptor] = ACTIONS(4064), + [sym__concat] = ACTIONS(4064), + [ts_builtin_sym_end] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4066), + [anon_sym_PIPE] = ACTIONS(4066), + [anon_sym_RPAREN] = ACTIONS(4064), + [anon_sym_SEMI_SEMI] = ACTIONS(4064), + [anon_sym_PIPE_AMP] = ACTIONS(4064), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_PIPE_PIPE] = ACTIONS(4064), + [anon_sym_EQ_TILDE] = ACTIONS(4066), + [anon_sym_EQ_EQ] = ACTIONS(4066), + [anon_sym_LT] = ACTIONS(4066), + [anon_sym_GT] = ACTIONS(4066), + [anon_sym_GT_GT] = ACTIONS(4064), + [anon_sym_AMP_GT] = ACTIONS(4066), + [anon_sym_AMP_GT_GT] = ACTIONS(4064), + [anon_sym_LT_AMP] = ACTIONS(4064), + [anon_sym_GT_AMP] = ACTIONS(4064), + [anon_sym_LT_LT] = ACTIONS(4066), + [anon_sym_LT_LT_DASH] = ACTIONS(4064), + [anon_sym_LT_LT_LT] = ACTIONS(4064), + [sym__special_characters] = ACTIONS(4064), + [anon_sym_DQUOTE] = ACTIONS(4064), + [anon_sym_DOLLAR] = ACTIONS(4066), + [sym_raw_string] = ACTIONS(4064), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4064), + [anon_sym_BQUOTE] = ACTIONS(4064), + [anon_sym_LT_LPAREN] = ACTIONS(4064), + [anon_sym_GT_LPAREN] = ACTIONS(4064), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4066), + [anon_sym_LF] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4066), }, [1412] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_EQ] = ACTIONS(1929), - [anon_sym_DASH] = ACTIONS(1929), - [sym__special_characters] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1929), - [sym_raw_string] = ACTIONS(1927), - [anon_sym_POUND] = ACTIONS(1927), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), - [anon_sym_COLON] = ACTIONS(1929), - [anon_sym_COLON_QMARK] = ACTIONS(1929), - [anon_sym_COLON_DASH] = ACTIONS(1929), - [anon_sym_PERCENT] = ACTIONS(1929), - [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(281), - [sym_word] = ACTIONS(1929), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4068), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1413] = { - [anon_sym_SEMI] = ACTIONS(4051), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4049), - [anon_sym_SEMI_SEMI] = ACTIONS(4053), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4053), - [anon_sym_AMP] = ACTIONS(4051), + [aux_sym_concatenation_repeat1] = STATE(1415), + [sym__simple_heredoc_body] = ACTIONS(1067), + [sym__heredoc_body_beginning] = ACTIONS(1067), + [sym_file_descriptor] = ACTIONS(1067), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1069), + [anon_sym_SEMI_SEMI] = ACTIONS(1067), + [anon_sym_PIPE_AMP] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1067), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1069), + [anon_sym_GT] = ACTIONS(1069), + [anon_sym_GT_GT] = ACTIONS(1067), + [anon_sym_AMP_GT] = ACTIONS(1069), + [anon_sym_AMP_GT_GT] = ACTIONS(1067), + [anon_sym_LT_AMP] = ACTIONS(1067), + [anon_sym_GT_AMP] = ACTIONS(1067), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_LT_LT_DASH] = ACTIONS(1067), + [anon_sym_LT_LT_LT] = ACTIONS(1067), + [anon_sym_BQUOTE] = ACTIONS(1067), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), }, [1414] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(4051), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4049), - [anon_sym_SEMI_SEMI] = ACTIONS(4053), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(4053), - [anon_sym_AMP] = ACTIONS(4051), + [aux_sym_concatenation_repeat1] = STATE(1415), + [sym__simple_heredoc_body] = ACTIONS(1071), + [sym__heredoc_body_beginning] = ACTIONS(1071), + [sym_file_descriptor] = ACTIONS(1071), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_SEMI_SEMI] = ACTIONS(1071), + [anon_sym_PIPE_AMP] = ACTIONS(1071), + [anon_sym_AMP_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1071), + [anon_sym_LT] = ACTIONS(1073), + [anon_sym_GT] = ACTIONS(1073), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_AMP_GT] = ACTIONS(1073), + [anon_sym_AMP_GT_GT] = ACTIONS(1071), + [anon_sym_LT_AMP] = ACTIONS(1071), + [anon_sym_GT_AMP] = ACTIONS(1071), + [anon_sym_LT_LT] = ACTIONS(1073), + [anon_sym_LT_LT_DASH] = ACTIONS(1071), + [anon_sym_LT_LT_LT] = ACTIONS(1071), + [anon_sym_BQUOTE] = ACTIONS(1071), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), }, [1415] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(4049), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [aux_sym_concatenation_repeat1] = STATE(1779), + [sym__simple_heredoc_body] = ACTIONS(779), + [sym__heredoc_body_beginning] = ACTIONS(779), + [sym_file_descriptor] = ACTIONS(779), + [sym__concat] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [anon_sym_PIPE_AMP] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_AMP_GT] = ACTIONS(781), + [anon_sym_AMP_GT_GT] = ACTIONS(779), + [anon_sym_LT_AMP] = ACTIONS(779), + [anon_sym_GT_AMP] = ACTIONS(779), + [anon_sym_LT_LT] = ACTIONS(781), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_LT] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(781), }, [1416] = { - [anon_sym_SEMI] = ACTIONS(4055), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(4057), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(4049), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4057), - [anon_sym_AMP] = ACTIONS(4055), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(4068), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [1417] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(4055), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(4057), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(4049), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(4057), - [anon_sym_AMP] = ACTIONS(4055), + [sym__simple_heredoc_body] = ACTIONS(4070), + [sym__heredoc_body_beginning] = ACTIONS(4070), + [sym_file_descriptor] = ACTIONS(4070), + [sym__concat] = ACTIONS(4070), + [ts_builtin_sym_end] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym_PIPE] = ACTIONS(4072), + [anon_sym_RPAREN] = ACTIONS(4070), + [anon_sym_SEMI_SEMI] = ACTIONS(4070), + [anon_sym_PIPE_AMP] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_PIPE_PIPE] = ACTIONS(4070), + [anon_sym_EQ_TILDE] = ACTIONS(4072), + [anon_sym_EQ_EQ] = ACTIONS(4072), + [anon_sym_LT] = ACTIONS(4072), + [anon_sym_GT] = ACTIONS(4072), + [anon_sym_GT_GT] = ACTIONS(4070), + [anon_sym_AMP_GT] = ACTIONS(4072), + [anon_sym_AMP_GT_GT] = ACTIONS(4070), + [anon_sym_LT_AMP] = ACTIONS(4070), + [anon_sym_GT_AMP] = ACTIONS(4070), + [anon_sym_LT_LT] = ACTIONS(4072), + [anon_sym_LT_LT_DASH] = ACTIONS(4070), + [anon_sym_LT_LT_LT] = ACTIONS(4070), + [sym__special_characters] = ACTIONS(4070), + [anon_sym_DQUOTE] = ACTIONS(4070), + [anon_sym_DOLLAR] = ACTIONS(4072), + [sym_raw_string] = ACTIONS(4070), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4070), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4070), + [anon_sym_BQUOTE] = ACTIONS(4070), + [anon_sym_LT_LPAREN] = ACTIONS(4070), + [anon_sym_GT_LPAREN] = ACTIONS(4070), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4072), + [anon_sym_LF] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4072), }, [1418] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(4059), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4074), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1419] = { - [sym__concat] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [sym__special_characters] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1959), - [anon_sym_POUND] = ACTIONS(1959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), - [anon_sym_COLON] = ACTIONS(1961), - [anon_sym_COLON_QMARK] = ACTIONS(1961), - [anon_sym_COLON_DASH] = ACTIONS(1961), - [anon_sym_PERCENT] = ACTIONS(1961), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), - [anon_sym_BQUOTE] = ACTIONS(1959), - [anon_sym_LT_LPAREN] = ACTIONS(1959), - [anon_sym_GT_LPAREN] = ACTIONS(1959), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(1961), + [sym_concatenation] = STATE(1784), + [sym_string] = STATE(1783), + [sym_simple_expansion] = STATE(1783), + [sym_string_expansion] = STATE(1783), + [sym_expansion] = STATE(1783), + [sym_command_substitution] = STATE(1783), + [sym_process_substitution] = STATE(1783), + [anon_sym_RBRACE] = ACTIONS(4076), + [sym__special_characters] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(4080), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4080), }, [1420] = { - [anon_sym_SEMI] = ACTIONS(4061), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4059), - [anon_sym_SEMI_SEMI] = ACTIONS(4063), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4063), - [anon_sym_AMP] = ACTIONS(4061), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(4082), + [sym_comment] = ACTIONS(57), }, [1421] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(4061), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4059), - [anon_sym_SEMI_SEMI] = ACTIONS(4063), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(4063), - [anon_sym_AMP] = ACTIONS(4061), + [sym_concatenation] = STATE(1788), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1788), + [anon_sym_RBRACE] = ACTIONS(4084), + [anon_sym_EQ] = ACTIONS(4086), + [anon_sym_DASH] = ACTIONS(4086), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4088), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(4090), + [anon_sym_COLON] = ACTIONS(4086), + [anon_sym_COLON_QMARK] = ACTIONS(4086), + [anon_sym_COLON_DASH] = ACTIONS(4086), + [anon_sym_PERCENT] = ACTIONS(4086), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1422] = { - [sym__simple_heredoc_body] = ACTIONS(4065), - [sym__heredoc_body_beginning] = ACTIONS(4065), - [sym_file_descriptor] = ACTIONS(4065), - [sym__concat] = ACTIONS(4065), - [ts_builtin_sym_end] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_PIPE] = ACTIONS(4067), - [anon_sym_RPAREN] = ACTIONS(4065), - [anon_sym_SEMI_SEMI] = ACTIONS(4065), - [anon_sym_PIPE_AMP] = ACTIONS(4065), - [anon_sym_AMP_AMP] = ACTIONS(4065), - [anon_sym_PIPE_PIPE] = ACTIONS(4065), - [anon_sym_EQ_TILDE] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4067), - [anon_sym_GT] = ACTIONS(4067), - [anon_sym_GT_GT] = ACTIONS(4065), - [anon_sym_AMP_GT] = ACTIONS(4067), - [anon_sym_AMP_GT_GT] = ACTIONS(4065), - [anon_sym_LT_AMP] = ACTIONS(4065), - [anon_sym_GT_AMP] = ACTIONS(4065), - [anon_sym_LT_LT] = ACTIONS(4067), - [anon_sym_LT_LT_DASH] = ACTIONS(4065), - [anon_sym_LT_LT_LT] = ACTIONS(4065), - [sym__special_characters] = ACTIONS(4065), - [anon_sym_DQUOTE] = ACTIONS(4065), - [anon_sym_DOLLAR] = ACTIONS(4067), - [sym_raw_string] = ACTIONS(4065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), - [anon_sym_BQUOTE] = ACTIONS(4065), - [anon_sym_LT_LPAREN] = ACTIONS(4065), - [anon_sym_GT_LPAREN] = ACTIONS(4065), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4067), - [anon_sym_LF] = ACTIONS(4065), - [anon_sym_AMP] = ACTIONS(4067), + [sym_concatenation] = STATE(1790), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1790), + [anon_sym_RBRACE] = ACTIONS(4076), + [anon_sym_EQ] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4094), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(4096), + [anon_sym_COLON] = ACTIONS(4092), + [anon_sym_COLON_QMARK] = ACTIONS(4092), + [anon_sym_COLON_DASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1423] = { - [anon_sym_LT] = ACTIONS(4069), - [anon_sym_GT] = ACTIONS(4069), - [anon_sym_GT_GT] = ACTIONS(4071), - [anon_sym_AMP_GT] = ACTIONS(4069), - [anon_sym_AMP_GT_GT] = ACTIONS(4071), - [anon_sym_LT_AMP] = ACTIONS(4071), - [anon_sym_GT_AMP] = ACTIONS(4071), - [sym_comment] = ACTIONS(55), + [sym__heredoc_body_middle] = ACTIONS(1834), + [sym__heredoc_body_end] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), + [sym_comment] = ACTIONS(57), }, [1424] = { - [sym_concatenation] = STATE(1166), - [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(4073), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(4075), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2406), - [anon_sym_LT_LPAREN] = ACTIONS(2408), - [anon_sym_GT_LPAREN] = ACTIONS(2408), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4075), + [sym_concatenation] = STATE(1793), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1793), + [sym_regex] = ACTIONS(4098), + [anon_sym_RBRACE] = ACTIONS(4100), + [anon_sym_EQ] = ACTIONS(4102), + [anon_sym_DASH] = ACTIONS(4102), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4102), + [anon_sym_COLON_QMARK] = ACTIONS(4102), + [anon_sym_COLON_DASH] = ACTIONS(4102), + [anon_sym_PERCENT] = ACTIONS(4102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1425] = { - [sym_concatenation] = STATE(1170), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4100), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [1426] = { + [sym__heredoc_body_middle] = ACTIONS(1882), + [sym__heredoc_body_end] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1882), + [sym_comment] = ACTIONS(57), + }, + [1427] = { + [sym_concatenation] = STATE(1790), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1790), + [sym_regex] = ACTIONS(4106), + [anon_sym_RBRACE] = ACTIONS(4076), + [anon_sym_EQ] = ACTIONS(4092), + [anon_sym_DASH] = ACTIONS(4092), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4094), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4092), + [anon_sym_COLON_QMARK] = ACTIONS(4092), + [anon_sym_COLON_DASH] = ACTIONS(4092), + [anon_sym_PERCENT] = ACTIONS(4092), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [1428] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4076), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [1429] = { + [aux_sym_concatenation_repeat1] = STATE(1429), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(1730), + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), + }, + [1430] = { + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_done] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_fi] = ACTIONS(1988), + [anon_sym_elif] = ACTIONS(1988), + [anon_sym_else] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_SEMI_SEMI] = ACTIONS(1984), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), + }, + [1431] = { + [anon_sym_EQ] = ACTIONS(4108), + [anon_sym_PLUS_EQ] = ACTIONS(4108), + [sym_comment] = ACTIONS(57), + }, + [1432] = { + [anon_sym_EQ] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [sym_comment] = ACTIONS(57), + }, + [1433] = { + [sym__concat] = ACTIONS(1726), + [anon_sym_RPAREN] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1726), + }, + [1434] = { + [aux_sym_concatenation_repeat1] = STATE(1434), + [sym__concat] = ACTIONS(4112), + [anon_sym_RPAREN] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1726), + }, + [1435] = { + [sym__concat] = ACTIONS(1733), + [anon_sym_RPAREN] = ACTIONS(1733), + [sym__special_characters] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1733), + [anon_sym_BQUOTE] = ACTIONS(1733), + [anon_sym_LT_LPAREN] = ACTIONS(1733), + [anon_sym_GT_LPAREN] = ACTIONS(1733), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1733), + }, + [1436] = { + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(4115), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + }, + [1437] = { + [sym_concatenation] = STATE(1799), [sym_string] = STATE(1798), [sym_simple_expansion] = STATE(1798), [sym_string_expansion] = STATE(1798), [sym_expansion] = STATE(1798), [sym_command_substitution] = STATE(1798), [sym_process_substitution] = STATE(1798), - [sym__special_characters] = ACTIONS(4077), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(4079), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2406), - [anon_sym_LT_LPAREN] = ACTIONS(2408), - [anon_sym_GT_LPAREN] = ACTIONS(2408), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4079), - }, - [1426] = { - [sym_file_redirect] = STATE(1799), - [sym_heredoc_redirect] = STATE(1799), - [sym_herestring_redirect] = STATE(1799), - [aux_sym_while_statement_repeat1] = STATE(1799), - [sym_file_descriptor] = ACTIONS(3126), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_SEMI_SEMI] = ACTIONS(2416), - [anon_sym_PIPE_AMP] = ACTIONS(2416), - [anon_sym_AMP_AMP] = ACTIONS(2416), - [anon_sym_PIPE_PIPE] = ACTIONS(2416), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_GT] = ACTIONS(3128), - [anon_sym_GT_GT] = ACTIONS(3130), - [anon_sym_AMP_GT] = ACTIONS(3128), - [anon_sym_AMP_GT_GT] = ACTIONS(3130), - [anon_sym_LT_AMP] = ACTIONS(3130), - [anon_sym_GT_AMP] = ACTIONS(3130), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_LT_LT_DASH] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(3132), - [anon_sym_BQUOTE] = ACTIONS(2416), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2418), - }, - [1427] = { - [sym_file_redirect] = STATE(977), - [sym_heredoc_redirect] = STATE(977), - [sym_heredoc_body] = STATE(1188), - [sym_herestring_redirect] = STATE(977), - [aux_sym_while_statement_repeat1] = STATE(977), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(2479), - [anon_sym_PIPE] = ACTIONS(2479), - [anon_sym_SEMI_SEMI] = ACTIONS(2477), - [anon_sym_PIPE_AMP] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(929), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(933), - [anon_sym_BQUOTE] = ACTIONS(2477), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2479), - }, - [1428] = { - [sym_compound_statement] = STATE(1800), - [anon_sym_LBRACE] = ACTIONS(595), - [sym_comment] = ACTIONS(55), - }, - [1429] = { - [anon_sym_LT] = ACTIONS(4081), - [anon_sym_GT] = ACTIONS(4081), - [anon_sym_GT_GT] = ACTIONS(4083), - [anon_sym_AMP_GT] = ACTIONS(4081), - [anon_sym_AMP_GT_GT] = ACTIONS(4083), - [anon_sym_LT_AMP] = ACTIONS(4083), - [anon_sym_GT_AMP] = ACTIONS(4083), - [sym_comment] = ACTIONS(55), - }, - [1430] = { - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(1803), - [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__special_characters] = ACTIONS(4085), - [anon_sym_DQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [sym_raw_string] = ACTIONS(4087), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [anon_sym_LT_LPAREN] = ACTIONS(241), - [anon_sym_GT_LPAREN] = ACTIONS(241), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4087), - }, - [1431] = { - [sym_file_redirect] = STATE(1437), - [sym_file_descriptor] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(2614), - [anon_sym_PIPE] = ACTIONS(2614), - [anon_sym_SEMI_SEMI] = ACTIONS(2612), - [anon_sym_PIPE_AMP] = ACTIONS(2612), - [anon_sym_AMP_AMP] = ACTIONS(2612), - [anon_sym_PIPE_PIPE] = ACTIONS(2612), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_GT] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3140), - [anon_sym_AMP_GT] = ACTIONS(3138), - [anon_sym_AMP_GT_GT] = ACTIONS(3140), - [anon_sym_LT_AMP] = ACTIONS(3140), - [anon_sym_GT_AMP] = ACTIONS(3140), - [anon_sym_BQUOTE] = ACTIONS(2612), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2612), - [anon_sym_AMP] = ACTIONS(2614), - }, - [1432] = { - [aux_sym_concatenation_repeat1] = STATE(1434), - [sym__simple_heredoc_body] = ACTIONS(1088), - [sym__heredoc_body_beginning] = ACTIONS(1088), - [sym_file_descriptor] = ACTIONS(1088), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1090), - [anon_sym_SEMI_SEMI] = ACTIONS(1088), - [anon_sym_PIPE_AMP] = ACTIONS(1088), - [anon_sym_AMP_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1088), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(1090), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_AMP_GT] = ACTIONS(1090), - [anon_sym_AMP_GT_GT] = ACTIONS(1088), - [anon_sym_LT_AMP] = ACTIONS(1088), - [anon_sym_GT_AMP] = ACTIONS(1088), - [anon_sym_LT_LT] = ACTIONS(1090), - [anon_sym_LT_LT_DASH] = ACTIONS(1088), - [anon_sym_LT_LT_LT] = ACTIONS(1088), - [anon_sym_BQUOTE] = ACTIONS(1088), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), - }, - [1433] = { - [aux_sym_concatenation_repeat1] = STATE(1434), - [sym__simple_heredoc_body] = ACTIONS(1092), - [sym__heredoc_body_beginning] = ACTIONS(1092), - [sym_file_descriptor] = ACTIONS(1092), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_SEMI_SEMI] = ACTIONS(1092), - [anon_sym_PIPE_AMP] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_LT] = ACTIONS(1094), - [anon_sym_GT] = ACTIONS(1094), - [anon_sym_GT_GT] = ACTIONS(1092), - [anon_sym_AMP_GT] = ACTIONS(1094), - [anon_sym_AMP_GT_GT] = ACTIONS(1092), - [anon_sym_LT_AMP] = ACTIONS(1092), - [anon_sym_GT_AMP] = ACTIONS(1092), - [anon_sym_LT_LT] = ACTIONS(1094), - [anon_sym_LT_LT_DASH] = ACTIONS(1092), - [anon_sym_LT_LT_LT] = ACTIONS(1092), - [anon_sym_BQUOTE] = ACTIONS(1092), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1092), - [anon_sym_AMP] = ACTIONS(1094), - }, - [1434] = { - [aux_sym_concatenation_repeat1] = STATE(1804), - [sym__simple_heredoc_body] = ACTIONS(807), - [sym__heredoc_body_beginning] = ACTIONS(807), - [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(265), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(809), - [anon_sym_AMP_GT_GT] = ACTIONS(807), - [anon_sym_LT_AMP] = ACTIONS(807), - [anon_sym_GT_AMP] = ACTIONS(807), - [anon_sym_LT_LT] = ACTIONS(809), - [anon_sym_LT_LT_DASH] = ACTIONS(807), - [anon_sym_LT_LT_LT] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), - }, - [1435] = { - [sym_file_redirect] = STATE(977), - [sym_heredoc_redirect] = STATE(977), - [sym_heredoc_body] = STATE(1449), - [sym_herestring_redirect] = STATE(977), - [aux_sym_while_statement_repeat1] = STATE(977), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(3207), - [anon_sym_PIPE] = ACTIONS(3207), - [anon_sym_SEMI_SEMI] = ACTIONS(3205), - [anon_sym_PIPE_AMP] = ACTIONS(3205), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_PIPE_PIPE] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(929), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(929), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(933), - [anon_sym_BQUOTE] = ACTIONS(3205), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3207), - }, - [1436] = { - [sym__simple_heredoc_body] = ACTIONS(4089), - [sym__heredoc_body_beginning] = ACTIONS(4089), - [sym_file_descriptor] = ACTIONS(4089), - [sym__concat] = ACTIONS(4089), - [ts_builtin_sym_end] = ACTIONS(4089), - [anon_sym_SEMI] = ACTIONS(4091), - [anon_sym_PIPE] = ACTIONS(4091), - [anon_sym_RPAREN] = ACTIONS(4089), - [anon_sym_SEMI_SEMI] = ACTIONS(4089), - [anon_sym_PIPE_AMP] = ACTIONS(4089), - [anon_sym_AMP_AMP] = ACTIONS(4089), - [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_EQ_TILDE] = ACTIONS(4091), - [anon_sym_EQ_EQ] = ACTIONS(4091), - [anon_sym_LT] = ACTIONS(4091), - [anon_sym_GT] = ACTIONS(4091), - [anon_sym_GT_GT] = ACTIONS(4089), - [anon_sym_AMP_GT] = ACTIONS(4091), - [anon_sym_AMP_GT_GT] = ACTIONS(4089), - [anon_sym_LT_AMP] = ACTIONS(4089), - [anon_sym_GT_AMP] = ACTIONS(4089), - [anon_sym_LT_LT] = ACTIONS(4091), - [anon_sym_LT_LT_DASH] = ACTIONS(4089), - [anon_sym_LT_LT_LT] = ACTIONS(4089), - [sym__special_characters] = ACTIONS(4089), - [anon_sym_DQUOTE] = ACTIONS(4089), - [anon_sym_DOLLAR] = ACTIONS(4091), - [sym_raw_string] = ACTIONS(4089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), - [anon_sym_BQUOTE] = ACTIONS(4089), - [anon_sym_LT_LPAREN] = ACTIONS(4089), - [anon_sym_GT_LPAREN] = ACTIONS(4089), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4091), - [anon_sym_LF] = ACTIONS(4089), - [anon_sym_AMP] = ACTIONS(4091), - }, - [1437] = { - [ts_builtin_sym_end] = ACTIONS(3720), - [anon_sym_SEMI] = ACTIONS(3722), - [anon_sym_esac] = ACTIONS(3720), - [anon_sym_PIPE] = ACTIONS(3722), - [anon_sym_RPAREN] = ACTIONS(3720), - [anon_sym_SEMI_SEMI] = ACTIONS(3720), - [anon_sym_PIPE_AMP] = ACTIONS(3720), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_BQUOTE] = ACTIONS(3720), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3720), - [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_RBRACE] = ACTIONS(4117), + [sym__special_characters] = ACTIONS(4119), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(4121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4121), }, [1438] = { - [sym_concatenation] = STATE(1808), - [sym_string] = STATE(1807), - [sym_simple_expansion] = STATE(1807), - [sym_string_expansion] = STATE(1807), - [sym_expansion] = STATE(1807), - [sym_command_substitution] = STATE(1807), - [sym_process_substitution] = STATE(1807), - [anon_sym_RBRACE] = ACTIONS(4093), - [sym__special_characters] = ACTIONS(4095), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(4097), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4097), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(4123), + [sym_comment] = ACTIONS(57), }, [1439] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(4099), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(1803), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1803), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_EQ] = ACTIONS(4127), + [anon_sym_DASH] = ACTIONS(4127), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(4131), + [anon_sym_COLON] = ACTIONS(4127), + [anon_sym_COLON_QMARK] = ACTIONS(4127), + [anon_sym_COLON_DASH] = ACTIONS(4127), + [anon_sym_PERCENT] = ACTIONS(4127), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1440] = { - [sym_concatenation] = STATE(1812), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1812), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_EQ] = ACTIONS(4103), - [anon_sym_DASH] = ACTIONS(4103), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(4107), - [anon_sym_COLON] = ACTIONS(4103), - [anon_sym_COLON_QMARK] = ACTIONS(4103), - [anon_sym_COLON_DASH] = ACTIONS(4103), - [anon_sym_PERCENT] = ACTIONS(4103), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1805), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1805), + [anon_sym_RBRACE] = ACTIONS(4117), + [anon_sym_EQ] = ACTIONS(4133), + [anon_sym_DASH] = ACTIONS(4133), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4135), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(4137), + [anon_sym_COLON] = ACTIONS(4133), + [anon_sym_COLON_QMARK] = ACTIONS(4133), + [anon_sym_COLON_DASH] = ACTIONS(4133), + [anon_sym_PERCENT] = ACTIONS(4133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1441] = { - [sym_concatenation] = STATE(1814), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1814), - [anon_sym_RBRACE] = ACTIONS(4093), - [anon_sym_EQ] = ACTIONS(4109), - [anon_sym_DASH] = ACTIONS(4109), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(4113), - [anon_sym_COLON] = ACTIONS(4109), - [anon_sym_COLON_QMARK] = ACTIONS(4109), - [anon_sym_COLON_DASH] = ACTIONS(4109), - [anon_sym_PERCENT] = ACTIONS(4109), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(1834), + [anon_sym_RPAREN] = ACTIONS(1834), + [sym__special_characters] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1836), + [sym_raw_string] = ACTIONS(1834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), + [anon_sym_BQUOTE] = ACTIONS(1834), + [anon_sym_LT_LPAREN] = ACTIONS(1834), + [anon_sym_GT_LPAREN] = ACTIONS(1834), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1834), }, [1442] = { - [sym__heredoc_body_middle] = ACTIONS(1871), - [sym__heredoc_body_end] = ACTIONS(1871), - [anon_sym_DOLLAR] = ACTIONS(1873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(1808), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1808), + [sym_regex] = ACTIONS(4139), + [anon_sym_RBRACE] = ACTIONS(4141), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_DASH] = ACTIONS(4143), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4145), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4143), + [anon_sym_COLON_QMARK] = ACTIONS(4143), + [anon_sym_COLON_DASH] = ACTIONS(4143), + [anon_sym_PERCENT] = ACTIONS(4143), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1443] = { - [sym_concatenation] = STATE(1817), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1817), - [sym_regex] = ACTIONS(4115), - [anon_sym_RBRACE] = ACTIONS(4117), - [anon_sym_EQ] = ACTIONS(4119), - [anon_sym_DASH] = ACTIONS(4119), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4121), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4119), - [anon_sym_COLON_QMARK] = ACTIONS(4119), - [anon_sym_COLON_DASH] = ACTIONS(4119), - [anon_sym_PERCENT] = ACTIONS(4119), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4141), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1444] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4117), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(1882), + [anon_sym_RPAREN] = ACTIONS(1882), + [sym__special_characters] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1882), + [anon_sym_BQUOTE] = ACTIONS(1882), + [anon_sym_LT_LPAREN] = ACTIONS(1882), + [anon_sym_GT_LPAREN] = ACTIONS(1882), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1882), }, [1445] = { - [sym__heredoc_body_middle] = ACTIONS(1919), - [sym__heredoc_body_end] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1921), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(1805), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1805), + [sym_regex] = ACTIONS(4147), + [anon_sym_RBRACE] = ACTIONS(4117), + [anon_sym_EQ] = ACTIONS(4133), + [anon_sym_DASH] = ACTIONS(4133), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4135), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4133), + [anon_sym_COLON_QMARK] = ACTIONS(4133), + [anon_sym_COLON_DASH] = ACTIONS(4133), + [anon_sym_PERCENT] = ACTIONS(4133), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1446] = { - [sym_concatenation] = STATE(1814), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1814), - [sym_regex] = ACTIONS(4123), - [anon_sym_RBRACE] = ACTIONS(4093), - [anon_sym_EQ] = ACTIONS(4109), - [anon_sym_DASH] = ACTIONS(4109), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4109), - [anon_sym_COLON_QMARK] = ACTIONS(4109), - [anon_sym_COLON_DASH] = ACTIONS(4109), - [anon_sym_PERCENT] = ACTIONS(4109), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4117), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1447] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4093), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1448] = { - [aux_sym_concatenation_repeat1] = STATE(1448), - [sym__simple_heredoc_body] = ACTIONS(1763), - [sym__heredoc_body_beginning] = ACTIONS(1763), - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(1767), - [ts_builtin_sym_end] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_LT_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT_LT] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym__concat] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1892), + [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(57), + [sym_word] = ACTIONS(1890), }, [1449] = { - [ts_builtin_sym_end] = ACTIONS(4125), - [anon_sym_SEMI] = ACTIONS(4127), - [anon_sym_esac] = ACTIONS(4125), - [anon_sym_PIPE] = ACTIONS(4127), - [anon_sym_RPAREN] = ACTIONS(4125), - [anon_sym_SEMI_SEMI] = ACTIONS(4125), - [anon_sym_PIPE_AMP] = ACTIONS(4125), - [anon_sym_AMP_AMP] = ACTIONS(4125), - [anon_sym_PIPE_PIPE] = ACTIONS(4125), - [anon_sym_BQUOTE] = ACTIONS(4125), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4125), - [anon_sym_AMP] = ACTIONS(4127), + [anon_sym_SEMI] = ACTIONS(4151), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_SEMI_SEMI] = ACTIONS(4153), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4153), + [anon_sym_AMP] = ACTIONS(4153), }, [1450] = { - [anon_sym_EQ] = ACTIONS(4129), - [anon_sym_PLUS_EQ] = ACTIONS(4129), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1813), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(4155), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_SEMI_SEMI] = ACTIONS(4157), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4157), + [anon_sym_AMP] = ACTIONS(4155), }, [1451] = { - [anon_sym_EQ] = ACTIONS(4131), - [anon_sym_PLUS_EQ] = ACTIONS(4131), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1813), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(4155), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_SEMI_SEMI] = ACTIONS(4157), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(4157), + [anon_sym_AMP] = ACTIONS(4155), }, [1452] = { - [sym__concat] = ACTIONS(1763), - [anon_sym_RPAREN] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1763), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(4149), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1453] = { - [aux_sym_concatenation_repeat1] = STATE(1453), - [sym__concat] = ACTIONS(4133), - [anon_sym_RPAREN] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(4159), + [anon_sym_SEMI_SEMI] = ACTIONS(4161), + [anon_sym_BQUOTE] = ACTIONS(4149), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4161), + [anon_sym_AMP] = ACTIONS(4161), }, [1454] = { - [sym__concat] = ACTIONS(1770), - [anon_sym_RPAREN] = ACTIONS(1770), - [sym__special_characters] = ACTIONS(1770), - [anon_sym_DQUOTE] = ACTIONS(1770), - [anon_sym_DOLLAR] = ACTIONS(1772), - [sym_raw_string] = ACTIONS(1770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), - [anon_sym_BQUOTE] = ACTIONS(1770), - [anon_sym_LT_LPAREN] = ACTIONS(1770), - [anon_sym_GT_LPAREN] = ACTIONS(1770), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1770), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1816), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(4163), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(4165), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(4149), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4165), + [anon_sym_AMP] = ACTIONS(4163), }, [1455] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(4136), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1816), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(4163), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(4165), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(4149), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(4165), + [anon_sym_AMP] = ACTIONS(4163), }, [1456] = { - [sym_concatenation] = STATE(1823), - [sym_string] = STATE(1822), - [sym_simple_expansion] = STATE(1822), - [sym_string_expansion] = STATE(1822), - [sym_expansion] = STATE(1822), - [sym_command_substitution] = STATE(1822), - [sym_process_substitution] = STATE(1822), - [anon_sym_RBRACE] = ACTIONS(4138), - [sym__special_characters] = ACTIONS(4140), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(4142), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4142), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(4167), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1457] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(4144), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(1924), + [anon_sym_RPAREN] = ACTIONS(1924), + [sym__special_characters] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(1924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), + [anon_sym_BQUOTE] = ACTIONS(1924), + [anon_sym_LT_LPAREN] = ACTIONS(1924), + [anon_sym_GT_LPAREN] = ACTIONS(1924), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1924), }, [1458] = { - [sym_concatenation] = STATE(1827), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1827), - [anon_sym_RBRACE] = ACTIONS(4146), - [anon_sym_EQ] = ACTIONS(4148), - [anon_sym_DASH] = ACTIONS(4148), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4150), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(4152), - [anon_sym_COLON] = ACTIONS(4148), - [anon_sym_COLON_QMARK] = ACTIONS(4148), - [anon_sym_COLON_DASH] = ACTIONS(4148), - [anon_sym_PERCENT] = ACTIONS(4148), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(4169), + [anon_sym_RPAREN] = ACTIONS(4167), + [anon_sym_SEMI_SEMI] = ACTIONS(4171), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4171), + [anon_sym_AMP] = ACTIONS(4171), }, [1459] = { - [sym_concatenation] = STATE(1829), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1829), - [anon_sym_RBRACE] = ACTIONS(4138), - [anon_sym_EQ] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4156), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(4154), - [anon_sym_COLON_QMARK] = ACTIONS(4154), - [anon_sym_COLON_DASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1820), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(4173), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(4167), + [anon_sym_SEMI_SEMI] = ACTIONS(4175), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4175), + [anon_sym_AMP] = ACTIONS(4173), }, [1460] = { - [sym__concat] = ACTIONS(1871), - [anon_sym_RPAREN] = ACTIONS(1871), - [sym__special_characters] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1871), - [anon_sym_DOLLAR] = ACTIONS(1873), - [sym_raw_string] = ACTIONS(1871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), - [anon_sym_BQUOTE] = ACTIONS(1871), - [anon_sym_LT_LPAREN] = ACTIONS(1871), - [anon_sym_GT_LPAREN] = ACTIONS(1871), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1871), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1820), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(4173), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(4167), + [anon_sym_SEMI_SEMI] = ACTIONS(4175), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(4175), + [anon_sym_AMP] = ACTIONS(4173), }, [1461] = { - [sym_concatenation] = STATE(1832), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1832), - [sym_regex] = ACTIONS(4160), - [anon_sym_RBRACE] = ACTIONS(4162), - [anon_sym_EQ] = ACTIONS(4164), - [anon_sym_DASH] = ACTIONS(4164), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4164), - [anon_sym_COLON_QMARK] = ACTIONS(4164), - [anon_sym_COLON_DASH] = ACTIONS(4164), - [anon_sym_PERCENT] = ACTIONS(4164), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(2930), + [sym__heredoc_body_beginning] = ACTIONS(2930), + [sym_file_descriptor] = ACTIONS(2930), + [sym__concat] = ACTIONS(2930), + [sym_variable_name] = ACTIONS(2930), + [ts_builtin_sym_end] = ACTIONS(2930), + [anon_sym_SEMI] = ACTIONS(2932), + [anon_sym_PIPE] = ACTIONS(2932), + [anon_sym_RPAREN] = ACTIONS(2930), + [anon_sym_SEMI_SEMI] = ACTIONS(2930), + [anon_sym_PIPE_AMP] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_PIPE_PIPE] = ACTIONS(2930), + [anon_sym_LT] = ACTIONS(2932), + [anon_sym_GT] = ACTIONS(2932), + [anon_sym_GT_GT] = ACTIONS(2930), + [anon_sym_AMP_GT] = ACTIONS(2932), + [anon_sym_AMP_GT_GT] = ACTIONS(2930), + [anon_sym_LT_AMP] = ACTIONS(2930), + [anon_sym_GT_AMP] = ACTIONS(2930), + [anon_sym_LT_LT] = ACTIONS(2932), + [anon_sym_LT_LT_DASH] = ACTIONS(2930), + [anon_sym_LT_LT_LT] = ACTIONS(2930), + [sym__special_characters] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [anon_sym_DOLLAR] = ACTIONS(2932), + [sym_raw_string] = ACTIONS(2930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2930), + [anon_sym_BQUOTE] = ACTIONS(2930), + [anon_sym_LT_LPAREN] = ACTIONS(2930), + [anon_sym_GT_LPAREN] = ACTIONS(2930), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2932), + [anon_sym_LF] = ACTIONS(2930), + [anon_sym_AMP] = ACTIONS(2932), }, [1462] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4162), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(2944), + [sym__heredoc_body_beginning] = ACTIONS(2944), + [sym_file_descriptor] = ACTIONS(2944), + [sym__concat] = ACTIONS(2944), + [sym_variable_name] = ACTIONS(2944), + [ts_builtin_sym_end] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_PIPE] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(2944), + [anon_sym_SEMI_SEMI] = ACTIONS(2944), + [anon_sym_PIPE_AMP] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_GT] = ACTIONS(2946), + [anon_sym_GT_GT] = ACTIONS(2944), + [anon_sym_AMP_GT] = ACTIONS(2946), + [anon_sym_AMP_GT_GT] = ACTIONS(2944), + [anon_sym_LT_AMP] = ACTIONS(2944), + [anon_sym_GT_AMP] = ACTIONS(2944), + [anon_sym_LT_LT] = ACTIONS(2946), + [anon_sym_LT_LT_DASH] = ACTIONS(2944), + [anon_sym_LT_LT_LT] = ACTIONS(2944), + [sym__special_characters] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_DOLLAR] = ACTIONS(2946), + [sym_raw_string] = ACTIONS(2944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2944), + [anon_sym_BQUOTE] = ACTIONS(2944), + [anon_sym_LT_LPAREN] = ACTIONS(2944), + [anon_sym_GT_LPAREN] = ACTIONS(2944), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2946), + [anon_sym_LF] = ACTIONS(2944), + [anon_sym_AMP] = ACTIONS(2946), }, [1463] = { - [sym__concat] = ACTIONS(1919), - [anon_sym_RPAREN] = ACTIONS(1919), - [sym__special_characters] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1921), - [sym_raw_string] = ACTIONS(1919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), - [anon_sym_BQUOTE] = ACTIONS(1919), - [anon_sym_LT_LPAREN] = ACTIONS(1919), - [anon_sym_GT_LPAREN] = ACTIONS(1919), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1919), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4177), + [sym_comment] = ACTIONS(57), }, [1464] = { - [sym_concatenation] = STATE(1829), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1829), - [sym_regex] = ACTIONS(4168), - [anon_sym_RBRACE] = ACTIONS(4138), - [anon_sym_EQ] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4154), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4156), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4154), - [anon_sym_COLON_QMARK] = ACTIONS(4154), - [anon_sym_COLON_DASH] = ACTIONS(4154), - [anon_sym_PERCENT] = ACTIONS(4154), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4179), + [sym_comment] = ACTIONS(57), }, [1465] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4138), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(4179), + [sym_comment] = ACTIONS(57), }, [1466] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(4170), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_concatenation] = STATE(1825), + [sym_string] = STATE(1824), + [sym_simple_expansion] = STATE(1824), + [sym_string_expansion] = STATE(1824), + [sym_expansion] = STATE(1824), + [sym_command_substitution] = STATE(1824), + [sym_process_substitution] = STATE(1824), + [anon_sym_RBRACE] = ACTIONS(4179), + [sym__special_characters] = ACTIONS(4181), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(4183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4183), }, [1467] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_RPAREN] = ACTIONS(1927), - [sym__special_characters] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1929), - [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(55), - [sym_word] = ACTIONS(1927), + [sym__simple_heredoc_body] = ACTIONS(2980), + [sym__heredoc_body_beginning] = ACTIONS(2980), + [sym_file_descriptor] = ACTIONS(2980), + [sym__concat] = ACTIONS(2980), + [sym_variable_name] = ACTIONS(2980), + [ts_builtin_sym_end] = ACTIONS(2980), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2982), + [anon_sym_RPAREN] = ACTIONS(2980), + [anon_sym_SEMI_SEMI] = ACTIONS(2980), + [anon_sym_PIPE_AMP] = ACTIONS(2980), + [anon_sym_AMP_AMP] = ACTIONS(2980), + [anon_sym_PIPE_PIPE] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_GT] = ACTIONS(2982), + [anon_sym_GT_GT] = ACTIONS(2980), + [anon_sym_AMP_GT] = ACTIONS(2982), + [anon_sym_AMP_GT_GT] = ACTIONS(2980), + [anon_sym_LT_AMP] = ACTIONS(2980), + [anon_sym_GT_AMP] = ACTIONS(2980), + [anon_sym_LT_LT] = ACTIONS(2982), + [anon_sym_LT_LT_DASH] = ACTIONS(2980), + [anon_sym_LT_LT_LT] = ACTIONS(2980), + [sym__special_characters] = ACTIONS(2980), + [anon_sym_DQUOTE] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2982), + [sym_raw_string] = ACTIONS(2980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2980), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2980), + [anon_sym_BQUOTE] = ACTIONS(2980), + [anon_sym_LT_LPAREN] = ACTIONS(2980), + [anon_sym_GT_LPAREN] = ACTIONS(2980), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2982), + [anon_sym_LF] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), }, [1468] = { - [anon_sym_SEMI] = ACTIONS(4172), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4170), - [anon_sym_SEMI_SEMI] = ACTIONS(4174), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4174), - [anon_sym_AMP] = ACTIONS(4172), + [sym_concatenation] = STATE(1828), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1828), + [sym_regex] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4189), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4189), + [anon_sym_COLON_QMARK] = ACTIONS(4189), + [anon_sym_COLON_DASH] = ACTIONS(4189), + [anon_sym_PERCENT] = ACTIONS(4189), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1469] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(4172), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4170), - [anon_sym_SEMI_SEMI] = ACTIONS(4174), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(4174), - [anon_sym_AMP] = ACTIONS(4172), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4187), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1470] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(4170), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_concatenation] = STATE(1830), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1830), + [sym_regex] = ACTIONS(4193), + [anon_sym_RBRACE] = ACTIONS(4179), + [anon_sym_EQ] = ACTIONS(4195), + [anon_sym_DASH] = ACTIONS(4195), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4195), + [anon_sym_COLON_QMARK] = ACTIONS(4195), + [anon_sym_COLON_DASH] = ACTIONS(4195), + [anon_sym_PERCENT] = ACTIONS(4195), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1471] = { - [anon_sym_SEMI] = ACTIONS(4176), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(4178), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(4170), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4178), - [anon_sym_AMP] = ACTIONS(4176), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4179), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1472] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(4176), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(4178), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(4170), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(4178), - [anon_sym_AMP] = ACTIONS(4176), + [sym_concatenation] = STATE(1832), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1832), + [anon_sym_RBRACE] = ACTIONS(4199), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4201), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4201), + [anon_sym_COLON_QMARK] = ACTIONS(4201), + [anon_sym_COLON_DASH] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1473] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(4180), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__simple_heredoc_body] = ACTIONS(3036), + [sym__heredoc_body_beginning] = ACTIONS(3036), + [sym_file_descriptor] = ACTIONS(3036), + [sym__concat] = ACTIONS(3036), + [sym_variable_name] = ACTIONS(3036), + [ts_builtin_sym_end] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_PIPE] = ACTIONS(3038), + [anon_sym_RPAREN] = ACTIONS(3036), + [anon_sym_SEMI_SEMI] = ACTIONS(3036), + [anon_sym_PIPE_AMP] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3038), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_AMP_GT] = ACTIONS(3038), + [anon_sym_AMP_GT_GT] = ACTIONS(3036), + [anon_sym_LT_AMP] = ACTIONS(3036), + [anon_sym_GT_AMP] = ACTIONS(3036), + [anon_sym_LT_LT] = ACTIONS(3038), + [anon_sym_LT_LT_DASH] = ACTIONS(3036), + [anon_sym_LT_LT_LT] = ACTIONS(3036), + [sym__special_characters] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_DOLLAR] = ACTIONS(3038), + [sym_raw_string] = ACTIONS(3036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3036), + [anon_sym_BQUOTE] = ACTIONS(3036), + [anon_sym_LT_LPAREN] = ACTIONS(3036), + [anon_sym_GT_LPAREN] = ACTIONS(3036), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3038), + [anon_sym_LF] = ACTIONS(3036), + [anon_sym_AMP] = ACTIONS(3038), }, [1474] = { - [sym__concat] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [sym__special_characters] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), - [anon_sym_BQUOTE] = ACTIONS(1959), - [anon_sym_LT_LPAREN] = ACTIONS(1959), - [anon_sym_GT_LPAREN] = ACTIONS(1959), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1959), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4199), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1475] = { - [anon_sym_SEMI] = ACTIONS(4182), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4180), - [anon_sym_SEMI_SEMI] = ACTIONS(4184), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4184), - [anon_sym_AMP] = ACTIONS(4182), + [sym_concatenation] = STATE(1830), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1830), + [anon_sym_RBRACE] = ACTIONS(4179), + [anon_sym_EQ] = ACTIONS(4195), + [anon_sym_DASH] = ACTIONS(4195), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4197), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4195), + [anon_sym_COLON_QMARK] = ACTIONS(4195), + [anon_sym_COLON_DASH] = ACTIONS(4195), + [anon_sym_PERCENT] = ACTIONS(4195), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1476] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(4182), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4180), - [anon_sym_SEMI_SEMI] = ACTIONS(4184), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(4184), - [anon_sym_AMP] = ACTIONS(4182), + [sym__simple_heredoc_body] = ACTIONS(3091), + [sym__heredoc_body_beginning] = ACTIONS(3091), + [sym_file_descriptor] = ACTIONS(3091), + [sym__concat] = ACTIONS(3091), + [sym_variable_name] = ACTIONS(3091), + [ts_builtin_sym_end] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3093), + [anon_sym_RPAREN] = ACTIONS(3091), + [anon_sym_SEMI_SEMI] = ACTIONS(3091), + [anon_sym_PIPE_AMP] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_GT] = ACTIONS(3093), + [anon_sym_GT_GT] = ACTIONS(3091), + [anon_sym_AMP_GT] = ACTIONS(3093), + [anon_sym_AMP_GT_GT] = ACTIONS(3091), + [anon_sym_LT_AMP] = ACTIONS(3091), + [anon_sym_GT_AMP] = ACTIONS(3091), + [anon_sym_LT_LT] = ACTIONS(3093), + [anon_sym_LT_LT_DASH] = ACTIONS(3091), + [anon_sym_LT_LT_LT] = ACTIONS(3091), + [sym__special_characters] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [anon_sym_DOLLAR] = ACTIONS(3093), + [sym_raw_string] = ACTIONS(3091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3091), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(3091), + [anon_sym_LT_LPAREN] = ACTIONS(3091), + [anon_sym_GT_LPAREN] = ACTIONS(3091), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3093), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3093), }, [1477] = { - [sym_file_descriptor] = ACTIONS(2959), - [sym__concat] = ACTIONS(2959), - [sym_variable_name] = ACTIONS(2959), - [ts_builtin_sym_end] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2961), - [anon_sym_RPAREN] = ACTIONS(2959), - [anon_sym_SEMI_SEMI] = ACTIONS(2959), - [anon_sym_PIPE_AMP] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_GT] = ACTIONS(2961), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_AMP_GT] = ACTIONS(2961), - [anon_sym_AMP_GT_GT] = ACTIONS(2959), - [anon_sym_LT_AMP] = ACTIONS(2959), - [anon_sym_GT_AMP] = ACTIONS(2959), - [sym__special_characters] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_DOLLAR] = ACTIONS(2961), - [sym_raw_string] = ACTIONS(2959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), - [anon_sym_BQUOTE] = ACTIONS(2959), - [anon_sym_LT_LPAREN] = ACTIONS(2959), - [anon_sym_GT_LPAREN] = ACTIONS(2959), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2961), - [anon_sym_LF] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4205), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1478] = { - [sym_file_descriptor] = ACTIONS(2973), - [sym__concat] = ACTIONS(2973), - [sym_variable_name] = ACTIONS(2973), - [ts_builtin_sym_end] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym_PIPE] = ACTIONS(2975), - [anon_sym_RPAREN] = ACTIONS(2973), - [anon_sym_SEMI_SEMI] = ACTIONS(2973), - [anon_sym_PIPE_AMP] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_GT] = ACTIONS(2975), - [anon_sym_GT_GT] = ACTIONS(2973), - [anon_sym_AMP_GT] = ACTIONS(2975), - [anon_sym_AMP_GT_GT] = ACTIONS(2973), - [anon_sym_LT_AMP] = ACTIONS(2973), - [anon_sym_GT_AMP] = ACTIONS(2973), - [sym__special_characters] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_DOLLAR] = ACTIONS(2975), - [sym_raw_string] = ACTIONS(2973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), - [anon_sym_BQUOTE] = ACTIONS(2973), - [anon_sym_LT_LPAREN] = ACTIONS(2973), - [anon_sym_GT_LPAREN] = ACTIONS(2973), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2975), - [anon_sym_LF] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2975), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(4205), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1479] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4186), - [sym_comment] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(4207), + [anon_sym_RPAREN] = ACTIONS(4205), + [anon_sym_SEMI_SEMI] = ACTIONS(4209), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4209), + [anon_sym_AMP] = ACTIONS(4209), }, [1480] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4188), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(4205), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [1481] = { - [anon_sym_RBRACE] = ACTIONS(4188), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(4205), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1482] = { - [sym_concatenation] = STATE(1843), - [sym_string] = STATE(1842), - [sym_simple_expansion] = STATE(1842), - [sym_string_expansion] = STATE(1842), - [sym_expansion] = STATE(1842), - [sym_command_substitution] = STATE(1842), - [sym_process_substitution] = STATE(1842), - [anon_sym_RBRACE] = ACTIONS(4188), - [sym__special_characters] = ACTIONS(4190), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(4192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4192), + [anon_sym_SEMI] = ACTIONS(4211), + [anon_sym_SEMI_SEMI] = ACTIONS(4213), + [anon_sym_BQUOTE] = ACTIONS(4205), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4213), + [anon_sym_AMP] = ACTIONS(4213), }, [1483] = { - [sym_file_descriptor] = ACTIONS(3009), - [sym__concat] = ACTIONS(3009), - [sym_variable_name] = ACTIONS(3009), - [ts_builtin_sym_end] = ACTIONS(3009), - [anon_sym_SEMI] = ACTIONS(3011), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_RPAREN] = ACTIONS(3009), - [anon_sym_SEMI_SEMI] = ACTIONS(3009), - [anon_sym_PIPE_AMP] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(3011), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_GT_GT] = ACTIONS(3009), - [anon_sym_AMP_GT] = ACTIONS(3011), - [anon_sym_AMP_GT_GT] = ACTIONS(3009), - [anon_sym_LT_AMP] = ACTIONS(3009), - [anon_sym_GT_AMP] = ACTIONS(3009), - [sym__special_characters] = ACTIONS(3009), - [anon_sym_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3011), - [sym_raw_string] = ACTIONS(3009), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), - [anon_sym_BQUOTE] = ACTIONS(3009), - [anon_sym_LT_LPAREN] = ACTIONS(3009), - [anon_sym_GT_LPAREN] = ACTIONS(3009), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3011), - [anon_sym_LF] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3011), + [sym__simple_heredoc_body] = ACTIONS(3121), + [sym__heredoc_body_beginning] = ACTIONS(3121), + [sym_file_descriptor] = ACTIONS(3121), + [sym__concat] = ACTIONS(3121), + [sym_variable_name] = ACTIONS(3121), + [ts_builtin_sym_end] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_PIPE] = ACTIONS(3123), + [anon_sym_RPAREN] = ACTIONS(3121), + [anon_sym_SEMI_SEMI] = ACTIONS(3121), + [anon_sym_PIPE_AMP] = ACTIONS(3121), + [anon_sym_AMP_AMP] = ACTIONS(3121), + [anon_sym_PIPE_PIPE] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(3123), + [anon_sym_GT] = ACTIONS(3123), + [anon_sym_GT_GT] = ACTIONS(3121), + [anon_sym_AMP_GT] = ACTIONS(3123), + [anon_sym_AMP_GT_GT] = ACTIONS(3121), + [anon_sym_LT_AMP] = ACTIONS(3121), + [anon_sym_GT_AMP] = ACTIONS(3121), + [anon_sym_LT_LT] = ACTIONS(3123), + [anon_sym_LT_LT_DASH] = ACTIONS(3121), + [anon_sym_LT_LT_LT] = ACTIONS(3121), + [sym__special_characters] = ACTIONS(3121), + [anon_sym_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3123), + [sym_raw_string] = ACTIONS(3121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3121), + [anon_sym_BQUOTE] = ACTIONS(3121), + [anon_sym_LT_LPAREN] = ACTIONS(3121), + [anon_sym_GT_LPAREN] = ACTIONS(3121), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3123), + [anon_sym_LF] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), }, [1484] = { - [sym_concatenation] = STATE(1846), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1846), - [sym_regex] = ACTIONS(4194), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(4198), - [anon_sym_DASH] = ACTIONS(4198), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4200), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4198), - [anon_sym_COLON_QMARK] = ACTIONS(4198), - [anon_sym_COLON_DASH] = ACTIONS(4198), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4215), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1485] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(4215), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1486] = { - [sym_concatenation] = STATE(1848), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1848), - [sym_regex] = ACTIONS(4202), - [anon_sym_RBRACE] = ACTIONS(4188), - [anon_sym_EQ] = ACTIONS(4204), - [anon_sym_DASH] = ACTIONS(4204), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4204), - [anon_sym_COLON_QMARK] = ACTIONS(4204), - [anon_sym_COLON_DASH] = ACTIONS(4204), - [anon_sym_PERCENT] = ACTIONS(4204), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(4217), + [anon_sym_RPAREN] = ACTIONS(4215), + [anon_sym_SEMI_SEMI] = ACTIONS(4219), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4219), + [anon_sym_AMP] = ACTIONS(4219), }, [1487] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4188), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_do_group] = STATE(1838), + [sym_compound_statement] = STATE(1838), + [anon_sym_do] = ACTIONS(493), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(57), }, [1488] = { - [sym_concatenation] = STATE(1850), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1850), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(4210), - [anon_sym_DASH] = ACTIONS(4210), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4212), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4210), - [anon_sym_COLON_QMARK] = ACTIONS(4210), - [anon_sym_COLON_DASH] = ACTIONS(4210), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(4221), + [sym__heredoc_body_beginning] = ACTIONS(4221), + [sym_file_descriptor] = ACTIONS(4221), + [ts_builtin_sym_end] = ACTIONS(4221), + [anon_sym_SEMI] = ACTIONS(4223), + [anon_sym_esac] = ACTIONS(4221), + [anon_sym_PIPE] = ACTIONS(4223), + [anon_sym_RPAREN] = ACTIONS(4221), + [anon_sym_SEMI_SEMI] = ACTIONS(4221), + [anon_sym_PIPE_AMP] = ACTIONS(4221), + [anon_sym_AMP_AMP] = ACTIONS(4221), + [anon_sym_PIPE_PIPE] = ACTIONS(4221), + [anon_sym_LT] = ACTIONS(4223), + [anon_sym_GT] = ACTIONS(4223), + [anon_sym_GT_GT] = ACTIONS(4221), + [anon_sym_AMP_GT] = ACTIONS(4223), + [anon_sym_AMP_GT_GT] = ACTIONS(4221), + [anon_sym_LT_AMP] = ACTIONS(4221), + [anon_sym_GT_AMP] = ACTIONS(4221), + [anon_sym_LT_LT] = ACTIONS(4223), + [anon_sym_LT_LT_DASH] = ACTIONS(4221), + [anon_sym_LT_LT_LT] = ACTIONS(4221), + [anon_sym_BQUOTE] = ACTIONS(4221), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4223), }, [1489] = { - [sym_file_descriptor] = ACTIONS(3065), - [sym__concat] = ACTIONS(3065), - [sym_variable_name] = ACTIONS(3065), - [ts_builtin_sym_end] = ACTIONS(3065), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_RPAREN] = ACTIONS(3065), - [anon_sym_SEMI_SEMI] = ACTIONS(3065), - [anon_sym_PIPE_AMP] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_PIPE_PIPE] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_GT_GT] = ACTIONS(3065), - [anon_sym_AMP_GT] = ACTIONS(3067), - [anon_sym_AMP_GT_GT] = ACTIONS(3065), - [anon_sym_LT_AMP] = ACTIONS(3065), - [anon_sym_GT_AMP] = ACTIONS(3065), - [sym__special_characters] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [anon_sym_DOLLAR] = ACTIONS(3067), - [sym_raw_string] = ACTIONS(3065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), - [anon_sym_BQUOTE] = ACTIONS(3065), - [anon_sym_LT_LPAREN] = ACTIONS(3065), - [anon_sym_GT_LPAREN] = ACTIONS(3065), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3067), - [anon_sym_LF] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), + [sym_do_group] = STATE(1838), + [sym_compound_statement] = STATE(1838), + [anon_sym_SEMI] = ACTIONS(4225), + [anon_sym_do] = ACTIONS(493), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(57), }, [1490] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4227), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(465), + [anon_sym_EQ_TILDE] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(467), + [anon_sym_EQ] = ACTIONS(469), + [anon_sym_PLUS_EQ] = ACTIONS(465), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(465), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_EQ] = ACTIONS(465), + [anon_sym_LT_EQ] = ACTIONS(465), + [anon_sym_GT_EQ] = ACTIONS(465), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(465), }, [1491] = { - [sym_concatenation] = STATE(1848), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1848), - [anon_sym_RBRACE] = ACTIONS(4188), - [anon_sym_EQ] = ACTIONS(4204), - [anon_sym_DASH] = ACTIONS(4204), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4204), - [anon_sym_COLON_QMARK] = ACTIONS(4204), - [anon_sym_COLON_DASH] = ACTIONS(4204), - [anon_sym_PERCENT] = ACTIONS(4204), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(2930), + [anon_sym_SEMI] = ACTIONS(2932), + [anon_sym_SEMI_SEMI] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_PIPE_PIPE] = ACTIONS(2930), + [anon_sym_EQ_TILDE] = ACTIONS(2930), + [anon_sym_EQ_EQ] = ACTIONS(2930), + [anon_sym_EQ] = ACTIONS(2932), + [anon_sym_PLUS_EQ] = ACTIONS(2930), + [anon_sym_LT] = ACTIONS(2932), + [anon_sym_GT] = ACTIONS(2932), + [anon_sym_BANG_EQ] = ACTIONS(2930), + [anon_sym_PLUS] = ACTIONS(2932), + [anon_sym_DASH] = ACTIONS(2932), + [anon_sym_DASH_EQ] = ACTIONS(2930), + [anon_sym_LT_EQ] = ACTIONS(2930), + [anon_sym_GT_EQ] = ACTIONS(2930), + [anon_sym_PLUS_PLUS] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2930), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2930), + [anon_sym_LF] = ACTIONS(2930), + [anon_sym_AMP] = ACTIONS(2932), }, [1492] = { - [sym_file_descriptor] = ACTIONS(3120), - [sym__concat] = ACTIONS(3120), - [sym_variable_name] = ACTIONS(3120), - [ts_builtin_sym_end] = ACTIONS(3120), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_RPAREN] = ACTIONS(3120), - [anon_sym_SEMI_SEMI] = ACTIONS(3120), - [anon_sym_PIPE_AMP] = ACTIONS(3120), - [anon_sym_AMP_AMP] = ACTIONS(3120), - [anon_sym_PIPE_PIPE] = ACTIONS(3120), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_GT] = ACTIONS(3122), - [anon_sym_GT_GT] = ACTIONS(3120), - [anon_sym_AMP_GT] = ACTIONS(3122), - [anon_sym_AMP_GT_GT] = ACTIONS(3120), - [anon_sym_LT_AMP] = ACTIONS(3120), - [anon_sym_GT_AMP] = ACTIONS(3120), - [sym__special_characters] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [sym_raw_string] = ACTIONS(3120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), - [anon_sym_BQUOTE] = ACTIONS(3120), - [anon_sym_LT_LPAREN] = ACTIONS(3120), - [anon_sym_GT_LPAREN] = ACTIONS(3120), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3122), - [anon_sym_LF] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3122), + [sym__concat] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_SEMI_SEMI] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_EQ_TILDE] = ACTIONS(2944), + [anon_sym_EQ_EQ] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2946), + [anon_sym_PLUS_EQ] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_GT] = ACTIONS(2946), + [anon_sym_BANG_EQ] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2946), + [anon_sym_DASH] = ACTIONS(2946), + [anon_sym_DASH_EQ] = ACTIONS(2944), + [anon_sym_LT_EQ] = ACTIONS(2944), + [anon_sym_GT_EQ] = ACTIONS(2944), + [anon_sym_PLUS_PLUS] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2944), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2944), + [anon_sym_LF] = ACTIONS(2944), + [anon_sym_AMP] = ACTIONS(2946), }, [1493] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(4214), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4229), + [sym_comment] = ACTIONS(57), }, [1494] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(4214), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4231), + [sym_comment] = ACTIONS(57), }, [1495] = { - [sym_file_descriptor] = ACTIONS(3158), - [sym__concat] = ACTIONS(3158), - [sym_variable_name] = ACTIONS(3158), - [ts_builtin_sym_end] = ACTIONS(3158), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_PIPE] = ACTIONS(3160), - [anon_sym_RPAREN] = ACTIONS(3158), - [anon_sym_SEMI_SEMI] = ACTIONS(3158), - [anon_sym_PIPE_AMP] = ACTIONS(3158), - [anon_sym_AMP_AMP] = ACTIONS(3158), - [anon_sym_PIPE_PIPE] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3160), - [anon_sym_GT] = ACTIONS(3160), - [anon_sym_GT_GT] = ACTIONS(3158), - [anon_sym_AMP_GT] = ACTIONS(3160), - [anon_sym_AMP_GT_GT] = ACTIONS(3158), - [anon_sym_LT_AMP] = ACTIONS(3158), - [anon_sym_GT_AMP] = ACTIONS(3158), - [sym__special_characters] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [anon_sym_DOLLAR] = ACTIONS(3160), - [sym_raw_string] = ACTIONS(3158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), - [anon_sym_BQUOTE] = ACTIONS(3158), - [anon_sym_LT_LPAREN] = ACTIONS(3158), - [anon_sym_GT_LPAREN] = ACTIONS(3158), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3160), - [anon_sym_LF] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_RBRACE] = ACTIONS(4231), + [sym_comment] = ACTIONS(57), }, [1496] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(4216), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [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(4231), + [sym__special_characters] = ACTIONS(4233), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(4235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4235), }, [1497] = { - [sym_do_group] = STATE(1853), - [sym_compound_statement] = STATE(1853), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(3350), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(2980), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_SEMI_SEMI] = ACTIONS(2980), + [anon_sym_AMP_AMP] = ACTIONS(2980), + [anon_sym_PIPE_PIPE] = ACTIONS(2980), + [anon_sym_EQ_TILDE] = ACTIONS(2980), + [anon_sym_EQ_EQ] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(2982), + [anon_sym_PLUS_EQ] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_GT] = ACTIONS(2982), + [anon_sym_BANG_EQ] = ACTIONS(2980), + [anon_sym_PLUS] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2982), + [anon_sym_DASH_EQ] = ACTIONS(2980), + [anon_sym_LT_EQ] = ACTIONS(2980), + [anon_sym_GT_EQ] = ACTIONS(2980), + [anon_sym_PLUS_PLUS] = ACTIONS(2980), + [anon_sym_DASH_DASH] = ACTIONS(2980), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2980), + [anon_sym_LF] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), }, [1498] = { - [sym__terminated_statement] = STATE(1855), - [sym_for_statement] = STATE(751), - [sym_c_style_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_if_statement] = STATE(751), - [sym_case_statement] = STATE(751), - [sym_function_definition] = STATE(751), - [sym_subshell] = STATE(751), - [sym_pipeline] = STATE(751), - [sym_list] = STATE(751), - [sym_negated_command] = STATE(751), - [sym_test_command] = STATE(751), - [sym_declaration_command] = STATE(751), - [sym_unset_command] = STATE(751), - [sym_command] = STATE(751), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(752), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(1855), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [sym_concatenation] = STATE(1848), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1848), + [sym_regex] = ACTIONS(4237), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4241), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4241), + [anon_sym_COLON_QMARK] = ACTIONS(4241), + [anon_sym_COLON_DASH] = ACTIONS(4241), + [anon_sym_PERCENT] = ACTIONS(4241), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1499] = { - [ts_builtin_sym_end] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_esac] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4222), - [anon_sym_RPAREN] = ACTIONS(4220), - [anon_sym_SEMI_SEMI] = ACTIONS(4220), - [anon_sym_PIPE_AMP] = ACTIONS(4220), - [anon_sym_AMP_AMP] = ACTIONS(4220), - [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_BQUOTE] = ACTIONS(4220), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4220), - [anon_sym_AMP] = ACTIONS(4222), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4239), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1500] = { - [sym_do_group] = STATE(1853), - [sym_compound_statement] = STATE(1853), - [anon_sym_SEMI] = ACTIONS(4224), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(3350), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(1850), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1850), + [sym_regex] = ACTIONS(4245), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4247), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4249), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_COLON_QMARK] = ACTIONS(4247), + [anon_sym_COLON_DASH] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1501] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(493), - [anon_sym_PIPE_PIPE] = ACTIONS(493), - [anon_sym_EQ_TILDE] = ACTIONS(495), - [anon_sym_EQ_EQ] = ACTIONS(495), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(493), - [anon_sym_LT] = ACTIONS(497), - [anon_sym_GT] = ACTIONS(497), - [anon_sym_BANG_EQ] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(497), - [anon_sym_DASH] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(493), - [anon_sym_LT_EQ] = ACTIONS(493), - [anon_sym_GT_EQ] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(493), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1502] = { - [sym__concat] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_esac] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2961), - [anon_sym_SEMI_SEMI] = ACTIONS(2959), - [anon_sym_PIPE_AMP] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_EQ_TILDE] = ACTIONS(2959), - [anon_sym_EQ_EQ] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(2961), - [anon_sym_PLUS_EQ] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_GT] = ACTIONS(2961), - [anon_sym_BANG_EQ] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_DASH_EQ] = ACTIONS(2959), - [anon_sym_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_EQ] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(2959), - [anon_sym_LF] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), + [sym_concatenation] = STATE(1852), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1852), + [anon_sym_RBRACE] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(4253), + [anon_sym_DASH] = ACTIONS(4253), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4255), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4253), + [anon_sym_COLON_QMARK] = ACTIONS(4253), + [anon_sym_COLON_DASH] = ACTIONS(4253), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1503] = { - [sym__concat] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym_esac] = ACTIONS(2973), - [anon_sym_PIPE] = ACTIONS(2975), - [anon_sym_SEMI_SEMI] = ACTIONS(2973), - [anon_sym_PIPE_AMP] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_EQ_TILDE] = ACTIONS(2973), - [anon_sym_EQ_EQ] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_PLUS_EQ] = ACTIONS(2973), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_GT] = ACTIONS(2975), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2975), - [anon_sym_DASH_EQ] = ACTIONS(2973), - [anon_sym_LT_EQ] = ACTIONS(2973), - [anon_sym_GT_EQ] = ACTIONS(2973), - [anon_sym_PLUS_PLUS] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2973), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(2973), - [anon_sym_LF] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2975), + [sym__concat] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_SEMI_SEMI] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [anon_sym_EQ_TILDE] = ACTIONS(3036), + [anon_sym_EQ_EQ] = ACTIONS(3036), + [anon_sym_EQ] = ACTIONS(3038), + [anon_sym_PLUS_EQ] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3038), + [anon_sym_BANG_EQ] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(3038), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym_DASH_EQ] = ACTIONS(3036), + [anon_sym_LT_EQ] = ACTIONS(3036), + [anon_sym_GT_EQ] = ACTIONS(3036), + [anon_sym_PLUS_PLUS] = ACTIONS(3036), + [anon_sym_DASH_DASH] = ACTIONS(3036), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3036), + [anon_sym_LF] = ACTIONS(3036), + [anon_sym_AMP] = ACTIONS(3038), }, [1504] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4228), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4251), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1505] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4230), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(1850), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1850), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_EQ] = ACTIONS(4247), + [anon_sym_DASH] = ACTIONS(4247), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4249), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4247), + [anon_sym_COLON_QMARK] = ACTIONS(4247), + [anon_sym_COLON_DASH] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1506] = { - [anon_sym_RBRACE] = ACTIONS(4230), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_SEMI_SEMI] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_EQ_TILDE] = ACTIONS(3091), + [anon_sym_EQ_EQ] = ACTIONS(3091), + [anon_sym_EQ] = ACTIONS(3093), + [anon_sym_PLUS_EQ] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_GT] = ACTIONS(3093), + [anon_sym_BANG_EQ] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3093), + [anon_sym_DASH_EQ] = ACTIONS(3091), + [anon_sym_LT_EQ] = ACTIONS(3091), + [anon_sym_GT_EQ] = ACTIONS(3091), + [anon_sym_PLUS_PLUS] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3091), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3091), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3093), }, [1507] = { - [sym_concatenation] = STATE(1862), - [sym_string] = STATE(1861), - [sym_simple_expansion] = STATE(1861), - [sym_string_expansion] = STATE(1861), - [sym_expansion] = STATE(1861), - [sym_command_substitution] = STATE(1861), - [sym_process_substitution] = STATE(1861), - [anon_sym_RBRACE] = ACTIONS(4230), - [sym__special_characters] = ACTIONS(4232), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(4234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4234), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4257), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1508] = { - [sym__concat] = ACTIONS(3009), - [anon_sym_SEMI] = ACTIONS(3011), - [anon_sym_esac] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_SEMI_SEMI] = ACTIONS(3009), - [anon_sym_PIPE_AMP] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3009), - [anon_sym_EQ_TILDE] = ACTIONS(3009), - [anon_sym_EQ_EQ] = ACTIONS(3009), - [anon_sym_EQ] = ACTIONS(3011), - [anon_sym_PLUS_EQ] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(3011), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_BANG_EQ] = ACTIONS(3009), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_DASH_EQ] = ACTIONS(3009), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_PLUS_PLUS] = ACTIONS(3009), - [anon_sym_DASH_DASH] = ACTIONS(3009), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3009), - [anon_sym_LF] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3011), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(4257), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1509] = { - [sym_concatenation] = STATE(1865), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1865), - [sym_regex] = ACTIONS(4236), - [anon_sym_RBRACE] = ACTIONS(4238), - [anon_sym_EQ] = ACTIONS(4240), - [anon_sym_DASH] = ACTIONS(4240), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4242), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4240), - [anon_sym_COLON_QMARK] = ACTIONS(4240), - [anon_sym_COLON_DASH] = ACTIONS(4240), - [anon_sym_PERCENT] = ACTIONS(4240), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(4259), + [anon_sym_RPAREN] = ACTIONS(4257), + [anon_sym_SEMI_SEMI] = ACTIONS(4261), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4261), + [anon_sym_AMP] = ACTIONS(4261), }, [1510] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4238), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(4257), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [1511] = { - [sym_concatenation] = STATE(1867), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1867), - [sym_regex] = ACTIONS(4244), - [anon_sym_RBRACE] = ACTIONS(4230), - [anon_sym_EQ] = ACTIONS(4246), - [anon_sym_DASH] = ACTIONS(4246), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4246), - [anon_sym_COLON_QMARK] = ACTIONS(4246), - [anon_sym_COLON_DASH] = ACTIONS(4246), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(4257), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1512] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4230), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(4263), + [anon_sym_SEMI_SEMI] = ACTIONS(4265), + [anon_sym_BQUOTE] = ACTIONS(4257), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4265), + [anon_sym_AMP] = ACTIONS(4265), }, [1513] = { - [sym_concatenation] = STATE(1869), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1869), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_EQ] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4254), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4252), - [anon_sym_COLON_QMARK] = ACTIONS(4252), - [anon_sym_COLON_DASH] = ACTIONS(4252), - [anon_sym_PERCENT] = ACTIONS(4252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_SEMI_SEMI] = ACTIONS(3121), + [anon_sym_AMP_AMP] = ACTIONS(3121), + [anon_sym_PIPE_PIPE] = ACTIONS(3121), + [anon_sym_EQ_TILDE] = ACTIONS(3121), + [anon_sym_EQ_EQ] = ACTIONS(3121), + [anon_sym_EQ] = ACTIONS(3123), + [anon_sym_PLUS_EQ] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(3123), + [anon_sym_GT] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(3121), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_DASH_EQ] = ACTIONS(3121), + [anon_sym_LT_EQ] = ACTIONS(3121), + [anon_sym_GT_EQ] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3121), + [anon_sym_LF] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), }, [1514] = { - [sym__concat] = ACTIONS(3065), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym_esac] = ACTIONS(3065), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_SEMI_SEMI] = ACTIONS(3065), - [anon_sym_PIPE_AMP] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_PIPE_PIPE] = ACTIONS(3065), - [anon_sym_EQ_TILDE] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_PLUS_EQ] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_DASH_EQ] = ACTIONS(3065), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT_EQ] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3065), - [anon_sym_LF] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4267), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1515] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4250), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(4267), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1516] = { - [sym_concatenation] = STATE(1867), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1867), - [anon_sym_RBRACE] = ACTIONS(4230), - [anon_sym_EQ] = ACTIONS(4246), - [anon_sym_DASH] = ACTIONS(4246), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4246), - [anon_sym_COLON_QMARK] = ACTIONS(4246), - [anon_sym_COLON_DASH] = ACTIONS(4246), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(4269), + [anon_sym_RPAREN] = ACTIONS(4267), + [anon_sym_SEMI_SEMI] = ACTIONS(4271), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4271), + [anon_sym_AMP] = ACTIONS(4271), }, [1517] = { - [sym__concat] = ACTIONS(3120), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_esac] = ACTIONS(3120), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_SEMI_SEMI] = ACTIONS(3120), - [anon_sym_PIPE_AMP] = ACTIONS(3120), - [anon_sym_AMP_AMP] = ACTIONS(3120), - [anon_sym_PIPE_PIPE] = ACTIONS(3120), - [anon_sym_EQ_TILDE] = ACTIONS(3120), - [anon_sym_EQ_EQ] = ACTIONS(3120), - [anon_sym_EQ] = ACTIONS(3122), - [anon_sym_PLUS_EQ] = ACTIONS(3120), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_GT] = ACTIONS(3122), - [anon_sym_BANG_EQ] = ACTIONS(3120), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_DASH_EQ] = ACTIONS(3120), - [anon_sym_LT_EQ] = ACTIONS(3120), - [anon_sym_GT_EQ] = ACTIONS(3120), - [anon_sym_PLUS_PLUS] = ACTIONS(3120), - [anon_sym_DASH_DASH] = ACTIONS(3120), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3120), - [anon_sym_LF] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3122), + [sym__expression] = STATE(1858), + [sym_binary_expression] = STATE(1858), + [sym_unary_expression] = STATE(1858), + [sym_postfix_expression] = STATE(1858), + [sym_parenthesized_expression] = STATE(1858), + [sym_concatenation] = STATE(1858), + [sym_string] = STATE(45), + [sym_simple_expansion] = STATE(45), + [sym_string_expansion] = STATE(45), + [sym_expansion] = STATE(45), + [sym_command_substitution] = STATE(45), + [sym_process_substitution] = STATE(45), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4227), + [anon_sym_LPAREN] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [sym__special_characters] = ACTIONS(77), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(81), + [sym_raw_string] = ACTIONS(83), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(85), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(87), + [anon_sym_BQUOTE] = ACTIONS(89), + [anon_sym_LT_LPAREN] = ACTIONS(91), + [anon_sym_GT_LPAREN] = ACTIONS(91), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(93), + [sym_test_operator] = ACTIONS(95), }, [1518] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(4256), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__concat] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1726), }, [1519] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(4256), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [aux_sym_concatenation_repeat1] = STATE(1519), + [sym__concat] = ACTIONS(4273), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1726), }, [1520] = { - [sym__concat] = ACTIONS(3158), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_esac] = ACTIONS(3158), - [anon_sym_PIPE] = ACTIONS(3160), - [anon_sym_SEMI_SEMI] = ACTIONS(3158), - [anon_sym_PIPE_AMP] = ACTIONS(3158), - [anon_sym_AMP_AMP] = ACTIONS(3158), - [anon_sym_PIPE_PIPE] = ACTIONS(3158), - [anon_sym_EQ_TILDE] = ACTIONS(3158), - [anon_sym_EQ_EQ] = ACTIONS(3158), - [anon_sym_EQ] = ACTIONS(3160), - [anon_sym_PLUS_EQ] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3160), - [anon_sym_GT] = ACTIONS(3160), - [anon_sym_BANG_EQ] = ACTIONS(3158), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_DASH_EQ] = ACTIONS(3158), - [anon_sym_LT_EQ] = ACTIONS(3158), - [anon_sym_GT_EQ] = ACTIONS(3158), - [anon_sym_PLUS_PLUS] = ACTIONS(3158), - [anon_sym_DASH_DASH] = ACTIONS(3158), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3158), - [anon_sym_LF] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), + [sym__concat] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1733), + [sym__special_characters] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1733), + [anon_sym_BQUOTE] = ACTIONS(1733), + [anon_sym_LT_LPAREN] = ACTIONS(1733), + [anon_sym_GT_LPAREN] = ACTIONS(1733), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1733), + [anon_sym_AMP] = ACTIONS(1733), }, [1521] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(4258), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(4276), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [1522] = { - [sym__expression] = STATE(1872), - [sym_binary_expression] = STATE(1872), - [sym_unary_expression] = STATE(1872), - [sym_postfix_expression] = STATE(1872), - [sym_parenthesized_expression] = STATE(1872), - [sym_concatenation] = STATE(1872), - [sym_string] = STATE(44), - [sym_simple_expansion] = STATE(44), - [sym_string_expansion] = STATE(44), - [sym_expansion] = STATE(44), - [sym_command_substitution] = STATE(44), - [sym_process_substitution] = STATE(44), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(73), - [sym__special_characters] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(79), - [sym_raw_string] = ACTIONS(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), - [anon_sym_BQUOTE] = ACTIONS(87), - [anon_sym_LT_LPAREN] = ACTIONS(89), - [anon_sym_GT_LPAREN] = ACTIONS(89), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(91), - [sym_test_operator] = ACTIONS(93), + [sym_concatenation] = STATE(1863), + [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), + [anon_sym_RBRACE] = ACTIONS(4278), + [sym__special_characters] = ACTIONS(4280), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(4282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4282), }, [1523] = { - [sym__concat] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(4284), + [sym_comment] = ACTIONS(57), }, [1524] = { - [aux_sym_concatenation_repeat1] = STATE(1524), - [sym__concat] = ACTIONS(4260), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1763), + [sym_concatenation] = STATE(1867), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1867), + [anon_sym_RBRACE] = ACTIONS(4286), + [anon_sym_EQ] = ACTIONS(4288), + [anon_sym_DASH] = ACTIONS(4288), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(4292), + [anon_sym_COLON] = ACTIONS(4288), + [anon_sym_COLON_QMARK] = ACTIONS(4288), + [anon_sym_COLON_DASH] = ACTIONS(4288), + [anon_sym_PERCENT] = ACTIONS(4288), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1525] = { - [sym__concat] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_SEMI_SEMI] = ACTIONS(1770), - [sym__special_characters] = ACTIONS(1770), - [anon_sym_DQUOTE] = ACTIONS(1770), - [anon_sym_DOLLAR] = ACTIONS(1772), - [sym_raw_string] = ACTIONS(1770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), - [anon_sym_BQUOTE] = ACTIONS(1770), - [anon_sym_LT_LPAREN] = ACTIONS(1770), - [anon_sym_GT_LPAREN] = ACTIONS(1770), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1772), - [anon_sym_LF] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1770), + [sym_concatenation] = STATE(1869), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1869), + [anon_sym_RBRACE] = ACTIONS(4278), + [anon_sym_EQ] = ACTIONS(4294), + [anon_sym_DASH] = ACTIONS(4294), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_COLON] = ACTIONS(4294), + [anon_sym_COLON_QMARK] = ACTIONS(4294), + [anon_sym_COLON_DASH] = ACTIONS(4294), + [anon_sym_PERCENT] = ACTIONS(4294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1526] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(4263), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [sym__concat] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_SEMI_SEMI] = ACTIONS(1834), + [sym__special_characters] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1836), + [sym_raw_string] = ACTIONS(1834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), + [anon_sym_BQUOTE] = ACTIONS(1834), + [anon_sym_LT_LPAREN] = ACTIONS(1834), + [anon_sym_GT_LPAREN] = ACTIONS(1834), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1836), + [anon_sym_LF] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1834), }, [1527] = { - [sym_concatenation] = STATE(1877), - [sym_string] = STATE(1876), - [sym_simple_expansion] = STATE(1876), - [sym_string_expansion] = STATE(1876), - [sym_expansion] = STATE(1876), - [sym_command_substitution] = STATE(1876), - [sym_process_substitution] = STATE(1876), - [anon_sym_RBRACE] = ACTIONS(4265), - [sym__special_characters] = ACTIONS(4267), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(4269), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4269), + [sym_concatenation] = STATE(1872), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1872), + [sym_regex] = ACTIONS(4300), + [anon_sym_RBRACE] = ACTIONS(4302), + [anon_sym_EQ] = ACTIONS(4304), + [anon_sym_DASH] = ACTIONS(4304), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4306), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4304), + [anon_sym_COLON_QMARK] = ACTIONS(4304), + [anon_sym_COLON_DASH] = ACTIONS(4304), + [anon_sym_PERCENT] = ACTIONS(4304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1528] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(4271), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4302), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1529] = { - [sym_concatenation] = STATE(1881), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1881), - [anon_sym_RBRACE] = ACTIONS(4273), - [anon_sym_EQ] = ACTIONS(4275), - [anon_sym_DASH] = ACTIONS(4275), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4277), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(4279), - [anon_sym_COLON] = ACTIONS(4275), - [anon_sym_COLON_QMARK] = ACTIONS(4275), - [anon_sym_COLON_DASH] = ACTIONS(4275), - [anon_sym_PERCENT] = ACTIONS(4275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1882), + [sym__special_characters] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1882), + [anon_sym_BQUOTE] = ACTIONS(1882), + [anon_sym_LT_LPAREN] = ACTIONS(1882), + [anon_sym_GT_LPAREN] = ACTIONS(1882), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1882), }, [1530] = { - [sym_concatenation] = STATE(1883), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1883), - [anon_sym_RBRACE] = ACTIONS(4265), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4283), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(4285), - [anon_sym_COLON] = ACTIONS(4281), - [anon_sym_COLON_QMARK] = ACTIONS(4281), - [anon_sym_COLON_DASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1869), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1869), + [sym_regex] = ACTIONS(4308), + [anon_sym_RBRACE] = ACTIONS(4278), + [anon_sym_EQ] = ACTIONS(4294), + [anon_sym_DASH] = ACTIONS(4294), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4296), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4294), + [anon_sym_COLON_QMARK] = ACTIONS(4294), + [anon_sym_COLON_DASH] = ACTIONS(4294), + [anon_sym_PERCENT] = ACTIONS(4294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1531] = { - [sym__concat] = ACTIONS(1871), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_SEMI_SEMI] = ACTIONS(1871), - [sym__special_characters] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1871), - [anon_sym_DOLLAR] = ACTIONS(1873), - [sym_raw_string] = ACTIONS(1871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), - [anon_sym_BQUOTE] = ACTIONS(1871), - [anon_sym_LT_LPAREN] = ACTIONS(1871), - [anon_sym_GT_LPAREN] = ACTIONS(1871), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1873), - [anon_sym_LF] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1871), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4278), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1532] = { - [sym_concatenation] = STATE(1886), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1886), - [sym_regex] = ACTIONS(4287), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_EQ] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4291), - [anon_sym_COLON_QMARK] = ACTIONS(4291), - [anon_sym_COLON_DASH] = ACTIONS(4291), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(4310), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1533] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1892), + [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(57), + [sym_word] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), }, [1534] = { - [sym__concat] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_SEMI_SEMI] = ACTIONS(1919), - [sym__special_characters] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1921), - [sym_raw_string] = ACTIONS(1919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), - [anon_sym_BQUOTE] = ACTIONS(1919), - [anon_sym_LT_LPAREN] = ACTIONS(1919), - [anon_sym_GT_LPAREN] = ACTIONS(1919), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1921), - [anon_sym_LF] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), + [anon_sym_SEMI] = ACTIONS(4312), + [anon_sym_RPAREN] = ACTIONS(4310), + [anon_sym_SEMI_SEMI] = ACTIONS(4314), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4314), + [anon_sym_AMP] = ACTIONS(4314), }, [1535] = { - [sym_concatenation] = STATE(1883), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1883), - [sym_regex] = ACTIONS(4295), - [anon_sym_RBRACE] = ACTIONS(4265), - [anon_sym_EQ] = ACTIONS(4281), - [anon_sym_DASH] = ACTIONS(4281), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4283), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4281), - [anon_sym_COLON_QMARK] = ACTIONS(4281), - [anon_sym_COLON_DASH] = ACTIONS(4281), - [anon_sym_PERCENT] = ACTIONS(4281), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1877), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(4316), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(4310), + [anon_sym_SEMI_SEMI] = ACTIONS(4318), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4318), + [anon_sym_AMP] = ACTIONS(4316), }, [1536] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4265), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1877), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(4316), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(4310), + [anon_sym_SEMI_SEMI] = ACTIONS(4318), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(4318), + [anon_sym_AMP] = ACTIONS(4316), }, [1537] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(4297), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(4310), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1538] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1927), - [sym__special_characters] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1929), - [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(55), - [sym_word] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1927), - [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(4320), + [anon_sym_SEMI_SEMI] = ACTIONS(4322), + [anon_sym_BQUOTE] = ACTIONS(4310), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4322), + [anon_sym_AMP] = ACTIONS(4322), }, [1539] = { - [anon_sym_SEMI] = ACTIONS(4299), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4297), - [anon_sym_SEMI_SEMI] = ACTIONS(4301), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4301), - [anon_sym_AMP] = ACTIONS(4299), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1880), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(4324), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(4326), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(4310), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4326), + [anon_sym_AMP] = ACTIONS(4324), }, [1540] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(4299), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4297), - [anon_sym_SEMI_SEMI] = ACTIONS(4301), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(4301), - [anon_sym_AMP] = ACTIONS(4299), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(1880), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(4324), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(4326), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(4310), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(4326), + [anon_sym_AMP] = ACTIONS(4324), }, [1541] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(4297), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(4328), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1542] = { - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(4305), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(4297), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4305), - [anon_sym_AMP] = ACTIONS(4303), + [sym__concat] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [sym__special_characters] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(1924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), + [anon_sym_BQUOTE] = ACTIONS(1924), + [anon_sym_LT_LPAREN] = ACTIONS(1924), + [anon_sym_GT_LPAREN] = ACTIONS(1924), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1926), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1924), }, [1543] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(4305), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(4297), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(4305), - [anon_sym_AMP] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4330), + [anon_sym_RPAREN] = ACTIONS(4328), + [anon_sym_SEMI_SEMI] = ACTIONS(4332), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4332), + [anon_sym_AMP] = ACTIONS(4332), }, [1544] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(4307), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1884), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(4328), + [anon_sym_SEMI_SEMI] = ACTIONS(4336), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4334), }, [1545] = { - [sym__concat] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1959), - [sym__special_characters] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), - [anon_sym_BQUOTE] = ACTIONS(1959), - [anon_sym_LT_LPAREN] = ACTIONS(1959), - [anon_sym_GT_LPAREN] = ACTIONS(1959), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(1884), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(4334), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(4328), + [anon_sym_SEMI_SEMI] = ACTIONS(4336), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4334), }, [1546] = { - [anon_sym_SEMI] = ACTIONS(4309), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4307), - [anon_sym_SEMI_SEMI] = ACTIONS(4311), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4311), - [anon_sym_AMP] = ACTIONS(4309), + [sym__simple_heredoc_body] = ACTIONS(4338), + [sym__heredoc_body_beginning] = ACTIONS(4338), + [sym_file_descriptor] = ACTIONS(4338), + [ts_builtin_sym_end] = ACTIONS(4338), + [anon_sym_SEMI] = ACTIONS(4340), + [anon_sym_esac] = ACTIONS(4338), + [anon_sym_PIPE] = ACTIONS(4340), + [anon_sym_RPAREN] = ACTIONS(4338), + [anon_sym_SEMI_SEMI] = ACTIONS(4338), + [anon_sym_PIPE_AMP] = ACTIONS(4338), + [anon_sym_AMP_AMP] = ACTIONS(4338), + [anon_sym_PIPE_PIPE] = ACTIONS(4338), + [anon_sym_LT] = ACTIONS(4340), + [anon_sym_GT] = ACTIONS(4340), + [anon_sym_GT_GT] = ACTIONS(4338), + [anon_sym_AMP_GT] = ACTIONS(4340), + [anon_sym_AMP_GT_GT] = ACTIONS(4338), + [anon_sym_LT_AMP] = ACTIONS(4338), + [anon_sym_GT_AMP] = ACTIONS(4338), + [anon_sym_LT_LT] = ACTIONS(4340), + [anon_sym_LT_LT_DASH] = ACTIONS(4338), + [anon_sym_LT_LT_LT] = ACTIONS(4338), + [anon_sym_BQUOTE] = ACTIONS(4338), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4338), + [anon_sym_AMP] = ACTIONS(4340), }, [1547] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(4309), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4307), - [anon_sym_SEMI_SEMI] = ACTIONS(4311), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(4311), - [anon_sym_AMP] = ACTIONS(4309), + [sym__concat] = ACTIONS(2930), + [anon_sym_PIPE] = ACTIONS(2932), + [anon_sym_RPAREN] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_PIPE_PIPE] = ACTIONS(2930), + [anon_sym_EQ_TILDE] = ACTIONS(2930), + [anon_sym_EQ_EQ] = ACTIONS(2930), + [anon_sym_EQ] = ACTIONS(2932), + [anon_sym_PLUS_EQ] = ACTIONS(2930), + [anon_sym_LT] = ACTIONS(2932), + [anon_sym_GT] = ACTIONS(2932), + [anon_sym_BANG_EQ] = ACTIONS(2930), + [anon_sym_PLUS] = ACTIONS(2932), + [anon_sym_DASH] = ACTIONS(2932), + [anon_sym_DASH_EQ] = ACTIONS(2930), + [anon_sym_LT_EQ] = ACTIONS(2930), + [anon_sym_GT_EQ] = ACTIONS(2930), + [anon_sym_PLUS_PLUS] = ACTIONS(2930), + [anon_sym_DASH_DASH] = ACTIONS(2930), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2930), }, [1548] = { - [ts_builtin_sym_end] = ACTIONS(4313), - [anon_sym_SEMI] = ACTIONS(4315), - [anon_sym_esac] = ACTIONS(4313), - [anon_sym_PIPE] = ACTIONS(4315), - [anon_sym_RPAREN] = ACTIONS(4313), - [anon_sym_SEMI_SEMI] = ACTIONS(4313), - [anon_sym_PIPE_AMP] = ACTIONS(4313), - [anon_sym_AMP_AMP] = ACTIONS(4313), - [anon_sym_PIPE_PIPE] = ACTIONS(4313), - [anon_sym_BQUOTE] = ACTIONS(4313), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4313), - [anon_sym_AMP] = ACTIONS(4315), + [sym__concat] = ACTIONS(2944), + [anon_sym_PIPE] = ACTIONS(2946), + [anon_sym_RPAREN] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_EQ_TILDE] = ACTIONS(2944), + [anon_sym_EQ_EQ] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2946), + [anon_sym_PLUS_EQ] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_GT] = ACTIONS(2946), + [anon_sym_BANG_EQ] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2946), + [anon_sym_DASH] = ACTIONS(2946), + [anon_sym_DASH_EQ] = ACTIONS(2944), + [anon_sym_LT_EQ] = ACTIONS(2944), + [anon_sym_GT_EQ] = ACTIONS(2944), + [anon_sym_PLUS_PLUS] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2944), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2944), }, [1549] = { - [ts_builtin_sym_end] = ACTIONS(3641), - [anon_sym_SEMI] = ACTIONS(3643), - [anon_sym_esac] = ACTIONS(3641), - [anon_sym_PIPE] = ACTIONS(3643), - [anon_sym_RPAREN] = ACTIONS(3641), - [anon_sym_SEMI_SEMI] = ACTIONS(3641), - [anon_sym_PIPE_AMP] = ACTIONS(3641), - [anon_sym_AMP_AMP] = ACTIONS(3641), - [anon_sym_PIPE_PIPE] = ACTIONS(3641), - [anon_sym_BQUOTE] = ACTIONS(3641), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3641), - [anon_sym_AMP] = ACTIONS(3643), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4342), + [sym_comment] = ACTIONS(57), }, [1550] = { - [sym__concat] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2961), - [anon_sym_RPAREN] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_EQ_TILDE] = ACTIONS(2959), - [anon_sym_EQ_EQ] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(2961), - [anon_sym_PLUS_EQ] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_GT] = ACTIONS(2961), - [anon_sym_BANG_EQ] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_DASH_EQ] = ACTIONS(2959), - [anon_sym_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_EQ] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(2959), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4344), + [sym_comment] = ACTIONS(57), }, [1551] = { - [sym__concat] = ACTIONS(2973), - [anon_sym_PIPE] = ACTIONS(2975), - [anon_sym_RPAREN] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_EQ_TILDE] = ACTIONS(2973), - [anon_sym_EQ_EQ] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_PLUS_EQ] = ACTIONS(2973), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_GT] = ACTIONS(2975), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2975), - [anon_sym_DASH_EQ] = ACTIONS(2973), - [anon_sym_LT_EQ] = ACTIONS(2973), - [anon_sym_GT_EQ] = ACTIONS(2973), - [anon_sym_PLUS_PLUS] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2973), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(2973), + [anon_sym_RBRACE] = ACTIONS(4344), + [sym_comment] = ACTIONS(57), }, [1552] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4317), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(1889), + [sym_string] = STATE(1888), + [sym_simple_expansion] = STATE(1888), + [sym_string_expansion] = STATE(1888), + [sym_expansion] = STATE(1888), + [sym_command_substitution] = STATE(1888), + [sym_process_substitution] = STATE(1888), + [anon_sym_RBRACE] = ACTIONS(4344), + [sym__special_characters] = ACTIONS(4346), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(4348), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4348), }, [1553] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4319), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(2980), + [anon_sym_PIPE] = ACTIONS(2982), + [anon_sym_RPAREN] = ACTIONS(2980), + [anon_sym_AMP_AMP] = ACTIONS(2980), + [anon_sym_PIPE_PIPE] = ACTIONS(2980), + [anon_sym_EQ_TILDE] = ACTIONS(2980), + [anon_sym_EQ_EQ] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(2982), + [anon_sym_PLUS_EQ] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_GT] = ACTIONS(2982), + [anon_sym_BANG_EQ] = ACTIONS(2980), + [anon_sym_PLUS] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2982), + [anon_sym_DASH_EQ] = ACTIONS(2980), + [anon_sym_LT_EQ] = ACTIONS(2980), + [anon_sym_GT_EQ] = ACTIONS(2980), + [anon_sym_PLUS_PLUS] = ACTIONS(2980), + [anon_sym_DASH_DASH] = ACTIONS(2980), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(2980), }, [1554] = { - [anon_sym_RBRACE] = ACTIONS(4319), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(1892), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1892), + [sym_regex] = ACTIONS(4350), + [anon_sym_RBRACE] = ACTIONS(4352), + [anon_sym_EQ] = ACTIONS(4354), + [anon_sym_DASH] = ACTIONS(4354), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4354), + [anon_sym_COLON_QMARK] = ACTIONS(4354), + [anon_sym_COLON_DASH] = ACTIONS(4354), + [anon_sym_PERCENT] = ACTIONS(4354), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1555] = { - [sym_concatenation] = STATE(1897), - [sym_string] = STATE(1896), - [sym_simple_expansion] = STATE(1896), - [sym_string_expansion] = STATE(1896), - [sym_expansion] = STATE(1896), - [sym_command_substitution] = STATE(1896), - [sym_process_substitution] = STATE(1896), - [anon_sym_RBRACE] = ACTIONS(4319), - [sym__special_characters] = ACTIONS(4321), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(4323), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4323), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4352), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1556] = { - [sym__concat] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_RPAREN] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3009), - [anon_sym_EQ_TILDE] = ACTIONS(3009), - [anon_sym_EQ_EQ] = ACTIONS(3009), - [anon_sym_EQ] = ACTIONS(3011), - [anon_sym_PLUS_EQ] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(3011), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_BANG_EQ] = ACTIONS(3009), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_DASH_EQ] = ACTIONS(3009), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_PLUS_PLUS] = ACTIONS(3009), - [anon_sym_DASH_DASH] = ACTIONS(3009), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3009), + [sym_concatenation] = STATE(1894), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1894), + [sym_regex] = ACTIONS(4358), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_DASH] = ACTIONS(4360), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4360), + [anon_sym_COLON_QMARK] = ACTIONS(4360), + [anon_sym_COLON_DASH] = ACTIONS(4360), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1557] = { - [sym_concatenation] = STATE(1900), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1900), - [sym_regex] = ACTIONS(4325), - [anon_sym_RBRACE] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(4329), - [anon_sym_DASH] = ACTIONS(4329), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4329), - [anon_sym_COLON_QMARK] = ACTIONS(4329), - [anon_sym_COLON_DASH] = ACTIONS(4329), - [anon_sym_PERCENT] = ACTIONS(4329), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1558] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1896), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1896), + [anon_sym_RBRACE] = ACTIONS(4364), + [anon_sym_EQ] = ACTIONS(4366), + [anon_sym_DASH] = ACTIONS(4366), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4366), + [anon_sym_COLON_QMARK] = ACTIONS(4366), + [anon_sym_COLON_DASH] = ACTIONS(4366), + [anon_sym_PERCENT] = ACTIONS(4366), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1559] = { - [sym_concatenation] = STATE(1902), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1902), - [sym_regex] = ACTIONS(4333), - [anon_sym_RBRACE] = ACTIONS(4319), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4335), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4337), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_COLON_QMARK] = ACTIONS(4335), - [anon_sym_COLON_DASH] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(3036), + [anon_sym_PIPE] = ACTIONS(3038), + [anon_sym_RPAREN] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [anon_sym_EQ_TILDE] = ACTIONS(3036), + [anon_sym_EQ_EQ] = ACTIONS(3036), + [anon_sym_EQ] = ACTIONS(3038), + [anon_sym_PLUS_EQ] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3038), + [anon_sym_BANG_EQ] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(3038), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym_DASH_EQ] = ACTIONS(3036), + [anon_sym_LT_EQ] = ACTIONS(3036), + [anon_sym_GT_EQ] = ACTIONS(3036), + [anon_sym_PLUS_PLUS] = ACTIONS(3036), + [anon_sym_DASH_DASH] = ACTIONS(3036), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3036), }, [1560] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4319), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4364), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1561] = { - [sym_concatenation] = STATE(1904), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1904), - [anon_sym_RBRACE] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(4341), - [anon_sym_DASH] = ACTIONS(4341), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4343), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4341), - [anon_sym_COLON_QMARK] = ACTIONS(4341), - [anon_sym_COLON_DASH] = ACTIONS(4341), - [anon_sym_PERCENT] = ACTIONS(4341), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1894), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1894), + [anon_sym_RBRACE] = ACTIONS(4344), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_DASH] = ACTIONS(4360), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4360), + [anon_sym_COLON_QMARK] = ACTIONS(4360), + [anon_sym_COLON_DASH] = ACTIONS(4360), + [anon_sym_PERCENT] = ACTIONS(4360), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1562] = { - [sym__concat] = ACTIONS(3065), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_RPAREN] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_PIPE_PIPE] = ACTIONS(3065), - [anon_sym_EQ_TILDE] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_PLUS_EQ] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_DASH_EQ] = ACTIONS(3065), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT_EQ] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3065), + [sym__concat] = ACTIONS(3091), + [anon_sym_PIPE] = ACTIONS(3093), + [anon_sym_RPAREN] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_EQ_TILDE] = ACTIONS(3091), + [anon_sym_EQ_EQ] = ACTIONS(3091), + [anon_sym_EQ] = ACTIONS(3093), + [anon_sym_PLUS_EQ] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_GT] = ACTIONS(3093), + [anon_sym_BANG_EQ] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3093), + [anon_sym_DASH_EQ] = ACTIONS(3091), + [anon_sym_LT_EQ] = ACTIONS(3091), + [anon_sym_GT_EQ] = ACTIONS(3091), + [anon_sym_PLUS_PLUS] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3091), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3091), }, [1563] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4339), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4370), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1564] = { - [sym_concatenation] = STATE(1902), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1902), - [anon_sym_RBRACE] = ACTIONS(4319), - [anon_sym_EQ] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4335), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4337), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4335), - [anon_sym_COLON_QMARK] = ACTIONS(4335), - [anon_sym_COLON_DASH] = ACTIONS(4335), - [anon_sym_PERCENT] = ACTIONS(4335), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(4370), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1565] = { - [sym__concat] = ACTIONS(3120), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_RPAREN] = ACTIONS(3120), - [anon_sym_AMP_AMP] = ACTIONS(3120), - [anon_sym_PIPE_PIPE] = ACTIONS(3120), - [anon_sym_EQ_TILDE] = ACTIONS(3120), - [anon_sym_EQ_EQ] = ACTIONS(3120), - [anon_sym_EQ] = ACTIONS(3122), - [anon_sym_PLUS_EQ] = ACTIONS(3120), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_GT] = ACTIONS(3122), - [anon_sym_BANG_EQ] = ACTIONS(3120), - [anon_sym_PLUS] = ACTIONS(3122), - [anon_sym_DASH] = ACTIONS(3122), - [anon_sym_DASH_EQ] = ACTIONS(3120), - [anon_sym_LT_EQ] = ACTIONS(3120), - [anon_sym_GT_EQ] = ACTIONS(3120), - [anon_sym_PLUS_PLUS] = ACTIONS(3120), - [anon_sym_DASH_DASH] = ACTIONS(3120), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3120), + [anon_sym_SEMI] = ACTIONS(4372), + [anon_sym_RPAREN] = ACTIONS(4370), + [anon_sym_SEMI_SEMI] = ACTIONS(4374), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), }, [1566] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(4345), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(4370), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [1567] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(4345), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(4370), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1568] = { - [sym__concat] = ACTIONS(3158), - [anon_sym_PIPE] = ACTIONS(3160), - [anon_sym_RPAREN] = ACTIONS(3158), - [anon_sym_AMP_AMP] = ACTIONS(3158), - [anon_sym_PIPE_PIPE] = ACTIONS(3158), - [anon_sym_EQ_TILDE] = ACTIONS(3158), - [anon_sym_EQ_EQ] = ACTIONS(3158), - [anon_sym_EQ] = ACTIONS(3160), - [anon_sym_PLUS_EQ] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3160), - [anon_sym_GT] = ACTIONS(3160), - [anon_sym_BANG_EQ] = ACTIONS(3158), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_DASH_EQ] = ACTIONS(3158), - [anon_sym_LT_EQ] = ACTIONS(3158), - [anon_sym_GT_EQ] = ACTIONS(3158), - [anon_sym_PLUS_PLUS] = ACTIONS(3158), - [anon_sym_DASH_DASH] = ACTIONS(3158), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3158), + [anon_sym_SEMI] = ACTIONS(4376), + [anon_sym_SEMI_SEMI] = ACTIONS(4378), + [anon_sym_BQUOTE] = ACTIONS(4370), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4378), + [anon_sym_AMP] = ACTIONS(4378), }, [1569] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(4347), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__concat] = ACTIONS(3121), + [anon_sym_PIPE] = ACTIONS(3123), + [anon_sym_RPAREN] = ACTIONS(3121), + [anon_sym_AMP_AMP] = ACTIONS(3121), + [anon_sym_PIPE_PIPE] = ACTIONS(3121), + [anon_sym_EQ_TILDE] = ACTIONS(3121), + [anon_sym_EQ_EQ] = ACTIONS(3121), + [anon_sym_EQ] = ACTIONS(3123), + [anon_sym_PLUS_EQ] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(3123), + [anon_sym_GT] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(3121), + [anon_sym_PLUS] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3123), + [anon_sym_DASH_EQ] = ACTIONS(3121), + [anon_sym_LT_EQ] = ACTIONS(3121), + [anon_sym_GT_EQ] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3121), }, [1570] = { - [sym__concat] = ACTIONS(3934), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3934), - [anon_sym_EQ_TILDE] = ACTIONS(3934), - [anon_sym_EQ_EQ] = ACTIONS(3934), - [anon_sym_EQ] = ACTIONS(3936), - [anon_sym_PLUS_EQ] = ACTIONS(3934), - [anon_sym_LT] = ACTIONS(3936), - [anon_sym_GT] = ACTIONS(3936), - [anon_sym_BANG_EQ] = ACTIONS(3934), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_DASH_EQ] = ACTIONS(3934), - [anon_sym_LT_EQ] = ACTIONS(3934), - [anon_sym_GT_EQ] = ACTIONS(3934), - [anon_sym_PLUS_PLUS] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(3934), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3934), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4380), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1571] = { - [sym__concat] = ACTIONS(3942), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3942), - [anon_sym_AMP_AMP] = ACTIONS(3942), - [anon_sym_PIPE_PIPE] = ACTIONS(3942), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3942), - [anon_sym_EQ_TILDE] = ACTIONS(3942), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ] = ACTIONS(3944), - [anon_sym_PLUS_EQ] = ACTIONS(3942), - [anon_sym_LT] = ACTIONS(3944), - [anon_sym_GT] = ACTIONS(3944), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_PLUS] = ACTIONS(3944), - [anon_sym_DASH] = ACTIONS(3944), - [anon_sym_DASH_EQ] = ACTIONS(3942), - [anon_sym_LT_EQ] = ACTIONS(3942), - [anon_sym_GT_EQ] = ACTIONS(3942), - [anon_sym_PLUS_PLUS] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(3942), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3942), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(4380), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1572] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4349), - [sym_comment] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(4382), + [anon_sym_RPAREN] = ACTIONS(4380), + [anon_sym_SEMI_SEMI] = ACTIONS(4384), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4384), + [anon_sym_AMP] = ACTIONS(4384), }, [1573] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4351), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(3921), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3921), + [anon_sym_EQ_TILDE] = ACTIONS(3921), + [anon_sym_EQ_EQ] = ACTIONS(3921), + [anon_sym_EQ] = ACTIONS(3923), + [anon_sym_PLUS_EQ] = ACTIONS(3921), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_GT] = ACTIONS(3923), + [anon_sym_BANG_EQ] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3923), + [anon_sym_DASH] = ACTIONS(3923), + [anon_sym_DASH_EQ] = ACTIONS(3921), + [anon_sym_LT_EQ] = ACTIONS(3921), + [anon_sym_GT_EQ] = ACTIONS(3921), + [anon_sym_PLUS_PLUS] = ACTIONS(3921), + [anon_sym_DASH_DASH] = ACTIONS(3921), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3921), }, [1574] = { - [anon_sym_RBRACE] = ACTIONS(4351), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(3929), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3929), + [anon_sym_EQ_TILDE] = ACTIONS(3929), + [anon_sym_EQ_EQ] = ACTIONS(3929), + [anon_sym_EQ] = ACTIONS(3931), + [anon_sym_PLUS_EQ] = ACTIONS(3929), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_GT] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_DASH_EQ] = ACTIONS(3929), + [anon_sym_LT_EQ] = ACTIONS(3929), + [anon_sym_GT_EQ] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3929), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3929), }, [1575] = { - [sym_concatenation] = STATE(1910), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1910), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_EQ] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4355), - [anon_sym_COLON_QMARK] = ACTIONS(4355), - [anon_sym_COLON_DASH] = ACTIONS(4355), - [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4386), + [sym_comment] = ACTIONS(57), }, [1576] = { - [sym__concat] = ACTIONS(3998), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3998), - [anon_sym_AMP_AMP] = ACTIONS(3998), - [anon_sym_PIPE_PIPE] = ACTIONS(3998), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3998), - [anon_sym_EQ_TILDE] = ACTIONS(3998), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ] = ACTIONS(4000), - [anon_sym_PLUS_EQ] = ACTIONS(3998), - [anon_sym_LT] = ACTIONS(4000), - [anon_sym_GT] = ACTIONS(4000), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_PLUS] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_DASH_EQ] = ACTIONS(3998), - [anon_sym_LT_EQ] = ACTIONS(3998), - [anon_sym_GT_EQ] = ACTIONS(3998), - [anon_sym_PLUS_PLUS] = ACTIONS(3998), - [anon_sym_DASH_DASH] = ACTIONS(3998), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3998), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4388), + [sym_comment] = ACTIONS(57), }, [1577] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(4388), + [sym_comment] = ACTIONS(57), }, [1578] = { - [sym_concatenation] = STATE(1911), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1911), - [anon_sym_RBRACE] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4359), - [anon_sym_DASH] = ACTIONS(4359), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4361), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4359), - [anon_sym_COLON_QMARK] = ACTIONS(4359), - [anon_sym_COLON_DASH] = ACTIONS(4359), - [anon_sym_PERCENT] = ACTIONS(4359), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1905), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1905), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_EQ] = ACTIONS(4392), + [anon_sym_DASH] = ACTIONS(4392), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4392), + [anon_sym_COLON_QMARK] = ACTIONS(4392), + [anon_sym_COLON_DASH] = ACTIONS(4392), + [anon_sym_PERCENT] = ACTIONS(4392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1579] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(3985), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3985), + [anon_sym_EQ_TILDE] = ACTIONS(3985), + [anon_sym_EQ_EQ] = ACTIONS(3985), + [anon_sym_EQ] = ACTIONS(3987), + [anon_sym_PLUS_EQ] = ACTIONS(3985), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_BANG_EQ] = ACTIONS(3985), + [anon_sym_PLUS] = ACTIONS(3987), + [anon_sym_DASH] = ACTIONS(3987), + [anon_sym_DASH_EQ] = ACTIONS(3985), + [anon_sym_LT_EQ] = ACTIONS(3985), + [anon_sym_GT_EQ] = ACTIONS(3985), + [anon_sym_PLUS_PLUS] = ACTIONS(3985), + [anon_sym_DASH_DASH] = ACTIONS(3985), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3985), }, [1580] = { - [sym__concat] = ACTIONS(4043), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4043), - [anon_sym_EQ_TILDE] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4043), - [anon_sym_EQ] = ACTIONS(4045), - [anon_sym_PLUS_EQ] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4045), - [anon_sym_GT] = ACTIONS(4045), - [anon_sym_BANG_EQ] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4045), - [anon_sym_DASH] = ACTIONS(4045), - [anon_sym_DASH_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4043), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1581] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4363), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1906), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1906), + [anon_sym_RBRACE] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4396), + [anon_sym_COLON_QMARK] = ACTIONS(4396), + [anon_sym_COLON_DASH] = ACTIONS(4396), + [anon_sym_PERCENT] = ACTIONS(4396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1582] = { - [sym__concat] = ACTIONS(4065), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4065), - [anon_sym_AMP_AMP] = ACTIONS(4065), - [anon_sym_PIPE_PIPE] = ACTIONS(4065), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4065), - [anon_sym_EQ_TILDE] = ACTIONS(4065), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4065), - [anon_sym_LT] = ACTIONS(4067), - [anon_sym_GT] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_PLUS] = ACTIONS(4067), - [anon_sym_DASH] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4065), - [anon_sym_LT_EQ] = ACTIONS(4065), - [anon_sym_GT_EQ] = ACTIONS(4065), - [anon_sym_PLUS_PLUS] = ACTIONS(4065), - [anon_sym_DASH_DASH] = ACTIONS(4065), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4065), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1583] = { - [sym__concat] = ACTIONS(4089), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4089), - [anon_sym_AMP_AMP] = ACTIONS(4089), - [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4089), - [anon_sym_EQ_TILDE] = ACTIONS(4089), - [anon_sym_EQ_EQ] = ACTIONS(4089), - [anon_sym_EQ] = ACTIONS(4091), - [anon_sym_PLUS_EQ] = ACTIONS(4089), - [anon_sym_LT] = ACTIONS(4091), - [anon_sym_GT] = ACTIONS(4091), - [anon_sym_BANG_EQ] = ACTIONS(4089), - [anon_sym_PLUS] = ACTIONS(4091), - [anon_sym_DASH] = ACTIONS(4091), - [anon_sym_DASH_EQ] = ACTIONS(4089), - [anon_sym_LT_EQ] = ACTIONS(4089), - [anon_sym_GT_EQ] = ACTIONS(4089), - [anon_sym_PLUS_PLUS] = ACTIONS(4089), - [anon_sym_DASH_DASH] = ACTIONS(4089), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4089), + [sym__concat] = ACTIONS(4030), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4030), + [anon_sym_EQ_TILDE] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4032), + [anon_sym_PLUS_EQ] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4032), + [anon_sym_GT] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_DASH_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4030), + [anon_sym_DASH_DASH] = ACTIONS(4030), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4030), }, [1584] = { - [aux_sym_concatenation_repeat1] = STATE(1588), - [sym_file_descriptor] = ACTIONS(1088), - [sym__concat] = ACTIONS(3579), - [ts_builtin_sym_end] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1090), - [anon_sym_SEMI_SEMI] = ACTIONS(1088), - [anon_sym_PIPE_AMP] = ACTIONS(1088), - [anon_sym_AMP_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1088), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(1090), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_AMP_GT] = ACTIONS(1090), - [anon_sym_AMP_GT_GT] = ACTIONS(1088), - [anon_sym_LT_AMP] = ACTIONS(1088), - [anon_sym_GT_AMP] = ACTIONS(1088), - [anon_sym_LT_LT] = ACTIONS(1090), - [anon_sym_LT_LT_DASH] = ACTIONS(1088), - [anon_sym_LT_LT_LT] = ACTIONS(1088), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4400), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1585] = { - [aux_sym_concatenation_repeat1] = STATE(1588), - [sym_file_descriptor] = ACTIONS(1092), - [sym__concat] = ACTIONS(3579), - [ts_builtin_sym_end] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_SEMI_SEMI] = ACTIONS(1092), - [anon_sym_PIPE_AMP] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_LT] = ACTIONS(1094), - [anon_sym_GT] = ACTIONS(1094), - [anon_sym_GT_GT] = ACTIONS(1092), - [anon_sym_AMP_GT] = ACTIONS(1094), - [anon_sym_AMP_GT_GT] = ACTIONS(1092), - [anon_sym_LT_AMP] = ACTIONS(1092), - [anon_sym_GT_AMP] = ACTIONS(1092), - [anon_sym_LT_LT] = ACTIONS(1094), - [anon_sym_LT_LT_DASH] = ACTIONS(1092), - [anon_sym_LT_LT_LT] = ACTIONS(1092), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1092), - [anon_sym_AMP] = ACTIONS(1094), + [sym__concat] = ACTIONS(4064), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4064), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_PIPE_PIPE] = ACTIONS(4064), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4064), + [anon_sym_EQ_TILDE] = ACTIONS(4064), + [anon_sym_EQ_EQ] = ACTIONS(4064), + [anon_sym_EQ] = ACTIONS(4066), + [anon_sym_PLUS_EQ] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(4066), + [anon_sym_GT] = ACTIONS(4066), + [anon_sym_BANG_EQ] = ACTIONS(4064), + [anon_sym_PLUS] = ACTIONS(4066), + [anon_sym_DASH] = ACTIONS(4066), + [anon_sym_DASH_EQ] = ACTIONS(4064), + [anon_sym_LT_EQ] = ACTIONS(4064), + [anon_sym_GT_EQ] = ACTIONS(4064), + [anon_sym_PLUS_PLUS] = ACTIONS(4064), + [anon_sym_DASH_DASH] = ACTIONS(4064), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4064), }, [1586] = { - [sym_file_descriptor] = ACTIONS(1092), - [ts_builtin_sym_end] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_esac] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_RPAREN] = ACTIONS(1092), - [anon_sym_SEMI_SEMI] = ACTIONS(1092), - [anon_sym_PIPE_AMP] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_LT] = ACTIONS(1094), - [anon_sym_GT] = ACTIONS(1094), - [anon_sym_GT_GT] = ACTIONS(1092), - [anon_sym_AMP_GT] = ACTIONS(1094), - [anon_sym_AMP_GT_GT] = ACTIONS(1092), - [anon_sym_LT_AMP] = ACTIONS(1092), - [anon_sym_GT_AMP] = ACTIONS(1092), - [anon_sym_LT_LT] = ACTIONS(1094), - [anon_sym_LT_LT_DASH] = ACTIONS(1092), - [anon_sym_LT_LT_LT] = ACTIONS(1092), - [anon_sym_BQUOTE] = ACTIONS(1092), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1092), - [anon_sym_AMP] = ACTIONS(1094), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4402), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1587] = { + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(4402), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), + }, + [1588] = { + [sym__concat] = ACTIONS(4070), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_PIPE_PIPE] = ACTIONS(4070), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4070), + [anon_sym_EQ_TILDE] = ACTIONS(4070), + [anon_sym_EQ_EQ] = ACTIONS(4070), + [anon_sym_EQ] = ACTIONS(4072), + [anon_sym_PLUS_EQ] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4072), + [anon_sym_GT] = ACTIONS(4072), + [anon_sym_BANG_EQ] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4072), + [anon_sym_DASH] = ACTIONS(4072), + [anon_sym_DASH_EQ] = ACTIONS(4070), + [anon_sym_LT_EQ] = ACTIONS(4070), + [anon_sym_GT_EQ] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4070), + }, + [1589] = { + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4404), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), + }, + [1590] = { + [aux_sym_concatenation_repeat1] = STATE(1590), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(3268), + [sym_variable_name] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), + }, + [1591] = { + [aux_sym_concatenation_repeat1] = STATE(1591), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), + }, + [1592] = { + [sym__terminated_statement] = STATE(1910), + [sym_redirected_statement] = STATE(524), + [sym_for_statement] = STATE(524), + [sym_c_style_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_compound_statement] = STATE(524), + [sym_subshell] = STATE(524), + [sym_pipeline] = STATE(524), + [sym_list] = STATE(524), + [sym_negated_command] = STATE(524), + [sym_test_command] = STATE(524), + [sym_declaration_command] = STATE(524), + [sym_unset_command] = STATE(524), + [sym_command] = STATE(524), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(525), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(1910), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_fi] = ACTIONS(4406), + [anon_sym_elif] = ACTIONS(4406), + [anon_sym_else] = ACTIONS(4406), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_typeset] = ACTIONS(101), + [anon_sym_export] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_local] = ACTIONS(101), + [anon_sym_unset] = ACTIONS(103), + [anon_sym_unsetenv] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), + }, + [1593] = { + [sym__terminated_statement] = STATE(1593), + [sym_redirected_statement] = STATE(524), + [sym_for_statement] = STATE(524), + [sym_c_style_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_compound_statement] = STATE(524), + [sym_subshell] = STATE(524), + [sym_pipeline] = STATE(524), + [sym_list] = STATE(524), + [sym_negated_command] = STATE(524), + [sym_test_command] = STATE(524), + [sym_declaration_command] = STATE(524), + [sym_unset_command] = STATE(524), + [sym_command] = STATE(524), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(525), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(1593), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(973), + [sym_variable_name] = ACTIONS(976), + [anon_sym_for] = ACTIONS(979), + [anon_sym_LPAREN_LPAREN] = ACTIONS(982), + [anon_sym_while] = ACTIONS(985), + [anon_sym_if] = ACTIONS(988), + [anon_sym_fi] = ACTIONS(3596), + [anon_sym_case] = ACTIONS(991), + [anon_sym_function] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(997), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1009), + [anon_sym_declare] = ACTIONS(1012), + [anon_sym_typeset] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1012), + [anon_sym_readonly] = ACTIONS(1012), + [anon_sym_local] = ACTIONS(1012), + [anon_sym_unset] = ACTIONS(1015), + [anon_sym_unsetenv] = ACTIONS(1015), + [anon_sym_LT] = ACTIONS(1018), + [anon_sym_GT] = ACTIONS(1018), + [anon_sym_GT_GT] = ACTIONS(1021), + [anon_sym_AMP_GT] = ACTIONS(1018), + [anon_sym_AMP_GT_GT] = ACTIONS(1021), + [anon_sym_LT_AMP] = ACTIONS(1021), + [anon_sym_GT_AMP] = ACTIONS(1021), + [sym__special_characters] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1027), + [anon_sym_DOLLAR] = ACTIONS(1030), + [sym_raw_string] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), + [anon_sym_BQUOTE] = ACTIONS(1042), + [anon_sym_LT_LPAREN] = ACTIONS(1045), + [anon_sym_GT_LPAREN] = ACTIONS(1045), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1048), + }, + [1594] = { + [sym__simple_heredoc_body] = ACTIONS(4408), + [sym__heredoc_body_beginning] = ACTIONS(4408), + [sym_file_descriptor] = ACTIONS(4408), + [ts_builtin_sym_end] = ACTIONS(4408), + [anon_sym_SEMI] = ACTIONS(4410), + [anon_sym_esac] = ACTIONS(4408), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_RPAREN] = ACTIONS(4408), + [anon_sym_SEMI_SEMI] = ACTIONS(4408), + [anon_sym_PIPE_AMP] = ACTIONS(4408), + [anon_sym_AMP_AMP] = ACTIONS(4408), + [anon_sym_PIPE_PIPE] = ACTIONS(4408), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_GT] = ACTIONS(4408), + [anon_sym_AMP_GT] = ACTIONS(4410), + [anon_sym_AMP_GT_GT] = ACTIONS(4408), + [anon_sym_LT_AMP] = ACTIONS(4408), + [anon_sym_GT_AMP] = ACTIONS(4408), + [anon_sym_LT_LT] = ACTIONS(4410), + [anon_sym_LT_LT_DASH] = ACTIONS(4408), + [anon_sym_LT_LT_LT] = ACTIONS(4408), + [anon_sym_BQUOTE] = ACTIONS(4408), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4408), + [anon_sym_AMP] = ACTIONS(4410), + }, + [1595] = { + [anon_sym_fi] = ACTIONS(4412), + [sym_comment] = ACTIONS(57), + }, + [1596] = { + [sym_concatenation] = STATE(1914), [sym_string] = STATE(1913), [sym_simple_expansion] = STATE(1913), [sym_string_expansion] = STATE(1913), [sym_expansion] = STATE(1913), [sym_command_substitution] = STATE(1913), [sym_process_substitution] = STATE(1913), - [sym__special_characters] = ACTIONS(4365), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(4365), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2406), - [anon_sym_LT_LPAREN] = ACTIONS(2408), - [anon_sym_GT_LPAREN] = ACTIONS(2408), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4365), - }, - [1588] = { - [aux_sym_concatenation_repeat1] = STATE(1914), - [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(3579), - [ts_builtin_sym_end] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(809), - [anon_sym_AMP_GT_GT] = ACTIONS(807), - [anon_sym_LT_AMP] = ACTIONS(807), - [anon_sym_GT_AMP] = ACTIONS(807), - [anon_sym_LT_LT] = ACTIONS(809), - [anon_sym_LT_LT_DASH] = ACTIONS(807), - [anon_sym_LT_LT_LT] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), - }, - [1589] = { - [sym_file_descriptor] = ACTIONS(811), - [sym__concat] = ACTIONS(811), - [ts_builtin_sym_end] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(813), - [anon_sym_esac] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(813), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_AMP_GT] = ACTIONS(813), - [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_LT_AMP] = ACTIONS(811), - [anon_sym_GT_AMP] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(813), - [anon_sym_LT_LT_DASH] = ACTIONS(811), - [anon_sym_LT_LT_LT] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(811), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(813), - }, - [1590] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(4367), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), - }, - [1591] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(473), - [anon_sym_DQUOTE] = ACTIONS(4367), - [anon_sym_DOLLAR] = ACTIONS(4369), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), - }, - [1592] = { - [sym_file_descriptor] = ACTIONS(845), - [sym__concat] = ACTIONS(845), - [ts_builtin_sym_end] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_esac] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_SEMI_SEMI] = ACTIONS(845), - [anon_sym_PIPE_AMP] = ACTIONS(845), - [anon_sym_AMP_AMP] = ACTIONS(845), - [anon_sym_PIPE_PIPE] = ACTIONS(845), - [anon_sym_LT] = ACTIONS(847), - [anon_sym_GT] = ACTIONS(847), - [anon_sym_GT_GT] = ACTIONS(845), - [anon_sym_AMP_GT] = ACTIONS(847), - [anon_sym_AMP_GT_GT] = ACTIONS(845), - [anon_sym_LT_AMP] = ACTIONS(845), - [anon_sym_GT_AMP] = ACTIONS(845), - [anon_sym_LT_LT] = ACTIONS(847), - [anon_sym_LT_LT_DASH] = ACTIONS(845), - [anon_sym_LT_LT_LT] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(845), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(845), - [anon_sym_AMP] = ACTIONS(847), - }, - [1593] = { - [sym_file_descriptor] = ACTIONS(849), - [sym__concat] = ACTIONS(849), - [ts_builtin_sym_end] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_esac] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_SEMI_SEMI] = ACTIONS(849), - [anon_sym_PIPE_AMP] = ACTIONS(849), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(851), - [anon_sym_GT_GT] = ACTIONS(849), - [anon_sym_AMP_GT] = ACTIONS(851), - [anon_sym_AMP_GT_GT] = ACTIONS(849), - [anon_sym_LT_AMP] = ACTIONS(849), - [anon_sym_GT_AMP] = ACTIONS(849), - [anon_sym_LT_LT] = ACTIONS(851), - [anon_sym_LT_LT_DASH] = ACTIONS(849), - [anon_sym_LT_LT_LT] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(849), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(851), - }, - [1594] = { - [sym_file_descriptor] = ACTIONS(853), - [sym__concat] = ACTIONS(853), - [ts_builtin_sym_end] = ACTIONS(853), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_esac] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(855), - [anon_sym_RPAREN] = ACTIONS(853), - [anon_sym_SEMI_SEMI] = ACTIONS(853), - [anon_sym_PIPE_AMP] = ACTIONS(853), - [anon_sym_AMP_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(853), - [anon_sym_LT] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(855), - [anon_sym_GT_GT] = ACTIONS(853), - [anon_sym_AMP_GT] = ACTIONS(855), - [anon_sym_AMP_GT_GT] = ACTIONS(853), - [anon_sym_LT_AMP] = ACTIONS(853), - [anon_sym_GT_AMP] = ACTIONS(853), - [anon_sym_LT_LT] = ACTIONS(855), - [anon_sym_LT_LT_DASH] = ACTIONS(853), - [anon_sym_LT_LT_LT] = ACTIONS(853), - [anon_sym_BQUOTE] = ACTIONS(853), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(855), - }, - [1595] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(4371), - [sym_comment] = ACTIONS(55), - }, - [1596] = { - [sym_subscript] = STATE(1920), - [sym_variable_name] = ACTIONS(4373), - [anon_sym_DASH] = ACTIONS(4375), - [anon_sym_DOLLAR] = ACTIONS(4375), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4379), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_QMARK] = ACTIONS(4379), - [anon_sym_0] = ACTIONS(4377), - [anon_sym__] = ACTIONS(4377), + [sym__special_characters] = ACTIONS(4414), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(415), + [sym_raw_string] = ACTIONS(4416), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4416), }, [1597] = { - [sym_concatenation] = STATE(1923), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1923), - [anon_sym_RBRACE] = ACTIONS(4381), - [anon_sym_EQ] = ACTIONS(4383), - [anon_sym_DASH] = ACTIONS(4383), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4385), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(4387), - [anon_sym_COLON] = ACTIONS(4383), - [anon_sym_COLON_QMARK] = ACTIONS(4383), - [anon_sym_COLON_DASH] = ACTIONS(4383), - [anon_sym_PERCENT] = ACTIONS(4383), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [1598] = { - [sym_concatenation] = STATE(1926), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1926), - [anon_sym_RBRACE] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4393), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(4395), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_COLON_QMARK] = ACTIONS(4391), - [anon_sym_COLON_DASH] = ACTIONS(4391), - [anon_sym_PERCENT] = ACTIONS(4391), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [1599] = { - [anon_sym_SEMI] = ACTIONS(4397), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4399), - [anon_sym_SEMI_SEMI] = ACTIONS(4401), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4397), - }, - [1600] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(4397), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4399), - [anon_sym_SEMI_SEMI] = ACTIONS(4401), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(4401), - [anon_sym_AMP] = ACTIONS(4397), - }, - [1601] = { - [sym__terminated_statement] = STATE(198), + [sym__terminated_statement] = STATE(1934), + [sym_redirected_statement] = STATE(1929), [sym_for_statement] = STATE(1929), [sym_c_style_for_statement] = STATE(1929), [sym_while_statement] = STATE(1929), [sym_if_statement] = STATE(1929), [sym_case_statement] = STATE(1929), [sym_function_definition] = STATE(1929), + [sym_compound_statement] = STATE(1929), [sym_subshell] = STATE(1929), [sym_pipeline] = STATE(1929), [sym_list] = STATE(1929), @@ -50469,3850 +54354,4902 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1929), [sym_unset_command] = STATE(1929), [sym_command] = STATE(1929), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(1930), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), + [sym_command_name] = STATE(1930), + [sym_variable_assignment] = STATE(1931), + [sym_subscript] = STATE(1932), + [sym_file_redirect] = STATE(1935), + [sym_concatenation] = STATE(1933), + [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), + [aux_sym__statements_repeat1] = STATE(1934), + [aux_sym_command_repeat1] = STATE(1935), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), + [sym_variable_name] = ACTIONS(4418), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), + [anon_sym_esac] = ACTIONS(4420), + [anon_sym_SEMI_SEMI] = ACTIONS(4422), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(4426), + [anon_sym_typeset] = ACTIONS(4426), + [anon_sym_export] = ACTIONS(4426), + [anon_sym_readonly] = ACTIONS(4426), + [anon_sym_local] = ACTIONS(4426), + [anon_sym_unset] = ACTIONS(4428), + [anon_sym_unsetenv] = ACTIONS(4428), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(4430), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_DOLLAR] = ACTIONS(4434), + [sym_raw_string] = ACTIONS(4436), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4440), + [anon_sym_BQUOTE] = ACTIONS(4442), + [anon_sym_LT_LPAREN] = ACTIONS(4444), + [anon_sym_GT_LPAREN] = ACTIONS(4444), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4446), + }, + [1598] = { + [aux_sym_case_item_repeat1] = STATE(1937), + [anon_sym_PIPE] = ACTIONS(3617), + [anon_sym_RPAREN] = ACTIONS(4448), + [sym_comment] = ACTIONS(57), + }, + [1599] = { + [aux_sym_concatenation_repeat1] = STATE(1938), + [sym__concat] = ACTIONS(1191), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + }, + [1600] = { + [sym__terminated_statement] = STATE(1942), + [sym_redirected_statement] = STATE(1940), + [sym_for_statement] = STATE(1940), + [sym_c_style_for_statement] = STATE(1940), + [sym_while_statement] = STATE(1940), + [sym_if_statement] = STATE(1940), + [sym_case_statement] = STATE(1940), + [sym_function_definition] = STATE(1940), + [sym_compound_statement] = STATE(1940), + [sym_subshell] = STATE(1940), + [sym_pipeline] = STATE(1940), + [sym_list] = STATE(1940), + [sym_negated_command] = STATE(1940), + [sym_test_command] = STATE(1940), + [sym_declaration_command] = STATE(1940), + [sym_unset_command] = STATE(1940), + [sym_command] = STATE(1940), + [sym_command_name] = STATE(1930), + [sym_variable_assignment] = STATE(1941), + [sym_subscript] = STATE(1932), + [sym_file_redirect] = STATE(1935), + [sym_concatenation] = STATE(1933), + [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), + [aux_sym__statements_repeat1] = STATE(1942), + [aux_sym_command_repeat1] = STATE(1935), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4418), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_esac] = ACTIONS(4450), + [anon_sym_SEMI_SEMI] = ACTIONS(4452), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(4426), + [anon_sym_typeset] = ACTIONS(4426), + [anon_sym_export] = ACTIONS(4426), + [anon_sym_readonly] = ACTIONS(4426), + [anon_sym_local] = ACTIONS(4426), + [anon_sym_unset] = ACTIONS(4428), + [anon_sym_unsetenv] = ACTIONS(4428), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(4430), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_DOLLAR] = ACTIONS(4434), + [sym_raw_string] = ACTIONS(4436), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4440), + [anon_sym_BQUOTE] = ACTIONS(4442), + [anon_sym_LT_LPAREN] = ACTIONS(4444), + [anon_sym_GT_LPAREN] = ACTIONS(4444), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4446), + }, + [1601] = { + [aux_sym_case_item_repeat1] = STATE(1937), + [anon_sym_PIPE] = ACTIONS(3617), + [anon_sym_RPAREN] = ACTIONS(4454), + [sym_comment] = ACTIONS(57), }, [1602] = { - [anon_sym_SEMI] = ACTIONS(4403), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(4405), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(4399), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4405), - [anon_sym_AMP] = ACTIONS(4403), + [sym__simple_heredoc_body] = ACTIONS(4456), + [sym__heredoc_body_beginning] = ACTIONS(4456), + [sym_file_descriptor] = ACTIONS(4456), + [ts_builtin_sym_end] = ACTIONS(4456), + [anon_sym_SEMI] = ACTIONS(4458), + [anon_sym_esac] = ACTIONS(4456), + [anon_sym_PIPE] = ACTIONS(4458), + [anon_sym_RPAREN] = ACTIONS(4456), + [anon_sym_SEMI_SEMI] = ACTIONS(4456), + [anon_sym_PIPE_AMP] = ACTIONS(4456), + [anon_sym_AMP_AMP] = ACTIONS(4456), + [anon_sym_PIPE_PIPE] = ACTIONS(4456), + [anon_sym_LT] = ACTIONS(4458), + [anon_sym_GT] = ACTIONS(4458), + [anon_sym_GT_GT] = ACTIONS(4456), + [anon_sym_AMP_GT] = ACTIONS(4458), + [anon_sym_AMP_GT_GT] = ACTIONS(4456), + [anon_sym_LT_AMP] = ACTIONS(4456), + [anon_sym_GT_AMP] = ACTIONS(4456), + [anon_sym_LT_LT] = ACTIONS(4458), + [anon_sym_LT_LT_DASH] = ACTIONS(4456), + [anon_sym_LT_LT_LT] = ACTIONS(4456), + [anon_sym_BQUOTE] = ACTIONS(4456), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4456), + [anon_sym_AMP] = ACTIONS(4458), }, [1603] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(4403), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(4405), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(4399), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(4405), - [anon_sym_AMP] = ACTIONS(4403), + [anon_sym_esac] = ACTIONS(4460), + [sym_comment] = ACTIONS(57), }, [1604] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(1932), - [sym_c_style_for_statement] = STATE(1932), - [sym_while_statement] = STATE(1932), - [sym_if_statement] = STATE(1932), - [sym_case_statement] = STATE(1932), - [sym_function_definition] = STATE(1932), - [sym_subshell] = STATE(1932), - [sym_pipeline] = STATE(1932), - [sym_list] = STATE(1932), - [sym_negated_command] = STATE(1932), - [sym_test_command] = STATE(1932), - [sym_declaration_command] = STATE(1932), - [sym_unset_command] = STATE(1932), - [sym_command] = STATE(1932), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(1933), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym_case_item] = STATE(1604), + [sym_concatenation] = STATE(1947), + [sym_string] = STATE(1946), + [sym_simple_expansion] = STATE(1946), + [sym_string_expansion] = STATE(1946), + [sym_expansion] = STATE(1946), + [sym_command_substitution] = STATE(1946), + [sym_process_substitution] = STATE(1946), + [aux_sym_case_statement_repeat1] = STATE(1604), + [sym__special_characters] = ACTIONS(4462), + [anon_sym_DQUOTE] = ACTIONS(4465), + [anon_sym_DOLLAR] = ACTIONS(4468), + [sym_raw_string] = ACTIONS(4471), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), + [anon_sym_BQUOTE] = ACTIONS(4480), + [anon_sym_LT_LPAREN] = ACTIONS(4483), + [anon_sym_GT_LPAREN] = ACTIONS(4483), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4471), }, [1605] = { - [anon_sym_SEMI] = ACTIONS(4407), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4409), - [anon_sym_SEMI_SEMI] = ACTIONS(4411), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4411), - [anon_sym_AMP] = ACTIONS(4407), + [sym_case_item] = STATE(1604), + [sym_last_case_item] = STATE(1948), + [sym_concatenation] = STATE(1172), + [sym_string] = STATE(1170), + [sym_simple_expansion] = STATE(1170), + [sym_string_expansion] = STATE(1170), + [sym_expansion] = STATE(1170), + [sym_command_substitution] = STATE(1170), + [sym_process_substitution] = STATE(1170), + [aux_sym_case_statement_repeat1] = STATE(1604), + [sym__special_characters] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(415), + [sym_raw_string] = ACTIONS(2464), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2464), }, [1606] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(4407), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4409), - [anon_sym_SEMI_SEMI] = ACTIONS(4411), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(4411), - [anon_sym_AMP] = ACTIONS(4407), + [sym__simple_heredoc_body] = ACTIONS(4486), + [sym__heredoc_body_beginning] = ACTIONS(4486), + [sym_file_descriptor] = ACTIONS(4486), + [ts_builtin_sym_end] = ACTIONS(4486), + [anon_sym_SEMI] = ACTIONS(4488), + [anon_sym_esac] = ACTIONS(4486), + [anon_sym_PIPE] = ACTIONS(4488), + [anon_sym_RPAREN] = ACTIONS(4486), + [anon_sym_SEMI_SEMI] = ACTIONS(4486), + [anon_sym_PIPE_AMP] = ACTIONS(4486), + [anon_sym_AMP_AMP] = ACTIONS(4486), + [anon_sym_PIPE_PIPE] = ACTIONS(4486), + [anon_sym_LT] = ACTIONS(4488), + [anon_sym_GT] = ACTIONS(4488), + [anon_sym_GT_GT] = ACTIONS(4486), + [anon_sym_AMP_GT] = ACTIONS(4488), + [anon_sym_AMP_GT_GT] = ACTIONS(4486), + [anon_sym_LT_AMP] = ACTIONS(4486), + [anon_sym_GT_AMP] = ACTIONS(4486), + [anon_sym_LT_LT] = ACTIONS(4488), + [anon_sym_LT_LT_DASH] = ACTIONS(4486), + [anon_sym_LT_LT_LT] = ACTIONS(4486), + [anon_sym_BQUOTE] = ACTIONS(4486), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4486), + [anon_sym_AMP] = ACTIONS(4488), }, [1607] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(1936), - [sym_c_style_for_statement] = STATE(1936), - [sym_while_statement] = STATE(1936), - [sym_if_statement] = STATE(1936), - [sym_case_statement] = STATE(1936), - [sym_function_definition] = STATE(1936), - [sym_subshell] = STATE(1936), - [sym_pipeline] = STATE(1936), - [sym_list] = STATE(1936), - [sym_negated_command] = STATE(1936), - [sym_test_command] = STATE(1936), - [sym_declaration_command] = STATE(1936), - [sym_unset_command] = STATE(1936), - [sym_command] = STATE(1936), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(1937), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_esac] = ACTIONS(4490), + [sym_comment] = ACTIONS(57), }, [1608] = { - [aux_sym_concatenation_repeat1] = STATE(1608), - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(3295), - [sym_variable_name] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym_case_item] = STATE(1604), + [sym_last_case_item] = STATE(1950), + [sym_concatenation] = STATE(1172), + [sym_string] = STATE(1170), + [sym_simple_expansion] = STATE(1170), + [sym_string_expansion] = STATE(1170), + [sym_expansion] = STATE(1170), + [sym_command_substitution] = STATE(1170), + [sym_process_substitution] = STATE(1170), + [aux_sym_case_statement_repeat1] = STATE(1604), + [sym__special_characters] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_DOLLAR] = ACTIONS(415), + [sym_raw_string] = ACTIONS(2464), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2464), }, [1609] = { - [sym_concatenation] = STATE(1586), - [sym_string] = STATE(1939), - [sym_simple_expansion] = STATE(1939), - [sym_string_expansion] = STATE(1939), - [sym_expansion] = STATE(1939), - [sym_command_substitution] = STATE(1939), - [sym_process_substitution] = STATE(1939), - [sym__special_characters] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(4415), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2406), - [anon_sym_LT_LPAREN] = ACTIONS(2408), - [anon_sym_GT_LPAREN] = ACTIONS(2408), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4415), + [sym__concat] = ACTIONS(3921), + [anon_sym_in] = ACTIONS(3921), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym_SEMI_SEMI] = ACTIONS(3921), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3921), + [anon_sym_AMP] = ACTIONS(3921), }, [1610] = { - [aux_sym_concatenation_repeat1] = STATE(1940), - [sym_file_descriptor] = ACTIONS(773), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(773), - [anon_sym_AMP_GT] = ACTIONS(777), - [anon_sym_AMP_GT_GT] = ACTIONS(773), - [anon_sym_LT_AMP] = ACTIONS(773), - [anon_sym_GT_AMP] = ACTIONS(773), - [anon_sym_LT_LT] = ACTIONS(777), - [anon_sym_LT_LT_DASH] = ACTIONS(773), - [anon_sym_LT_LT_LT] = ACTIONS(773), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(777), + [sym__concat] = ACTIONS(3929), + [anon_sym_in] = ACTIONS(3929), + [anon_sym_SEMI] = ACTIONS(3931), + [anon_sym_SEMI_SEMI] = ACTIONS(3929), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), }, [1611] = { - [aux_sym_concatenation_repeat1] = STATE(1940), - [sym_file_descriptor] = ACTIONS(791), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_SEMI_SEMI] = ACTIONS(791), - [anon_sym_PIPE_AMP] = ACTIONS(791), - [anon_sym_AMP_AMP] = ACTIONS(791), - [anon_sym_PIPE_PIPE] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_GT_GT] = ACTIONS(791), - [anon_sym_AMP_GT] = ACTIONS(793), - [anon_sym_AMP_GT_GT] = ACTIONS(791), - [anon_sym_LT_AMP] = ACTIONS(791), - [anon_sym_GT_AMP] = ACTIONS(791), - [anon_sym_LT_LT] = ACTIONS(793), - [anon_sym_LT_LT_DASH] = ACTIONS(791), - [anon_sym_LT_LT_LT] = ACTIONS(791), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_AMP] = ACTIONS(793), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4492), + [sym_comment] = ACTIONS(57), }, [1612] = { - [aux_sym_concatenation_repeat1] = STATE(1940), - [sym_file_descriptor] = ACTIONS(2015), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(2017), - [anon_sym_PIPE] = ACTIONS(2017), - [anon_sym_SEMI_SEMI] = ACTIONS(2015), - [anon_sym_PIPE_AMP] = ACTIONS(2015), - [anon_sym_AMP_AMP] = ACTIONS(2015), - [anon_sym_PIPE_PIPE] = ACTIONS(2015), - [anon_sym_LT] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2017), - [anon_sym_GT_GT] = ACTIONS(2015), - [anon_sym_AMP_GT] = ACTIONS(2017), - [anon_sym_AMP_GT_GT] = ACTIONS(2015), - [anon_sym_LT_AMP] = ACTIONS(2015), - [anon_sym_GT_AMP] = ACTIONS(2015), - [anon_sym_LT_LT] = ACTIONS(2017), - [anon_sym_LT_LT_DASH] = ACTIONS(2015), - [anon_sym_LT_LT_LT] = ACTIONS(2015), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2017), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4494), + [sym_comment] = ACTIONS(57), }, [1613] = { - [aux_sym_concatenation_repeat1] = STATE(1940), - [sym_file_descriptor] = ACTIONS(2019), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_SEMI_SEMI] = ACTIONS(2019), - [anon_sym_PIPE_AMP] = ACTIONS(2019), - [anon_sym_AMP_AMP] = ACTIONS(2019), - [anon_sym_PIPE_PIPE] = ACTIONS(2019), - [anon_sym_LT] = ACTIONS(2021), - [anon_sym_GT] = ACTIONS(2021), - [anon_sym_GT_GT] = ACTIONS(2019), - [anon_sym_AMP_GT] = ACTIONS(2021), - [anon_sym_AMP_GT_GT] = ACTIONS(2019), - [anon_sym_LT_AMP] = ACTIONS(2019), - [anon_sym_GT_AMP] = ACTIONS(2019), - [anon_sym_LT_LT] = ACTIONS(2021), - [anon_sym_LT_LT_DASH] = ACTIONS(2019), - [anon_sym_LT_LT_LT] = ACTIONS(2019), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2019), - [anon_sym_AMP] = ACTIONS(2021), + [anon_sym_RBRACE] = ACTIONS(4494), + [sym_comment] = ACTIONS(57), }, [1614] = { - [sym_file_redirect] = STATE(1614), - [sym_heredoc_redirect] = STATE(1614), - [sym_herestring_redirect] = STATE(1614), - [aux_sym_while_statement_repeat1] = STATE(1614), - [sym_file_descriptor] = ACTIONS(4417), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2027), - [anon_sym_PIPE_AMP] = ACTIONS(2027), - [anon_sym_AMP_AMP] = ACTIONS(2027), - [anon_sym_PIPE_PIPE] = ACTIONS(2027), - [anon_sym_LT] = ACTIONS(4420), - [anon_sym_GT] = ACTIONS(4420), - [anon_sym_GT_GT] = ACTIONS(4423), - [anon_sym_AMP_GT] = ACTIONS(4420), - [anon_sym_AMP_GT_GT] = ACTIONS(4423), - [anon_sym_LT_AMP] = ACTIONS(4423), - [anon_sym_GT_AMP] = ACTIONS(4423), - [anon_sym_LT_LT] = ACTIONS(3612), - [anon_sym_LT_LT_DASH] = ACTIONS(3615), - [anon_sym_LT_LT_LT] = ACTIONS(4426), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(2032), + [sym_concatenation] = STATE(1954), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1954), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_EQ] = ACTIONS(4498), + [anon_sym_DASH] = ACTIONS(4498), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4500), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4498), + [anon_sym_COLON_QMARK] = ACTIONS(4498), + [anon_sym_COLON_DASH] = ACTIONS(4498), + [anon_sym_PERCENT] = ACTIONS(4498), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1615] = { - [sym_file_redirect] = STATE(1651), - [sym_file_descriptor] = ACTIONS(2434), - [anon_sym_SEMI] = ACTIONS(3722), - [anon_sym_PIPE] = ACTIONS(3722), - [anon_sym_SEMI_SEMI] = ACTIONS(3720), - [anon_sym_PIPE_AMP] = ACTIONS(3720), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_LT] = ACTIONS(2436), - [anon_sym_GT] = ACTIONS(2436), - [anon_sym_GT_GT] = ACTIONS(2438), - [anon_sym_AMP_GT] = ACTIONS(2436), - [anon_sym_AMP_GT_GT] = ACTIONS(2438), - [anon_sym_LT_AMP] = ACTIONS(2438), - [anon_sym_GT_AMP] = ACTIONS(2438), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3720), - [anon_sym_AMP] = ACTIONS(3722), + [sym__concat] = ACTIONS(3985), + [anon_sym_in] = ACTIONS(3985), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3985), }, [1616] = { - [sym_concatenation] = STATE(1654), - [sym_string] = STATE(1942), - [sym_simple_expansion] = STATE(1942), - [sym_string_expansion] = STATE(1942), - [sym_expansion] = STATE(1942), - [sym_command_substitution] = STATE(1942), - [sym_process_substitution] = STATE(1942), - [sym__special_characters] = ACTIONS(4429), - [anon_sym_DQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [sym_raw_string] = ACTIONS(4431), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [anon_sym_LT_LPAREN] = ACTIONS(241), - [anon_sym_GT_LPAREN] = ACTIONS(241), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4431), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4496), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1617] = { - [aux_sym_concatenation_repeat1] = STATE(1943), - [sym__concat] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(777), + [sym_concatenation] = STATE(1955), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1955), + [anon_sym_RBRACE] = ACTIONS(4494), + [anon_sym_EQ] = ACTIONS(4502), + [anon_sym_DASH] = ACTIONS(4502), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4504), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4502), + [anon_sym_COLON_QMARK] = ACTIONS(4502), + [anon_sym_COLON_DASH] = ACTIONS(4502), + [anon_sym_PERCENT] = ACTIONS(4502), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1618] = { - [aux_sym_concatenation_repeat1] = STATE(1943), - [sym__concat] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_SEMI_SEMI] = ACTIONS(791), - [anon_sym_PIPE_AMP] = ACTIONS(791), - [anon_sym_AMP_AMP] = ACTIONS(791), - [anon_sym_PIPE_PIPE] = ACTIONS(791), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_AMP] = ACTIONS(793), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4494), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1619] = { - [aux_sym_concatenation_repeat1] = STATE(1619), - [sym__simple_heredoc_body] = ACTIONS(1763), - [sym__heredoc_body_beginning] = ACTIONS(1763), - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_LT_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT_LT] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym__concat] = ACTIONS(4030), + [anon_sym_in] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_SEMI_SEMI] = ACTIONS(4030), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4030), }, [1620] = { - [sym__terminated_statement] = STATE(1944), - [sym_for_statement] = STATE(545), - [sym_c_style_for_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_function_definition] = STATE(545), - [sym_subshell] = STATE(545), - [sym_pipeline] = STATE(545), - [sym_list] = STATE(545), - [sym_negated_command] = STATE(545), - [sym_test_command] = STATE(545), - [sym_declaration_command] = STATE(545), - [sym_unset_command] = STATE(545), - [sym_command] = STATE(545), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(546), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(1944), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_fi] = ACTIONS(4433), - [anon_sym_elif] = ACTIONS(4433), - [anon_sym_else] = ACTIONS(4433), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4506), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1621] = { - [sym__terminated_statement] = STATE(1621), - [sym_for_statement] = STATE(545), - [sym_c_style_for_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_function_definition] = STATE(545), - [sym_subshell] = STATE(545), - [sym_pipeline] = STATE(545), - [sym_list] = STATE(545), - [sym_negated_command] = STATE(545), - [sym_test_command] = STATE(545), - [sym_declaration_command] = STATE(545), - [sym_unset_command] = STATE(545), - [sym_command] = STATE(545), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(546), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(1621), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(997), - [sym_variable_name] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1003), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1009), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_fi] = ACTIONS(3645), - [anon_sym_case] = ACTIONS(1015), - [anon_sym_function] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1027), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym_declare] = ACTIONS(1033), - [anon_sym_typeset] = ACTIONS(1033), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_readonly] = ACTIONS(1033), - [anon_sym_local] = ACTIONS(1033), - [anon_sym_unset] = ACTIONS(1036), - [anon_sym_unsetenv] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1039), - [anon_sym_GT_GT] = ACTIONS(1042), - [anon_sym_AMP_GT] = ACTIONS(1039), - [anon_sym_AMP_GT_GT] = ACTIONS(1042), - [anon_sym_LT_AMP] = ACTIONS(1042), - [anon_sym_GT_AMP] = ACTIONS(1042), - [sym__special_characters] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_DOLLAR] = ACTIONS(1051), - [sym_raw_string] = ACTIONS(1054), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1060), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1069), + [sym__concat] = ACTIONS(4064), + [anon_sym_in] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4066), + [anon_sym_SEMI_SEMI] = ACTIONS(4064), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), }, [1622] = { - [ts_builtin_sym_end] = ACTIONS(4435), - [anon_sym_SEMI] = ACTIONS(4437), - [anon_sym_esac] = ACTIONS(4435), - [anon_sym_PIPE] = ACTIONS(4437), - [anon_sym_RPAREN] = ACTIONS(4435), - [anon_sym_SEMI_SEMI] = ACTIONS(4435), - [anon_sym_PIPE_AMP] = ACTIONS(4435), - [anon_sym_AMP_AMP] = ACTIONS(4435), - [anon_sym_PIPE_PIPE] = ACTIONS(4435), - [anon_sym_BQUOTE] = ACTIONS(4435), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4435), - [anon_sym_AMP] = ACTIONS(4437), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4508), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1623] = { - [anon_sym_fi] = ACTIONS(4439), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(4508), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [1624] = { - [sym_concatenation] = STATE(1948), - [sym_string] = STATE(1947), - [sym_simple_expansion] = STATE(1947), - [sym_string_expansion] = STATE(1947), - [sym_expansion] = STATE(1947), - [sym_command_substitution] = STATE(1947), - [sym_process_substitution] = STATE(1947), - [sym__special_characters] = ACTIONS(4441), - [anon_sym_DQUOTE] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(443), - [sym_raw_string] = ACTIONS(4443), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), - [anon_sym_BQUOTE] = ACTIONS(451), - [anon_sym_LT_LPAREN] = ACTIONS(453), - [anon_sym_GT_LPAREN] = ACTIONS(453), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4443), + [sym__concat] = ACTIONS(4070), + [anon_sym_in] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym_SEMI_SEMI] = ACTIONS(4070), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4070), }, [1625] = { - [sym__terminated_statement] = STATE(1973), - [sym_for_statement] = STATE(1968), - [sym_c_style_for_statement] = STATE(1968), - [sym_while_statement] = STATE(1968), - [sym_if_statement] = STATE(1968), - [sym_case_statement] = STATE(1968), - [sym_function_definition] = STATE(1968), - [sym_subshell] = STATE(1968), - [sym_pipeline] = STATE(1968), - [sym_list] = STATE(1968), - [sym_negated_command] = STATE(1968), - [sym_test_command] = STATE(1968), - [sym_declaration_command] = STATE(1968), - [sym_unset_command] = STATE(1968), - [sym_command] = STATE(1968), - [sym_command_name] = STATE(1969), - [sym_variable_assignment] = STATE(1970), - [sym_subscript] = STATE(1971), - [sym_file_redirect] = STATE(1974), - [sym_concatenation] = STATE(1972), - [sym_string] = STATE(1962), - [sym_simple_expansion] = STATE(1962), - [sym_string_expansion] = STATE(1962), - [sym_expansion] = STATE(1962), - [sym_command_substitution] = STATE(1962), - [sym_process_substitution] = STATE(1962), - [aux_sym__statements_repeat1] = STATE(1973), - [aux_sym_command_repeat1] = STATE(1974), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4445), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(4447), - [anon_sym_while] = ACTIONS(4449), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_esac] = ACTIONS(4451), - [anon_sym_SEMI_SEMI] = ACTIONS(4453), - [anon_sym_function] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4461), - [anon_sym_declare] = ACTIONS(4463), - [anon_sym_typeset] = ACTIONS(4463), - [anon_sym_export] = ACTIONS(4463), - [anon_sym_readonly] = ACTIONS(4463), - [anon_sym_local] = ACTIONS(4463), - [anon_sym_unset] = ACTIONS(4465), - [anon_sym_unsetenv] = ACTIONS(4465), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(4467), - [anon_sym_DQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [sym_raw_string] = ACTIONS(4473), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), - [anon_sym_BQUOTE] = ACTIONS(4479), - [anon_sym_LT_LPAREN] = ACTIONS(4481), - [anon_sym_GT_LPAREN] = ACTIONS(4481), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4483), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4510), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1626] = { - [aux_sym_case_item_repeat1] = STATE(1976), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_RPAREN] = ACTIONS(4485), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(1626), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(3268), + [sym_variable_name] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), }, [1627] = { - [aux_sym_concatenation_repeat1] = STATE(1977), - [sym__concat] = ACTIONS(1214), - [anon_sym_PIPE] = ACTIONS(807), - [anon_sym_RPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(1627), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), }, [1628] = { - [sym__terminated_statement] = STATE(1981), - [sym_for_statement] = STATE(1979), - [sym_c_style_for_statement] = STATE(1979), - [sym_while_statement] = STATE(1979), - [sym_if_statement] = STATE(1979), - [sym_case_statement] = STATE(1979), - [sym_function_definition] = STATE(1979), - [sym_subshell] = STATE(1979), - [sym_pipeline] = STATE(1979), - [sym_list] = STATE(1979), - [sym_negated_command] = STATE(1979), - [sym_test_command] = STATE(1979), - [sym_declaration_command] = STATE(1979), - [sym_unset_command] = STATE(1979), - [sym_command] = STATE(1979), - [sym_command_name] = STATE(1969), - [sym_variable_assignment] = STATE(1980), - [sym_subscript] = STATE(1971), - [sym_file_redirect] = STATE(1974), - [sym_concatenation] = STATE(1972), - [sym_string] = STATE(1962), - [sym_simple_expansion] = STATE(1962), - [sym_string_expansion] = STATE(1962), - [sym_expansion] = STATE(1962), - [sym_command_substitution] = STATE(1962), - [sym_process_substitution] = STATE(1962), - [aux_sym__statements_repeat1] = STATE(1981), - [aux_sym_command_repeat1] = STATE(1974), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4445), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(4447), - [anon_sym_while] = ACTIONS(4449), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_esac] = ACTIONS(4487), - [anon_sym_SEMI_SEMI] = ACTIONS(4489), - [anon_sym_function] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4461), - [anon_sym_declare] = ACTIONS(4463), - [anon_sym_typeset] = ACTIONS(4463), - [anon_sym_export] = ACTIONS(4463), - [anon_sym_readonly] = ACTIONS(4463), - [anon_sym_local] = ACTIONS(4463), - [anon_sym_unset] = ACTIONS(4465), - [anon_sym_unsetenv] = ACTIONS(4465), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(4467), - [anon_sym_DQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [sym_raw_string] = ACTIONS(4473), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), - [anon_sym_BQUOTE] = ACTIONS(4479), - [anon_sym_LT_LPAREN] = ACTIONS(4481), - [anon_sym_GT_LPAREN] = ACTIONS(4481), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4483), + [sym__simple_heredoc_body] = ACTIONS(4512), + [sym__heredoc_body_beginning] = ACTIONS(4512), + [sym_file_descriptor] = ACTIONS(4512), + [ts_builtin_sym_end] = ACTIONS(4512), + [anon_sym_SEMI] = ACTIONS(4514), + [anon_sym_esac] = ACTIONS(4512), + [anon_sym_PIPE] = ACTIONS(4514), + [anon_sym_RPAREN] = ACTIONS(4512), + [anon_sym_SEMI_SEMI] = ACTIONS(4512), + [anon_sym_PIPE_AMP] = ACTIONS(4512), + [anon_sym_AMP_AMP] = ACTIONS(4512), + [anon_sym_PIPE_PIPE] = ACTIONS(4512), + [anon_sym_LT] = ACTIONS(4514), + [anon_sym_GT] = ACTIONS(4514), + [anon_sym_GT_GT] = ACTIONS(4512), + [anon_sym_AMP_GT] = ACTIONS(4514), + [anon_sym_AMP_GT_GT] = ACTIONS(4512), + [anon_sym_LT_AMP] = ACTIONS(4512), + [anon_sym_GT_AMP] = ACTIONS(4512), + [anon_sym_LT_LT] = ACTIONS(4514), + [anon_sym_LT_LT_DASH] = ACTIONS(4512), + [anon_sym_LT_LT_LT] = ACTIONS(4512), + [anon_sym_BQUOTE] = ACTIONS(4512), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4512), + [anon_sym_AMP] = ACTIONS(4514), }, [1629] = { - [aux_sym_case_item_repeat1] = STATE(1976), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_RPAREN] = ACTIONS(4491), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(3238), + [sym_variable_name] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3240), + [anon_sym_GT] = ACTIONS(3240), + [anon_sym_GT_GT] = ACTIONS(3238), + [anon_sym_AMP_GT] = ACTIONS(3240), + [anon_sym_AMP_GT_GT] = ACTIONS(3238), + [anon_sym_LT_AMP] = ACTIONS(3238), + [anon_sym_GT_AMP] = ACTIONS(3238), + [sym__special_characters] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3238), + [anon_sym_DOLLAR] = ACTIONS(3240), + [sym_raw_string] = ACTIONS(3238), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3238), + [anon_sym_BQUOTE] = ACTIONS(3238), + [anon_sym_LT_LPAREN] = ACTIONS(3238), + [anon_sym_GT_LPAREN] = ACTIONS(3238), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3238), }, [1630] = { - [ts_builtin_sym_end] = ACTIONS(4493), - [anon_sym_SEMI] = ACTIONS(4495), - [anon_sym_esac] = ACTIONS(4493), - [anon_sym_PIPE] = ACTIONS(4495), - [anon_sym_RPAREN] = ACTIONS(4493), - [anon_sym_SEMI_SEMI] = ACTIONS(4493), - [anon_sym_PIPE_AMP] = ACTIONS(4493), - [anon_sym_AMP_AMP] = ACTIONS(4493), - [anon_sym_PIPE_PIPE] = ACTIONS(4493), - [anon_sym_BQUOTE] = ACTIONS(4493), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4493), - [anon_sym_AMP] = ACTIONS(4495), + [sym__concat] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_RBRACK] = ACTIONS(3921), + [anon_sym_EQ_TILDE] = ACTIONS(3921), + [anon_sym_EQ_EQ] = ACTIONS(3921), + [anon_sym_EQ] = ACTIONS(3923), + [anon_sym_PLUS_EQ] = ACTIONS(3921), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_GT] = ACTIONS(3923), + [anon_sym_BANG_EQ] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3923), + [anon_sym_DASH] = ACTIONS(3923), + [anon_sym_DASH_EQ] = ACTIONS(3921), + [anon_sym_LT_EQ] = ACTIONS(3921), + [anon_sym_GT_EQ] = ACTIONS(3921), + [anon_sym_PLUS_PLUS] = ACTIONS(3921), + [anon_sym_DASH_DASH] = ACTIONS(3921), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3921), }, [1631] = { - [anon_sym_esac] = ACTIONS(4497), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_RBRACK] = ACTIONS(3929), + [anon_sym_EQ_TILDE] = ACTIONS(3929), + [anon_sym_EQ_EQ] = ACTIONS(3929), + [anon_sym_EQ] = ACTIONS(3931), + [anon_sym_PLUS_EQ] = ACTIONS(3929), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_GT] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_DASH_EQ] = ACTIONS(3929), + [anon_sym_LT_EQ] = ACTIONS(3929), + [anon_sym_GT_EQ] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3929), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3929), }, [1632] = { - [sym_case_item] = STATE(1632), - [sym_concatenation] = STATE(1986), - [sym_string] = STATE(1985), - [sym_simple_expansion] = STATE(1985), - [sym_string_expansion] = STATE(1985), - [sym_expansion] = STATE(1985), - [sym_command_substitution] = STATE(1985), - [sym_process_substitution] = STATE(1985), - [aux_sym_case_statement_repeat1] = STATE(1632), - [sym__special_characters] = ACTIONS(4499), - [anon_sym_DQUOTE] = ACTIONS(4502), - [anon_sym_DOLLAR] = ACTIONS(4505), - [sym_raw_string] = ACTIONS(4508), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4511), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4514), - [anon_sym_BQUOTE] = ACTIONS(4517), - [anon_sym_LT_LPAREN] = ACTIONS(4520), - [anon_sym_GT_LPAREN] = ACTIONS(4520), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4508), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4516), + [sym_comment] = ACTIONS(57), }, [1633] = { - [sym_case_item] = STATE(1632), - [sym_last_case_item] = STATE(1987), - [sym_concatenation] = STATE(1204), - [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), - [aux_sym_case_statement_repeat1] = STATE(1632), - [sym__special_characters] = ACTIONS(2525), - [anon_sym_DQUOTE] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(443), - [sym_raw_string] = ACTIONS(2527), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), - [anon_sym_BQUOTE] = ACTIONS(451), - [anon_sym_LT_LPAREN] = ACTIONS(453), - [anon_sym_GT_LPAREN] = ACTIONS(453), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2527), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4518), + [sym_comment] = ACTIONS(57), }, [1634] = { - [ts_builtin_sym_end] = ACTIONS(4523), - [anon_sym_SEMI] = ACTIONS(4525), - [anon_sym_esac] = ACTIONS(4523), - [anon_sym_PIPE] = ACTIONS(4525), - [anon_sym_RPAREN] = ACTIONS(4523), - [anon_sym_SEMI_SEMI] = ACTIONS(4523), - [anon_sym_PIPE_AMP] = ACTIONS(4523), - [anon_sym_AMP_AMP] = ACTIONS(4523), - [anon_sym_PIPE_PIPE] = ACTIONS(4523), - [anon_sym_BQUOTE] = ACTIONS(4523), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4523), - [anon_sym_AMP] = ACTIONS(4525), + [anon_sym_RBRACE] = ACTIONS(4518), + [sym_comment] = ACTIONS(57), }, [1635] = { - [anon_sym_esac] = ACTIONS(4527), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(1962), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1962), + [anon_sym_RBRACE] = ACTIONS(4520), + [anon_sym_EQ] = ACTIONS(4522), + [anon_sym_DASH] = ACTIONS(4522), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4524), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4522), + [anon_sym_COLON_QMARK] = ACTIONS(4522), + [anon_sym_COLON_DASH] = ACTIONS(4522), + [anon_sym_PERCENT] = ACTIONS(4522), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1636] = { - [sym_case_item] = STATE(1632), - [sym_last_case_item] = STATE(1989), - [sym_concatenation] = STATE(1204), - [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), - [aux_sym_case_statement_repeat1] = STATE(1632), - [sym__special_characters] = ACTIONS(2525), - [anon_sym_DQUOTE] = ACTIONS(441), - [anon_sym_DOLLAR] = ACTIONS(443), - [sym_raw_string] = ACTIONS(2527), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(447), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(449), - [anon_sym_BQUOTE] = ACTIONS(451), - [anon_sym_LT_LPAREN] = ACTIONS(453), - [anon_sym_GT_LPAREN] = ACTIONS(453), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2527), + [sym__concat] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_RBRACK] = ACTIONS(3985), + [anon_sym_EQ_TILDE] = ACTIONS(3985), + [anon_sym_EQ_EQ] = ACTIONS(3985), + [anon_sym_EQ] = ACTIONS(3987), + [anon_sym_PLUS_EQ] = ACTIONS(3985), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_BANG_EQ] = ACTIONS(3985), + [anon_sym_PLUS] = ACTIONS(3987), + [anon_sym_DASH] = ACTIONS(3987), + [anon_sym_DASH_EQ] = ACTIONS(3985), + [anon_sym_LT_EQ] = ACTIONS(3985), + [anon_sym_GT_EQ] = ACTIONS(3985), + [anon_sym_PLUS_PLUS] = ACTIONS(3985), + [anon_sym_DASH_DASH] = ACTIONS(3985), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3985), }, [1637] = { - [sym__concat] = ACTIONS(3934), - [anon_sym_in] = ACTIONS(3934), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym_SEMI_SEMI] = ACTIONS(3934), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3934), - [anon_sym_AMP] = ACTIONS(3934), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4520), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1638] = { - [sym__concat] = ACTIONS(3942), - [anon_sym_in] = ACTIONS(3942), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym_SEMI_SEMI] = ACTIONS(3942), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3942), - [anon_sym_AMP] = ACTIONS(3942), + [sym_concatenation] = STATE(1963), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1963), + [anon_sym_RBRACE] = ACTIONS(4518), + [anon_sym_EQ] = ACTIONS(4526), + [anon_sym_DASH] = ACTIONS(4526), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4528), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4526), + [anon_sym_COLON_QMARK] = ACTIONS(4526), + [anon_sym_COLON_DASH] = ACTIONS(4526), + [anon_sym_PERCENT] = ACTIONS(4526), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1639] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4529), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4518), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1640] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4531), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_RBRACK] = ACTIONS(4030), + [anon_sym_EQ_TILDE] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4032), + [anon_sym_PLUS_EQ] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4032), + [anon_sym_GT] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_DASH_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4030), + [anon_sym_DASH_DASH] = ACTIONS(4030), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4030), }, [1641] = { - [anon_sym_RBRACE] = ACTIONS(4531), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4530), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1642] = { - [sym_concatenation] = STATE(1993), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1993), - [anon_sym_RBRACE] = ACTIONS(4533), - [anon_sym_EQ] = ACTIONS(4535), - [anon_sym_DASH] = ACTIONS(4535), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4537), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4535), - [anon_sym_COLON_QMARK] = ACTIONS(4535), - [anon_sym_COLON_DASH] = ACTIONS(4535), - [anon_sym_PERCENT] = ACTIONS(4535), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(4064), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_PIPE_PIPE] = ACTIONS(4064), + [anon_sym_RBRACK] = ACTIONS(4064), + [anon_sym_EQ_TILDE] = ACTIONS(4064), + [anon_sym_EQ_EQ] = ACTIONS(4064), + [anon_sym_EQ] = ACTIONS(4066), + [anon_sym_PLUS_EQ] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(4066), + [anon_sym_GT] = ACTIONS(4066), + [anon_sym_BANG_EQ] = ACTIONS(4064), + [anon_sym_PLUS] = ACTIONS(4066), + [anon_sym_DASH] = ACTIONS(4066), + [anon_sym_DASH_EQ] = ACTIONS(4064), + [anon_sym_LT_EQ] = ACTIONS(4064), + [anon_sym_GT_EQ] = ACTIONS(4064), + [anon_sym_PLUS_PLUS] = ACTIONS(4064), + [anon_sym_DASH_DASH] = ACTIONS(4064), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4064), }, [1643] = { - [sym__concat] = ACTIONS(3998), - [anon_sym_in] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym_SEMI_SEMI] = ACTIONS(3998), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3998), - [anon_sym_AMP] = ACTIONS(3998), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4532), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1644] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4533), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(4532), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [1645] = { - [sym_concatenation] = STATE(1994), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(1994), - [anon_sym_RBRACE] = ACTIONS(4531), - [anon_sym_EQ] = ACTIONS(4539), - [anon_sym_DASH] = ACTIONS(4539), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4541), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4539), - [anon_sym_COLON_QMARK] = ACTIONS(4539), - [anon_sym_COLON_DASH] = ACTIONS(4539), - [anon_sym_PERCENT] = ACTIONS(4539), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_PIPE_PIPE] = ACTIONS(4070), + [anon_sym_RBRACK] = ACTIONS(4070), + [anon_sym_EQ_TILDE] = ACTIONS(4070), + [anon_sym_EQ_EQ] = ACTIONS(4070), + [anon_sym_EQ] = ACTIONS(4072), + [anon_sym_PLUS_EQ] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4072), + [anon_sym_GT] = ACTIONS(4072), + [anon_sym_BANG_EQ] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4072), + [anon_sym_DASH] = ACTIONS(4072), + [anon_sym_DASH_EQ] = ACTIONS(4070), + [anon_sym_LT_EQ] = ACTIONS(4070), + [anon_sym_GT_EQ] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4070), }, [1646] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4531), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1647] = { - [sym__concat] = ACTIONS(4043), - [anon_sym_in] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4045), - [anon_sym_SEMI_SEMI] = ACTIONS(4043), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4043), - [anon_sym_AMP] = ACTIONS(4043), + [sym__simple_heredoc_body] = ACTIONS(3238), + [sym__heredoc_body_beginning] = ACTIONS(3238), + [sym_file_descriptor] = ACTIONS(3238), + [sym_variable_name] = ACTIONS(3238), + [ts_builtin_sym_end] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_PIPE] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_SEMI_SEMI] = ACTIONS(3238), + [anon_sym_PIPE_AMP] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3240), + [anon_sym_GT] = ACTIONS(3240), + [anon_sym_GT_GT] = ACTIONS(3238), + [anon_sym_AMP_GT] = ACTIONS(3240), + [anon_sym_AMP_GT_GT] = ACTIONS(3238), + [anon_sym_LT_AMP] = ACTIONS(3238), + [anon_sym_GT_AMP] = ACTIONS(3238), + [anon_sym_LT_LT] = ACTIONS(3240), + [anon_sym_LT_LT_DASH] = ACTIONS(3238), + [anon_sym_LT_LT_LT] = ACTIONS(3238), + [sym__special_characters] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3238), + [anon_sym_DOLLAR] = ACTIONS(3240), + [sym_raw_string] = ACTIONS(3238), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3238), + [anon_sym_BQUOTE] = ACTIONS(3238), + [anon_sym_LT_LPAREN] = ACTIONS(3238), + [anon_sym_GT_LPAREN] = ACTIONS(3238), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3240), + [sym_word] = ACTIONS(3240), + [anon_sym_LF] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3240), }, [1648] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4543), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(3921), + [sym__heredoc_body_beginning] = ACTIONS(3921), + [sym_file_descriptor] = ACTIONS(3921), + [sym__concat] = ACTIONS(3921), + [sym_variable_name] = ACTIONS(3921), + [ts_builtin_sym_end] = ACTIONS(3921), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym_PIPE] = ACTIONS(3923), + [anon_sym_RPAREN] = ACTIONS(3921), + [anon_sym_SEMI_SEMI] = ACTIONS(3921), + [anon_sym_PIPE_AMP] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_GT] = ACTIONS(3923), + [anon_sym_GT_GT] = ACTIONS(3921), + [anon_sym_AMP_GT] = ACTIONS(3923), + [anon_sym_AMP_GT_GT] = ACTIONS(3921), + [anon_sym_LT_AMP] = ACTIONS(3921), + [anon_sym_GT_AMP] = ACTIONS(3921), + [anon_sym_LT_LT] = ACTIONS(3923), + [anon_sym_LT_LT_DASH] = ACTIONS(3921), + [anon_sym_LT_LT_LT] = ACTIONS(3921), + [sym__special_characters] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_DOLLAR] = ACTIONS(3923), + [sym_raw_string] = ACTIONS(3921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3921), + [anon_sym_BQUOTE] = ACTIONS(3921), + [anon_sym_LT_LPAREN] = ACTIONS(3921), + [anon_sym_GT_LPAREN] = ACTIONS(3921), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3923), + [sym_word] = ACTIONS(3923), + [anon_sym_LF] = ACTIONS(3921), + [anon_sym_AMP] = ACTIONS(3923), }, [1649] = { - [sym__concat] = ACTIONS(4065), - [anon_sym_in] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_SEMI_SEMI] = ACTIONS(4065), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4065), - [anon_sym_AMP] = ACTIONS(4065), + [sym__simple_heredoc_body] = ACTIONS(3929), + [sym__heredoc_body_beginning] = ACTIONS(3929), + [sym_file_descriptor] = ACTIONS(3929), + [sym__concat] = ACTIONS(3929), + [sym_variable_name] = ACTIONS(3929), + [ts_builtin_sym_end] = ACTIONS(3929), + [anon_sym_SEMI] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3931), + [anon_sym_RPAREN] = ACTIONS(3929), + [anon_sym_SEMI_SEMI] = ACTIONS(3929), + [anon_sym_PIPE_AMP] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_GT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_AMP_GT] = ACTIONS(3931), + [anon_sym_AMP_GT_GT] = ACTIONS(3929), + [anon_sym_LT_AMP] = ACTIONS(3929), + [anon_sym_GT_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_LT_LT_DASH] = ACTIONS(3929), + [anon_sym_LT_LT_LT] = ACTIONS(3929), + [sym__special_characters] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_DOLLAR] = ACTIONS(3931), + [sym_raw_string] = ACTIONS(3929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3929), + [anon_sym_BQUOTE] = ACTIONS(3929), + [anon_sym_LT_LPAREN] = ACTIONS(3929), + [anon_sym_GT_LPAREN] = ACTIONS(3929), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3931), + [sym_word] = ACTIONS(3931), + [anon_sym_LF] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3931), }, [1650] = { - [sym__concat] = ACTIONS(4089), - [anon_sym_in] = ACTIONS(4089), - [anon_sym_SEMI] = ACTIONS(4091), - [anon_sym_SEMI_SEMI] = ACTIONS(4089), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4089), - [anon_sym_AMP] = ACTIONS(4089), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4536), + [sym_comment] = ACTIONS(57), }, [1651] = { - [ts_builtin_sym_end] = ACTIONS(4545), - [anon_sym_SEMI] = ACTIONS(4547), - [anon_sym_esac] = ACTIONS(4545), - [anon_sym_PIPE] = ACTIONS(4547), - [anon_sym_RPAREN] = ACTIONS(4545), - [anon_sym_SEMI_SEMI] = ACTIONS(4545), - [anon_sym_PIPE_AMP] = ACTIONS(4545), - [anon_sym_AMP_AMP] = ACTIONS(4545), - [anon_sym_PIPE_PIPE] = ACTIONS(4545), - [anon_sym_BQUOTE] = ACTIONS(4545), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4545), - [anon_sym_AMP] = ACTIONS(4547), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4538), + [sym_comment] = ACTIONS(57), }, [1652] = { - [aux_sym_concatenation_repeat1] = STATE(1655), - [sym__concat] = ACTIONS(735), - [ts_builtin_sym_end] = ACTIONS(1088), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1090), - [anon_sym_SEMI_SEMI] = ACTIONS(1088), - [anon_sym_PIPE_AMP] = ACTIONS(1088), - [anon_sym_AMP_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1088), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_RBRACE] = ACTIONS(4538), + [sym_comment] = ACTIONS(57), }, [1653] = { - [aux_sym_concatenation_repeat1] = STATE(1655), - [sym__concat] = ACTIONS(735), - [ts_builtin_sym_end] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_SEMI_SEMI] = ACTIONS(1092), - [anon_sym_PIPE_AMP] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1092), - [anon_sym_AMP] = ACTIONS(1094), + [sym_concatenation] = STATE(1970), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1970), + [anon_sym_RBRACE] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(4542), + [anon_sym_DASH] = ACTIONS(4542), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4544), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4542), + [anon_sym_COLON_QMARK] = ACTIONS(4542), + [anon_sym_COLON_DASH] = ACTIONS(4542), + [anon_sym_PERCENT] = ACTIONS(4542), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1654] = { - [ts_builtin_sym_end] = ACTIONS(1092), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_esac] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_RPAREN] = ACTIONS(1092), - [anon_sym_SEMI_SEMI] = ACTIONS(1092), - [anon_sym_PIPE_AMP] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_BQUOTE] = ACTIONS(1092), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1092), - [anon_sym_AMP] = ACTIONS(1094), + [sym__simple_heredoc_body] = ACTIONS(3985), + [sym__heredoc_body_beginning] = ACTIONS(3985), + [sym_file_descriptor] = ACTIONS(3985), + [sym__concat] = ACTIONS(3985), + [sym_variable_name] = ACTIONS(3985), + [ts_builtin_sym_end] = ACTIONS(3985), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_RPAREN] = ACTIONS(3985), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [anon_sym_PIPE_AMP] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_GT_GT] = ACTIONS(3985), + [anon_sym_AMP_GT] = ACTIONS(3987), + [anon_sym_AMP_GT_GT] = ACTIONS(3985), + [anon_sym_LT_AMP] = ACTIONS(3985), + [anon_sym_GT_AMP] = ACTIONS(3985), + [anon_sym_LT_LT] = ACTIONS(3987), + [anon_sym_LT_LT_DASH] = ACTIONS(3985), + [anon_sym_LT_LT_LT] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3987), + [sym_word] = ACTIONS(3987), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3987), }, [1655] = { - [aux_sym_concatenation_repeat1] = STATE(1996), - [sym__concat] = ACTIONS(735), - [ts_builtin_sym_end] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4540), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1656] = { - [aux_sym_concatenation_repeat1] = STATE(1656), - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(3295), - [sym_variable_name] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym_concatenation] = STATE(1971), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1971), + [anon_sym_RBRACE] = ACTIONS(4538), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_DASH] = ACTIONS(4546), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4548), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_COLON_QMARK] = ACTIONS(4546), + [anon_sym_COLON_DASH] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1657] = { - [sym_concatenation] = STATE(1586), - [sym_string] = STATE(1998), - [sym_simple_expansion] = STATE(1998), - [sym_string_expansion] = STATE(1998), - [sym_expansion] = STATE(1998), - [sym_command_substitution] = STATE(1998), - [sym_process_substitution] = STATE(1998), - [sym__special_characters] = ACTIONS(4549), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(4551), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2406), - [anon_sym_LT_LPAREN] = ACTIONS(2408), - [anon_sym_GT_LPAREN] = ACTIONS(2408), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4551), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4538), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1658] = { - [aux_sym_concatenation_repeat1] = STATE(1999), - [sym_file_descriptor] = ACTIONS(773), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(773), - [anon_sym_AMP_GT] = ACTIONS(777), - [anon_sym_AMP_GT_GT] = ACTIONS(773), - [anon_sym_LT_AMP] = ACTIONS(773), - [anon_sym_GT_AMP] = ACTIONS(773), - [anon_sym_LT_LT] = ACTIONS(777), - [anon_sym_LT_LT_DASH] = ACTIONS(773), - [anon_sym_LT_LT_LT] = ACTIONS(773), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(777), + [sym__simple_heredoc_body] = ACTIONS(4030), + [sym__heredoc_body_beginning] = ACTIONS(4030), + [sym_file_descriptor] = ACTIONS(4030), + [sym__concat] = ACTIONS(4030), + [sym_variable_name] = ACTIONS(4030), + [ts_builtin_sym_end] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_PIPE] = ACTIONS(4032), + [anon_sym_RPAREN] = ACTIONS(4030), + [anon_sym_SEMI_SEMI] = ACTIONS(4030), + [anon_sym_PIPE_AMP] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4032), + [anon_sym_GT] = ACTIONS(4032), + [anon_sym_GT_GT] = ACTIONS(4030), + [anon_sym_AMP_GT] = ACTIONS(4032), + [anon_sym_AMP_GT_GT] = ACTIONS(4030), + [anon_sym_LT_AMP] = ACTIONS(4030), + [anon_sym_GT_AMP] = ACTIONS(4030), + [anon_sym_LT_LT] = ACTIONS(4032), + [anon_sym_LT_LT_DASH] = ACTIONS(4030), + [anon_sym_LT_LT_LT] = ACTIONS(4030), + [sym__special_characters] = ACTIONS(4030), + [anon_sym_DQUOTE] = ACTIONS(4030), + [anon_sym_DOLLAR] = ACTIONS(4032), + [sym_raw_string] = ACTIONS(4030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4030), + [anon_sym_BQUOTE] = ACTIONS(4030), + [anon_sym_LT_LPAREN] = ACTIONS(4030), + [anon_sym_GT_LPAREN] = ACTIONS(4030), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4032), + [sym_word] = ACTIONS(4032), + [anon_sym_LF] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4032), }, [1659] = { - [aux_sym_concatenation_repeat1] = STATE(1999), - [sym_file_descriptor] = ACTIONS(791), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_SEMI_SEMI] = ACTIONS(791), - [anon_sym_PIPE_AMP] = ACTIONS(791), - [anon_sym_AMP_AMP] = ACTIONS(791), - [anon_sym_PIPE_PIPE] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_GT_GT] = ACTIONS(791), - [anon_sym_AMP_GT] = ACTIONS(793), - [anon_sym_AMP_GT_GT] = ACTIONS(791), - [anon_sym_LT_AMP] = ACTIONS(791), - [anon_sym_GT_AMP] = ACTIONS(791), - [anon_sym_LT_LT] = ACTIONS(793), - [anon_sym_LT_LT_DASH] = ACTIONS(791), - [anon_sym_LT_LT_LT] = ACTIONS(791), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_AMP] = ACTIONS(793), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1660] = { - [aux_sym_concatenation_repeat1] = STATE(1999), - [sym_file_descriptor] = ACTIONS(2015), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(2017), - [anon_sym_PIPE] = ACTIONS(2017), - [anon_sym_RPAREN] = ACTIONS(2015), - [anon_sym_SEMI_SEMI] = ACTIONS(2015), - [anon_sym_PIPE_AMP] = ACTIONS(2015), - [anon_sym_AMP_AMP] = ACTIONS(2015), - [anon_sym_PIPE_PIPE] = ACTIONS(2015), - [anon_sym_LT] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2017), - [anon_sym_GT_GT] = ACTIONS(2015), - [anon_sym_AMP_GT] = ACTIONS(2017), - [anon_sym_AMP_GT_GT] = ACTIONS(2015), - [anon_sym_LT_AMP] = ACTIONS(2015), - [anon_sym_GT_AMP] = ACTIONS(2015), - [anon_sym_LT_LT] = ACTIONS(2017), - [anon_sym_LT_LT_DASH] = ACTIONS(2015), - [anon_sym_LT_LT_LT] = ACTIONS(2015), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2017), + [sym__simple_heredoc_body] = ACTIONS(4064), + [sym__heredoc_body_beginning] = ACTIONS(4064), + [sym_file_descriptor] = ACTIONS(4064), + [sym__concat] = ACTIONS(4064), + [sym_variable_name] = ACTIONS(4064), + [ts_builtin_sym_end] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4066), + [anon_sym_PIPE] = ACTIONS(4066), + [anon_sym_RPAREN] = ACTIONS(4064), + [anon_sym_SEMI_SEMI] = ACTIONS(4064), + [anon_sym_PIPE_AMP] = ACTIONS(4064), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_PIPE_PIPE] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(4066), + [anon_sym_GT] = ACTIONS(4066), + [anon_sym_GT_GT] = ACTIONS(4064), + [anon_sym_AMP_GT] = ACTIONS(4066), + [anon_sym_AMP_GT_GT] = ACTIONS(4064), + [anon_sym_LT_AMP] = ACTIONS(4064), + [anon_sym_GT_AMP] = ACTIONS(4064), + [anon_sym_LT_LT] = ACTIONS(4066), + [anon_sym_LT_LT_DASH] = ACTIONS(4064), + [anon_sym_LT_LT_LT] = ACTIONS(4064), + [sym__special_characters] = ACTIONS(4064), + [anon_sym_DQUOTE] = ACTIONS(4064), + [anon_sym_DOLLAR] = ACTIONS(4066), + [sym_raw_string] = ACTIONS(4064), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4064), + [anon_sym_BQUOTE] = ACTIONS(4064), + [anon_sym_LT_LPAREN] = ACTIONS(4064), + [anon_sym_GT_LPAREN] = ACTIONS(4064), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4066), + [sym_word] = ACTIONS(4066), + [anon_sym_LF] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4066), }, [1661] = { - [aux_sym_concatenation_repeat1] = STATE(1999), - [sym_file_descriptor] = ACTIONS(2019), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_RPAREN] = ACTIONS(2019), - [anon_sym_SEMI_SEMI] = ACTIONS(2019), - [anon_sym_PIPE_AMP] = ACTIONS(2019), - [anon_sym_AMP_AMP] = ACTIONS(2019), - [anon_sym_PIPE_PIPE] = ACTIONS(2019), - [anon_sym_LT] = ACTIONS(2021), - [anon_sym_GT] = ACTIONS(2021), - [anon_sym_GT_GT] = ACTIONS(2019), - [anon_sym_AMP_GT] = ACTIONS(2021), - [anon_sym_AMP_GT_GT] = ACTIONS(2019), - [anon_sym_LT_AMP] = ACTIONS(2019), - [anon_sym_GT_AMP] = ACTIONS(2019), - [anon_sym_LT_LT] = ACTIONS(2021), - [anon_sym_LT_LT_DASH] = ACTIONS(2019), - [anon_sym_LT_LT_LT] = ACTIONS(2019), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2019), - [anon_sym_AMP] = ACTIONS(2021), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1662] = { - [sym_file_redirect] = STATE(1662), - [sym_heredoc_redirect] = STATE(1662), - [sym_herestring_redirect] = STATE(1662), - [aux_sym_while_statement_repeat1] = STATE(1662), - [sym_file_descriptor] = ACTIONS(4553), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_RPAREN] = ACTIONS(2027), - [anon_sym_SEMI_SEMI] = ACTIONS(2027), - [anon_sym_PIPE_AMP] = ACTIONS(2027), - [anon_sym_AMP_AMP] = ACTIONS(2027), - [anon_sym_PIPE_PIPE] = ACTIONS(2027), - [anon_sym_LT] = ACTIONS(4556), - [anon_sym_GT] = ACTIONS(4556), - [anon_sym_GT_GT] = ACTIONS(4559), - [anon_sym_AMP_GT] = ACTIONS(4556), - [anon_sym_AMP_GT_GT] = ACTIONS(4559), - [anon_sym_LT_AMP] = ACTIONS(4559), - [anon_sym_GT_AMP] = ACTIONS(4559), - [anon_sym_LT_LT] = ACTIONS(3612), - [anon_sym_LT_LT_DASH] = ACTIONS(3615), - [anon_sym_LT_LT_LT] = ACTIONS(4562), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(2032), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(4552), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [1663] = { - [sym_file_redirect] = STATE(1651), - [sym_file_descriptor] = ACTIONS(2626), - [anon_sym_SEMI] = ACTIONS(3722), - [anon_sym_PIPE] = ACTIONS(3722), - [anon_sym_RPAREN] = ACTIONS(3720), - [anon_sym_SEMI_SEMI] = ACTIONS(3720), - [anon_sym_PIPE_AMP] = ACTIONS(3720), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_GT] = ACTIONS(2628), - [anon_sym_GT_GT] = ACTIONS(2630), - [anon_sym_AMP_GT] = ACTIONS(2628), - [anon_sym_AMP_GT_GT] = ACTIONS(2630), - [anon_sym_LT_AMP] = ACTIONS(2630), - [anon_sym_GT_AMP] = ACTIONS(2630), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3720), - [anon_sym_AMP] = ACTIONS(3722), + [sym__simple_heredoc_body] = ACTIONS(4070), + [sym__heredoc_body_beginning] = ACTIONS(4070), + [sym_file_descriptor] = ACTIONS(4070), + [sym__concat] = ACTIONS(4070), + [sym_variable_name] = ACTIONS(4070), + [ts_builtin_sym_end] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym_PIPE] = ACTIONS(4072), + [anon_sym_RPAREN] = ACTIONS(4070), + [anon_sym_SEMI_SEMI] = ACTIONS(4070), + [anon_sym_PIPE_AMP] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_PIPE_PIPE] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4072), + [anon_sym_GT] = ACTIONS(4072), + [anon_sym_GT_GT] = ACTIONS(4070), + [anon_sym_AMP_GT] = ACTIONS(4072), + [anon_sym_AMP_GT_GT] = ACTIONS(4070), + [anon_sym_LT_AMP] = ACTIONS(4070), + [anon_sym_GT_AMP] = ACTIONS(4070), + [anon_sym_LT_LT] = ACTIONS(4072), + [anon_sym_LT_LT_DASH] = ACTIONS(4070), + [anon_sym_LT_LT_LT] = ACTIONS(4070), + [sym__special_characters] = ACTIONS(4070), + [anon_sym_DQUOTE] = ACTIONS(4070), + [anon_sym_DOLLAR] = ACTIONS(4072), + [sym_raw_string] = ACTIONS(4070), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4070), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4070), + [anon_sym_BQUOTE] = ACTIONS(4070), + [anon_sym_LT_LPAREN] = ACTIONS(4070), + [anon_sym_GT_LPAREN] = ACTIONS(4070), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4072), + [sym_word] = ACTIONS(4072), + [anon_sym_LF] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4072), }, [1664] = { - [sym_concatenation] = STATE(1654), - [sym_string] = STATE(2001), - [sym_simple_expansion] = STATE(2001), - [sym_string_expansion] = STATE(2001), - [sym_expansion] = STATE(2001), - [sym_command_substitution] = STATE(2001), - [sym_process_substitution] = STATE(2001), - [sym__special_characters] = ACTIONS(4565), - [anon_sym_DQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [sym_raw_string] = ACTIONS(4567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [anon_sym_LT_LPAREN] = ACTIONS(241), - [anon_sym_GT_LPAREN] = ACTIONS(241), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4567), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4554), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1665] = { - [aux_sym_concatenation_repeat1] = STATE(2002), - [sym__concat] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(773), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(777), + [sym__simple_heredoc_body] = ACTIONS(3921), + [sym__heredoc_body_beginning] = ACTIONS(3921), + [sym_file_descriptor] = ACTIONS(3921), + [sym__concat] = ACTIONS(3921), + [ts_builtin_sym_end] = ACTIONS(3921), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym_PIPE] = ACTIONS(3923), + [anon_sym_RPAREN] = ACTIONS(3921), + [anon_sym_SEMI_SEMI] = ACTIONS(3921), + [anon_sym_PIPE_AMP] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_GT] = ACTIONS(3923), + [anon_sym_GT_GT] = ACTIONS(3921), + [anon_sym_AMP_GT] = ACTIONS(3923), + [anon_sym_AMP_GT_GT] = ACTIONS(3921), + [anon_sym_LT_AMP] = ACTIONS(3921), + [anon_sym_GT_AMP] = ACTIONS(3921), + [anon_sym_LT_LT] = ACTIONS(3923), + [anon_sym_LT_LT_DASH] = ACTIONS(3921), + [anon_sym_LT_LT_LT] = ACTIONS(3921), + [sym__special_characters] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_DOLLAR] = ACTIONS(3923), + [sym_raw_string] = ACTIONS(3921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3921), + [anon_sym_BQUOTE] = ACTIONS(3921), + [anon_sym_LT_LPAREN] = ACTIONS(3921), + [anon_sym_GT_LPAREN] = ACTIONS(3921), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3923), + [sym_word] = ACTIONS(3923), + [anon_sym_LF] = ACTIONS(3921), + [anon_sym_AMP] = ACTIONS(3923), }, [1666] = { - [aux_sym_concatenation_repeat1] = STATE(2002), - [sym__concat] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_SEMI_SEMI] = ACTIONS(791), - [anon_sym_PIPE_AMP] = ACTIONS(791), - [anon_sym_AMP_AMP] = ACTIONS(791), - [anon_sym_PIPE_PIPE] = ACTIONS(791), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_AMP] = ACTIONS(793), + [sym__simple_heredoc_body] = ACTIONS(3929), + [sym__heredoc_body_beginning] = ACTIONS(3929), + [sym_file_descriptor] = ACTIONS(3929), + [sym__concat] = ACTIONS(3929), + [ts_builtin_sym_end] = ACTIONS(3929), + [anon_sym_SEMI] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3931), + [anon_sym_RPAREN] = ACTIONS(3929), + [anon_sym_SEMI_SEMI] = ACTIONS(3929), + [anon_sym_PIPE_AMP] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_GT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_AMP_GT] = ACTIONS(3931), + [anon_sym_AMP_GT_GT] = ACTIONS(3929), + [anon_sym_LT_AMP] = ACTIONS(3929), + [anon_sym_GT_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_LT_LT_DASH] = ACTIONS(3929), + [anon_sym_LT_LT_LT] = ACTIONS(3929), + [sym__special_characters] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_DOLLAR] = ACTIONS(3931), + [sym_raw_string] = ACTIONS(3929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3929), + [anon_sym_BQUOTE] = ACTIONS(3929), + [anon_sym_LT_LPAREN] = ACTIONS(3929), + [anon_sym_GT_LPAREN] = ACTIONS(3929), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3931), + [sym_word] = ACTIONS(3931), + [anon_sym_LF] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3931), }, [1667] = { - [aux_sym_concatenation_repeat1] = STATE(1667), - [sym__simple_heredoc_body] = ACTIONS(1763), - [sym__heredoc_body_beginning] = ACTIONS(1763), - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_LT_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT_LT] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4556), + [sym_comment] = ACTIONS(57), }, [1668] = { - [sym_file_descriptor] = ACTIONS(3265), - [sym_variable_name] = ACTIONS(3265), - [anon_sym_LT] = ACTIONS(3267), - [anon_sym_GT] = ACTIONS(3267), - [anon_sym_GT_GT] = ACTIONS(3265), - [anon_sym_AMP_GT] = ACTIONS(3267), - [anon_sym_AMP_GT_GT] = ACTIONS(3265), - [anon_sym_LT_AMP] = ACTIONS(3265), - [anon_sym_GT_AMP] = ACTIONS(3265), - [sym__special_characters] = ACTIONS(3265), - [anon_sym_DQUOTE] = ACTIONS(3265), - [anon_sym_DOLLAR] = ACTIONS(3267), - [sym_raw_string] = ACTIONS(3265), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3265), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3265), - [anon_sym_BQUOTE] = ACTIONS(3265), - [anon_sym_LT_LPAREN] = ACTIONS(3265), - [anon_sym_GT_LPAREN] = ACTIONS(3265), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3265), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4558), + [sym_comment] = ACTIONS(57), }, [1669] = { - [sym__concat] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_RBRACK] = ACTIONS(3934), - [anon_sym_EQ_TILDE] = ACTIONS(3934), - [anon_sym_EQ_EQ] = ACTIONS(3934), - [anon_sym_EQ] = ACTIONS(3936), - [anon_sym_PLUS_EQ] = ACTIONS(3934), - [anon_sym_LT] = ACTIONS(3936), - [anon_sym_GT] = ACTIONS(3936), - [anon_sym_BANG_EQ] = ACTIONS(3934), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_DASH_EQ] = ACTIONS(3934), - [anon_sym_LT_EQ] = ACTIONS(3934), - [anon_sym_GT_EQ] = ACTIONS(3934), - [anon_sym_PLUS_PLUS] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(3934), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3934), + [anon_sym_RBRACE] = ACTIONS(4558), + [sym_comment] = ACTIONS(57), }, [1670] = { - [sym__concat] = ACTIONS(3942), - [anon_sym_AMP_AMP] = ACTIONS(3942), - [anon_sym_PIPE_PIPE] = ACTIONS(3942), - [anon_sym_RBRACK] = ACTIONS(3942), - [anon_sym_EQ_TILDE] = ACTIONS(3942), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ] = ACTIONS(3944), - [anon_sym_PLUS_EQ] = ACTIONS(3942), - [anon_sym_LT] = ACTIONS(3944), - [anon_sym_GT] = ACTIONS(3944), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_PLUS] = ACTIONS(3944), - [anon_sym_DASH] = ACTIONS(3944), - [anon_sym_DASH_EQ] = ACTIONS(3942), - [anon_sym_LT_EQ] = ACTIONS(3942), - [anon_sym_GT_EQ] = ACTIONS(3942), - [anon_sym_PLUS_PLUS] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(3942), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3942), + [sym_concatenation] = STATE(1978), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1978), + [anon_sym_RBRACE] = ACTIONS(4560), + [anon_sym_EQ] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4562), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_COLON_QMARK] = ACTIONS(4562), + [anon_sym_COLON_DASH] = ACTIONS(4562), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1671] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4569), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(3985), + [sym__heredoc_body_beginning] = ACTIONS(3985), + [sym_file_descriptor] = ACTIONS(3985), + [sym__concat] = ACTIONS(3985), + [ts_builtin_sym_end] = ACTIONS(3985), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_RPAREN] = ACTIONS(3985), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [anon_sym_PIPE_AMP] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_GT_GT] = ACTIONS(3985), + [anon_sym_AMP_GT] = ACTIONS(3987), + [anon_sym_AMP_GT_GT] = ACTIONS(3985), + [anon_sym_LT_AMP] = ACTIONS(3985), + [anon_sym_GT_AMP] = ACTIONS(3985), + [anon_sym_LT_LT] = ACTIONS(3987), + [anon_sym_LT_LT_DASH] = ACTIONS(3985), + [anon_sym_LT_LT_LT] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3987), + [sym_word] = ACTIONS(3987), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3987), }, [1672] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4571), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4560), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1673] = { - [anon_sym_RBRACE] = ACTIONS(4571), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(1979), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1979), + [anon_sym_RBRACE] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_DASH] = ACTIONS(4566), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4568), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_COLON_QMARK] = ACTIONS(4566), + [anon_sym_COLON_DASH] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1674] = { - [sym_concatenation] = STATE(2006), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2006), - [anon_sym_RBRACE] = ACTIONS(4573), - [anon_sym_EQ] = ACTIONS(4575), - [anon_sym_DASH] = ACTIONS(4575), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4577), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4575), - [anon_sym_COLON_QMARK] = ACTIONS(4575), - [anon_sym_COLON_DASH] = ACTIONS(4575), - [anon_sym_PERCENT] = ACTIONS(4575), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1675] = { - [sym__concat] = ACTIONS(3998), - [anon_sym_AMP_AMP] = ACTIONS(3998), - [anon_sym_PIPE_PIPE] = ACTIONS(3998), - [anon_sym_RBRACK] = ACTIONS(3998), - [anon_sym_EQ_TILDE] = ACTIONS(3998), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ] = ACTIONS(4000), - [anon_sym_PLUS_EQ] = ACTIONS(3998), - [anon_sym_LT] = ACTIONS(4000), - [anon_sym_GT] = ACTIONS(4000), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_PLUS] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_DASH_EQ] = ACTIONS(3998), - [anon_sym_LT_EQ] = ACTIONS(3998), - [anon_sym_GT_EQ] = ACTIONS(3998), - [anon_sym_PLUS_PLUS] = ACTIONS(3998), - [anon_sym_DASH_DASH] = ACTIONS(3998), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3998), + [sym__simple_heredoc_body] = ACTIONS(4030), + [sym__heredoc_body_beginning] = ACTIONS(4030), + [sym_file_descriptor] = ACTIONS(4030), + [sym__concat] = ACTIONS(4030), + [ts_builtin_sym_end] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_PIPE] = ACTIONS(4032), + [anon_sym_RPAREN] = ACTIONS(4030), + [anon_sym_SEMI_SEMI] = ACTIONS(4030), + [anon_sym_PIPE_AMP] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4032), + [anon_sym_GT] = ACTIONS(4032), + [anon_sym_GT_GT] = ACTIONS(4030), + [anon_sym_AMP_GT] = ACTIONS(4032), + [anon_sym_AMP_GT_GT] = ACTIONS(4030), + [anon_sym_LT_AMP] = ACTIONS(4030), + [anon_sym_GT_AMP] = ACTIONS(4030), + [anon_sym_LT_LT] = ACTIONS(4032), + [anon_sym_LT_LT_DASH] = ACTIONS(4030), + [anon_sym_LT_LT_LT] = ACTIONS(4030), + [sym__special_characters] = ACTIONS(4030), + [anon_sym_DQUOTE] = ACTIONS(4030), + [anon_sym_DOLLAR] = ACTIONS(4032), + [sym_raw_string] = ACTIONS(4030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4030), + [anon_sym_BQUOTE] = ACTIONS(4030), + [anon_sym_LT_LPAREN] = ACTIONS(4030), + [anon_sym_GT_LPAREN] = ACTIONS(4030), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4032), + [sym_word] = ACTIONS(4032), + [anon_sym_LF] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4032), }, [1676] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4573), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4570), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1677] = { - [sym_concatenation] = STATE(2007), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2007), - [anon_sym_RBRACE] = ACTIONS(4571), - [anon_sym_EQ] = ACTIONS(4579), - [anon_sym_DASH] = ACTIONS(4579), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4581), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4579), - [anon_sym_COLON_QMARK] = ACTIONS(4579), - [anon_sym_COLON_DASH] = ACTIONS(4579), - [anon_sym_PERCENT] = ACTIONS(4579), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(4064), + [sym__heredoc_body_beginning] = ACTIONS(4064), + [sym_file_descriptor] = ACTIONS(4064), + [sym__concat] = ACTIONS(4064), + [ts_builtin_sym_end] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4066), + [anon_sym_PIPE] = ACTIONS(4066), + [anon_sym_RPAREN] = ACTIONS(4064), + [anon_sym_SEMI_SEMI] = ACTIONS(4064), + [anon_sym_PIPE_AMP] = ACTIONS(4064), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_PIPE_PIPE] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(4066), + [anon_sym_GT] = ACTIONS(4066), + [anon_sym_GT_GT] = ACTIONS(4064), + [anon_sym_AMP_GT] = ACTIONS(4066), + [anon_sym_AMP_GT_GT] = ACTIONS(4064), + [anon_sym_LT_AMP] = ACTIONS(4064), + [anon_sym_GT_AMP] = ACTIONS(4064), + [anon_sym_LT_LT] = ACTIONS(4066), + [anon_sym_LT_LT_DASH] = ACTIONS(4064), + [anon_sym_LT_LT_LT] = ACTIONS(4064), + [sym__special_characters] = ACTIONS(4064), + [anon_sym_DQUOTE] = ACTIONS(4064), + [anon_sym_DOLLAR] = ACTIONS(4066), + [sym_raw_string] = ACTIONS(4064), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4064), + [anon_sym_BQUOTE] = ACTIONS(4064), + [anon_sym_LT_LPAREN] = ACTIONS(4064), + [anon_sym_GT_LPAREN] = ACTIONS(4064), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4066), + [sym_word] = ACTIONS(4066), + [anon_sym_LF] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4066), }, [1678] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4571), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4572), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1679] = { - [sym__concat] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_RBRACK] = ACTIONS(4043), - [anon_sym_EQ_TILDE] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4043), - [anon_sym_EQ] = ACTIONS(4045), - [anon_sym_PLUS_EQ] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4045), - [anon_sym_GT] = ACTIONS(4045), - [anon_sym_BANG_EQ] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4045), - [anon_sym_DASH] = ACTIONS(4045), - [anon_sym_DASH_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4043), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(4572), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [1680] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4583), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(4070), + [sym__heredoc_body_beginning] = ACTIONS(4070), + [sym_file_descriptor] = ACTIONS(4070), + [sym__concat] = ACTIONS(4070), + [ts_builtin_sym_end] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym_PIPE] = ACTIONS(4072), + [anon_sym_RPAREN] = ACTIONS(4070), + [anon_sym_SEMI_SEMI] = ACTIONS(4070), + [anon_sym_PIPE_AMP] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_PIPE_PIPE] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4072), + [anon_sym_GT] = ACTIONS(4072), + [anon_sym_GT_GT] = ACTIONS(4070), + [anon_sym_AMP_GT] = ACTIONS(4072), + [anon_sym_AMP_GT_GT] = ACTIONS(4070), + [anon_sym_LT_AMP] = ACTIONS(4070), + [anon_sym_GT_AMP] = ACTIONS(4070), + [anon_sym_LT_LT] = ACTIONS(4072), + [anon_sym_LT_LT_DASH] = ACTIONS(4070), + [anon_sym_LT_LT_LT] = ACTIONS(4070), + [sym__special_characters] = ACTIONS(4070), + [anon_sym_DQUOTE] = ACTIONS(4070), + [anon_sym_DOLLAR] = ACTIONS(4072), + [sym_raw_string] = ACTIONS(4070), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4070), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4070), + [anon_sym_BQUOTE] = ACTIONS(4070), + [anon_sym_LT_LPAREN] = ACTIONS(4070), + [anon_sym_GT_LPAREN] = ACTIONS(4070), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4072), + [sym_word] = ACTIONS(4072), + [anon_sym_LF] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4072), }, [1681] = { - [sym__concat] = ACTIONS(4065), - [anon_sym_AMP_AMP] = ACTIONS(4065), - [anon_sym_PIPE_PIPE] = ACTIONS(4065), - [anon_sym_RBRACK] = ACTIONS(4065), - [anon_sym_EQ_TILDE] = ACTIONS(4065), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4065), - [anon_sym_LT] = ACTIONS(4067), - [anon_sym_GT] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_PLUS] = ACTIONS(4067), - [anon_sym_DASH] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4065), - [anon_sym_LT_EQ] = ACTIONS(4065), - [anon_sym_GT_EQ] = ACTIONS(4065), - [anon_sym_PLUS_PLUS] = ACTIONS(4065), - [anon_sym_DASH_DASH] = ACTIONS(4065), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4065), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4574), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1682] = { - [sym__concat] = ACTIONS(4089), - [anon_sym_AMP_AMP] = ACTIONS(4089), - [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_RBRACK] = ACTIONS(4089), - [anon_sym_EQ_TILDE] = ACTIONS(4089), - [anon_sym_EQ_EQ] = ACTIONS(4089), - [anon_sym_EQ] = ACTIONS(4091), - [anon_sym_PLUS_EQ] = ACTIONS(4089), - [anon_sym_LT] = ACTIONS(4091), - [anon_sym_GT] = ACTIONS(4091), - [anon_sym_BANG_EQ] = ACTIONS(4089), - [anon_sym_PLUS] = ACTIONS(4091), - [anon_sym_DASH] = ACTIONS(4091), - [anon_sym_DASH_EQ] = ACTIONS(4089), - [anon_sym_LT_EQ] = ACTIONS(4089), - [anon_sym_GT_EQ] = ACTIONS(4089), - [anon_sym_PLUS_PLUS] = ACTIONS(4089), - [anon_sym_DASH_DASH] = ACTIONS(4089), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4089), + [sym_file_descriptor] = ACTIONS(3921), + [sym__concat] = ACTIONS(3921), + [sym_variable_name] = ACTIONS(3921), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_GT] = ACTIONS(3923), + [anon_sym_GT_GT] = ACTIONS(3921), + [anon_sym_AMP_GT] = ACTIONS(3923), + [anon_sym_AMP_GT_GT] = ACTIONS(3921), + [anon_sym_LT_AMP] = ACTIONS(3921), + [anon_sym_GT_AMP] = ACTIONS(3921), + [sym__special_characters] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_DOLLAR] = ACTIONS(3923), + [sym_raw_string] = ACTIONS(3921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3921), + [anon_sym_BQUOTE] = ACTIONS(3921), + [anon_sym_LT_LPAREN] = ACTIONS(3921), + [anon_sym_GT_LPAREN] = ACTIONS(3921), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3921), }, [1683] = { - [sym_variable_name] = ACTIONS(3265), - [ts_builtin_sym_end] = ACTIONS(3265), - [anon_sym_SEMI] = ACTIONS(3267), - [anon_sym_PIPE] = ACTIONS(3267), - [anon_sym_RPAREN] = ACTIONS(3265), - [anon_sym_SEMI_SEMI] = ACTIONS(3265), - [anon_sym_PIPE_AMP] = ACTIONS(3265), - [anon_sym_AMP_AMP] = ACTIONS(3265), - [anon_sym_PIPE_PIPE] = ACTIONS(3265), - [sym__special_characters] = ACTIONS(3265), - [anon_sym_DQUOTE] = ACTIONS(3265), - [anon_sym_DOLLAR] = ACTIONS(3267), - [sym_raw_string] = ACTIONS(3265), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3265), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3265), - [anon_sym_BQUOTE] = ACTIONS(3265), - [anon_sym_LT_LPAREN] = ACTIONS(3265), - [anon_sym_GT_LPAREN] = ACTIONS(3265), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3267), - [sym_word] = ACTIONS(3267), - [anon_sym_LF] = ACTIONS(3265), - [anon_sym_AMP] = ACTIONS(3267), + [sym_file_descriptor] = ACTIONS(3929), + [sym__concat] = ACTIONS(3929), + [sym_variable_name] = ACTIONS(3929), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_GT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_AMP_GT] = ACTIONS(3931), + [anon_sym_AMP_GT_GT] = ACTIONS(3929), + [anon_sym_LT_AMP] = ACTIONS(3929), + [anon_sym_GT_AMP] = ACTIONS(3929), + [sym__special_characters] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_DOLLAR] = ACTIONS(3931), + [sym_raw_string] = ACTIONS(3929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3929), + [anon_sym_BQUOTE] = ACTIONS(3929), + [anon_sym_LT_LPAREN] = ACTIONS(3929), + [anon_sym_GT_LPAREN] = ACTIONS(3929), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3929), }, [1684] = { - [sym__concat] = ACTIONS(3934), - [sym_variable_name] = ACTIONS(3934), - [ts_builtin_sym_end] = ACTIONS(3934), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym_PIPE] = ACTIONS(3936), - [anon_sym_RPAREN] = ACTIONS(3934), - [anon_sym_SEMI_SEMI] = ACTIONS(3934), - [anon_sym_PIPE_AMP] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [sym__special_characters] = ACTIONS(3934), - [anon_sym_DQUOTE] = ACTIONS(3934), - [anon_sym_DOLLAR] = ACTIONS(3936), - [sym_raw_string] = ACTIONS(3934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), - [anon_sym_BQUOTE] = ACTIONS(3934), - [anon_sym_LT_LPAREN] = ACTIONS(3934), - [anon_sym_GT_LPAREN] = ACTIONS(3934), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3936), - [sym_word] = ACTIONS(3936), - [anon_sym_LF] = ACTIONS(3934), - [anon_sym_AMP] = ACTIONS(3936), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4576), + [sym_comment] = ACTIONS(57), }, [1685] = { - [sym__concat] = ACTIONS(3942), - [sym_variable_name] = ACTIONS(3942), - [ts_builtin_sym_end] = ACTIONS(3942), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym_PIPE] = ACTIONS(3944), - [anon_sym_RPAREN] = ACTIONS(3942), - [anon_sym_SEMI_SEMI] = ACTIONS(3942), - [anon_sym_PIPE_AMP] = ACTIONS(3942), - [anon_sym_AMP_AMP] = ACTIONS(3942), - [anon_sym_PIPE_PIPE] = ACTIONS(3942), - [sym__special_characters] = ACTIONS(3942), - [anon_sym_DQUOTE] = ACTIONS(3942), - [anon_sym_DOLLAR] = ACTIONS(3944), - [sym_raw_string] = ACTIONS(3942), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), - [anon_sym_BQUOTE] = ACTIONS(3942), - [anon_sym_LT_LPAREN] = ACTIONS(3942), - [anon_sym_GT_LPAREN] = ACTIONS(3942), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3944), - [sym_word] = ACTIONS(3944), - [anon_sym_LF] = ACTIONS(3942), - [anon_sym_AMP] = ACTIONS(3944), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4578), + [sym_comment] = ACTIONS(57), }, [1686] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4585), - [sym_comment] = ACTIONS(55), + [anon_sym_RBRACE] = ACTIONS(4578), + [sym_comment] = ACTIONS(57), }, [1687] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4587), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(1986), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1986), + [anon_sym_RBRACE] = ACTIONS(4580), + [anon_sym_EQ] = ACTIONS(4582), + [anon_sym_DASH] = ACTIONS(4582), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4584), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4582), + [anon_sym_COLON_QMARK] = ACTIONS(4582), + [anon_sym_COLON_DASH] = ACTIONS(4582), + [anon_sym_PERCENT] = ACTIONS(4582), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1688] = { - [anon_sym_RBRACE] = ACTIONS(4587), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(3985), + [sym__concat] = ACTIONS(3985), + [sym_variable_name] = ACTIONS(3985), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_GT_GT] = ACTIONS(3985), + [anon_sym_AMP_GT] = ACTIONS(3987), + [anon_sym_AMP_GT_GT] = ACTIONS(3985), + [anon_sym_LT_AMP] = ACTIONS(3985), + [anon_sym_GT_AMP] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3985), }, [1689] = { - [sym_concatenation] = STATE(2012), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2012), - [anon_sym_RBRACE] = ACTIONS(4589), - [anon_sym_EQ] = ACTIONS(4591), - [anon_sym_DASH] = ACTIONS(4591), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4593), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4591), - [anon_sym_COLON_QMARK] = ACTIONS(4591), - [anon_sym_COLON_DASH] = ACTIONS(4591), - [anon_sym_PERCENT] = ACTIONS(4591), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4580), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1690] = { - [sym__concat] = ACTIONS(3998), - [sym_variable_name] = ACTIONS(3998), - [ts_builtin_sym_end] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym_PIPE] = ACTIONS(4000), - [anon_sym_RPAREN] = ACTIONS(3998), - [anon_sym_SEMI_SEMI] = ACTIONS(3998), - [anon_sym_PIPE_AMP] = ACTIONS(3998), - [anon_sym_AMP_AMP] = ACTIONS(3998), - [anon_sym_PIPE_PIPE] = ACTIONS(3998), - [sym__special_characters] = ACTIONS(3998), - [anon_sym_DQUOTE] = ACTIONS(3998), - [anon_sym_DOLLAR] = ACTIONS(4000), - [sym_raw_string] = ACTIONS(3998), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), - [anon_sym_BQUOTE] = ACTIONS(3998), - [anon_sym_LT_LPAREN] = ACTIONS(3998), - [anon_sym_GT_LPAREN] = ACTIONS(3998), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4000), - [sym_word] = ACTIONS(4000), - [anon_sym_LF] = ACTIONS(3998), - [anon_sym_AMP] = ACTIONS(4000), + [sym_concatenation] = STATE(1987), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1987), + [anon_sym_RBRACE] = ACTIONS(4578), + [anon_sym_EQ] = ACTIONS(4586), + [anon_sym_DASH] = ACTIONS(4586), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4588), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4586), + [anon_sym_COLON_QMARK] = ACTIONS(4586), + [anon_sym_COLON_DASH] = ACTIONS(4586), + [anon_sym_PERCENT] = ACTIONS(4586), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1691] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4589), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4578), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1692] = { - [sym_concatenation] = STATE(2013), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2013), - [anon_sym_RBRACE] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(4595), - [anon_sym_DASH] = ACTIONS(4595), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4597), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4595), - [anon_sym_COLON_QMARK] = ACTIONS(4595), - [anon_sym_COLON_DASH] = ACTIONS(4595), - [anon_sym_PERCENT] = ACTIONS(4595), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(4030), + [sym__concat] = ACTIONS(4030), + [sym_variable_name] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4032), + [anon_sym_GT] = ACTIONS(4032), + [anon_sym_GT_GT] = ACTIONS(4030), + [anon_sym_AMP_GT] = ACTIONS(4032), + [anon_sym_AMP_GT_GT] = ACTIONS(4030), + [anon_sym_LT_AMP] = ACTIONS(4030), + [anon_sym_GT_AMP] = ACTIONS(4030), + [sym__special_characters] = ACTIONS(4030), + [anon_sym_DQUOTE] = ACTIONS(4030), + [anon_sym_DOLLAR] = ACTIONS(4032), + [sym_raw_string] = ACTIONS(4030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4030), + [anon_sym_BQUOTE] = ACTIONS(4030), + [anon_sym_LT_LPAREN] = ACTIONS(4030), + [anon_sym_GT_LPAREN] = ACTIONS(4030), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4030), }, [1693] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4590), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1694] = { - [sym__concat] = ACTIONS(4043), - [sym_variable_name] = ACTIONS(4043), - [ts_builtin_sym_end] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4045), - [anon_sym_PIPE] = ACTIONS(4045), - [anon_sym_RPAREN] = ACTIONS(4043), - [anon_sym_SEMI_SEMI] = ACTIONS(4043), - [anon_sym_PIPE_AMP] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [sym__special_characters] = ACTIONS(4043), - [anon_sym_DQUOTE] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(4045), - [sym_raw_string] = ACTIONS(4043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), - [anon_sym_BQUOTE] = ACTIONS(4043), - [anon_sym_LT_LPAREN] = ACTIONS(4043), - [anon_sym_GT_LPAREN] = ACTIONS(4043), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4045), - [sym_word] = ACTIONS(4045), - [anon_sym_LF] = ACTIONS(4043), - [anon_sym_AMP] = ACTIONS(4045), + [sym_file_descriptor] = ACTIONS(4064), + [sym__concat] = ACTIONS(4064), + [sym_variable_name] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(4066), + [anon_sym_GT] = ACTIONS(4066), + [anon_sym_GT_GT] = ACTIONS(4064), + [anon_sym_AMP_GT] = ACTIONS(4066), + [anon_sym_AMP_GT_GT] = ACTIONS(4064), + [anon_sym_LT_AMP] = ACTIONS(4064), + [anon_sym_GT_AMP] = ACTIONS(4064), + [sym__special_characters] = ACTIONS(4064), + [anon_sym_DQUOTE] = ACTIONS(4064), + [anon_sym_DOLLAR] = ACTIONS(4066), + [sym_raw_string] = ACTIONS(4064), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4064), + [anon_sym_BQUOTE] = ACTIONS(4064), + [anon_sym_LT_LPAREN] = ACTIONS(4064), + [anon_sym_GT_LPAREN] = ACTIONS(4064), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4064), }, [1695] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4599), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4592), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1696] = { - [sym__concat] = ACTIONS(4065), - [sym_variable_name] = ACTIONS(4065), - [ts_builtin_sym_end] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_PIPE] = ACTIONS(4067), - [anon_sym_RPAREN] = ACTIONS(4065), - [anon_sym_SEMI_SEMI] = ACTIONS(4065), - [anon_sym_PIPE_AMP] = ACTIONS(4065), - [anon_sym_AMP_AMP] = ACTIONS(4065), - [anon_sym_PIPE_PIPE] = ACTIONS(4065), - [sym__special_characters] = ACTIONS(4065), - [anon_sym_DQUOTE] = ACTIONS(4065), - [anon_sym_DOLLAR] = ACTIONS(4067), - [sym_raw_string] = ACTIONS(4065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), - [anon_sym_BQUOTE] = ACTIONS(4065), - [anon_sym_LT_LPAREN] = ACTIONS(4065), - [anon_sym_GT_LPAREN] = ACTIONS(4065), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4067), - [sym_word] = ACTIONS(4067), - [anon_sym_LF] = ACTIONS(4065), - [anon_sym_AMP] = ACTIONS(4067), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(4592), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [1697] = { - [sym__concat] = ACTIONS(4089), - [sym_variable_name] = ACTIONS(4089), - [ts_builtin_sym_end] = ACTIONS(4089), - [anon_sym_SEMI] = ACTIONS(4091), - [anon_sym_PIPE] = ACTIONS(4091), - [anon_sym_RPAREN] = ACTIONS(4089), - [anon_sym_SEMI_SEMI] = ACTIONS(4089), - [anon_sym_PIPE_AMP] = ACTIONS(4089), - [anon_sym_AMP_AMP] = ACTIONS(4089), - [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [sym__special_characters] = ACTIONS(4089), - [anon_sym_DQUOTE] = ACTIONS(4089), - [anon_sym_DOLLAR] = ACTIONS(4091), - [sym_raw_string] = ACTIONS(4089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), - [anon_sym_BQUOTE] = ACTIONS(4089), - [anon_sym_LT_LPAREN] = ACTIONS(4089), - [anon_sym_GT_LPAREN] = ACTIONS(4089), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4091), - [sym_word] = ACTIONS(4091), - [anon_sym_LF] = ACTIONS(4089), - [anon_sym_AMP] = ACTIONS(4091), + [sym_file_descriptor] = ACTIONS(4070), + [sym__concat] = ACTIONS(4070), + [sym_variable_name] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4072), + [anon_sym_GT] = ACTIONS(4072), + [anon_sym_GT_GT] = ACTIONS(4070), + [anon_sym_AMP_GT] = ACTIONS(4072), + [anon_sym_AMP_GT_GT] = ACTIONS(4070), + [anon_sym_LT_AMP] = ACTIONS(4070), + [anon_sym_GT_AMP] = ACTIONS(4070), + [sym__special_characters] = ACTIONS(4070), + [anon_sym_DQUOTE] = ACTIONS(4070), + [anon_sym_DOLLAR] = ACTIONS(4072), + [sym_raw_string] = ACTIONS(4070), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4070), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4070), + [anon_sym_BQUOTE] = ACTIONS(4070), + [anon_sym_LT_LPAREN] = ACTIONS(4070), + [anon_sym_GT_LPAREN] = ACTIONS(4070), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4070), }, [1698] = { - [sym__concat] = ACTIONS(3934), - [ts_builtin_sym_end] = ACTIONS(3934), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym_PIPE] = ACTIONS(3936), - [anon_sym_RPAREN] = ACTIONS(3934), - [anon_sym_SEMI_SEMI] = ACTIONS(3934), - [anon_sym_PIPE_AMP] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [sym__special_characters] = ACTIONS(3934), - [anon_sym_DQUOTE] = ACTIONS(3934), - [anon_sym_DOLLAR] = ACTIONS(3936), - [sym_raw_string] = ACTIONS(3934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), - [anon_sym_BQUOTE] = ACTIONS(3934), - [anon_sym_LT_LPAREN] = ACTIONS(3934), - [anon_sym_GT_LPAREN] = ACTIONS(3934), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3936), - [sym_word] = ACTIONS(3936), - [anon_sym_LF] = ACTIONS(3934), - [anon_sym_AMP] = ACTIONS(3936), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4594), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1699] = { - [sym__concat] = ACTIONS(3942), - [ts_builtin_sym_end] = ACTIONS(3942), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym_PIPE] = ACTIONS(3944), - [anon_sym_RPAREN] = ACTIONS(3942), - [anon_sym_SEMI_SEMI] = ACTIONS(3942), - [anon_sym_PIPE_AMP] = ACTIONS(3942), - [anon_sym_AMP_AMP] = ACTIONS(3942), - [anon_sym_PIPE_PIPE] = ACTIONS(3942), - [sym__special_characters] = ACTIONS(3942), - [anon_sym_DQUOTE] = ACTIONS(3942), - [anon_sym_DOLLAR] = ACTIONS(3944), - [sym_raw_string] = ACTIONS(3942), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), - [anon_sym_BQUOTE] = ACTIONS(3942), - [anon_sym_LT_LPAREN] = ACTIONS(3942), - [anon_sym_GT_LPAREN] = ACTIONS(3942), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3944), - [sym_word] = ACTIONS(3944), - [anon_sym_LF] = ACTIONS(3942), - [anon_sym_AMP] = ACTIONS(3944), + [sym__concat] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3923), + [anon_sym_DOLLAR] = ACTIONS(3923), + [sym__string_content] = ACTIONS(3921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3923), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3923), + [anon_sym_BQUOTE] = ACTIONS(3923), + [sym_comment] = ACTIONS(265), }, [1700] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4601), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3931), + [anon_sym_DOLLAR] = ACTIONS(3931), + [sym__string_content] = ACTIONS(3929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3931), + [anon_sym_BQUOTE] = ACTIONS(3931), + [sym_comment] = ACTIONS(265), }, [1701] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4603), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4596), + [sym_comment] = ACTIONS(57), }, [1702] = { - [anon_sym_RBRACE] = ACTIONS(4603), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4598), + [sym_comment] = ACTIONS(57), }, [1703] = { - [sym_concatenation] = STATE(2018), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2018), - [anon_sym_RBRACE] = ACTIONS(4605), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_DASH] = ACTIONS(4607), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4609), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4607), - [anon_sym_COLON_QMARK] = ACTIONS(4607), - [anon_sym_COLON_DASH] = ACTIONS(4607), - [anon_sym_PERCENT] = ACTIONS(4607), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(4598), + [sym_comment] = ACTIONS(57), }, [1704] = { - [sym__concat] = ACTIONS(3998), - [ts_builtin_sym_end] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym_PIPE] = ACTIONS(4000), - [anon_sym_RPAREN] = ACTIONS(3998), - [anon_sym_SEMI_SEMI] = ACTIONS(3998), - [anon_sym_PIPE_AMP] = ACTIONS(3998), - [anon_sym_AMP_AMP] = ACTIONS(3998), - [anon_sym_PIPE_PIPE] = ACTIONS(3998), - [sym__special_characters] = ACTIONS(3998), - [anon_sym_DQUOTE] = ACTIONS(3998), - [anon_sym_DOLLAR] = ACTIONS(4000), - [sym_raw_string] = ACTIONS(3998), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), - [anon_sym_BQUOTE] = ACTIONS(3998), - [anon_sym_LT_LPAREN] = ACTIONS(3998), - [anon_sym_GT_LPAREN] = ACTIONS(3998), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4000), - [sym_word] = ACTIONS(4000), - [anon_sym_LF] = ACTIONS(3998), - [anon_sym_AMP] = ACTIONS(4000), + [sym_concatenation] = STATE(1994), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1994), + [anon_sym_RBRACE] = ACTIONS(4600), + [anon_sym_EQ] = ACTIONS(4602), + [anon_sym_DASH] = ACTIONS(4602), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4604), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4602), + [anon_sym_COLON_QMARK] = ACTIONS(4602), + [anon_sym_COLON_DASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1705] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4605), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3987), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym__string_content] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3987), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3987), + [anon_sym_BQUOTE] = ACTIONS(3987), + [sym_comment] = ACTIONS(265), }, [1706] = { - [sym_concatenation] = STATE(2019), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2019), - [anon_sym_RBRACE] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(4611), - [anon_sym_DASH] = ACTIONS(4611), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4613), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4611), - [anon_sym_COLON_QMARK] = ACTIONS(4611), - [anon_sym_COLON_DASH] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4600), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1707] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(1995), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(1995), + [anon_sym_RBRACE] = ACTIONS(4598), + [anon_sym_EQ] = ACTIONS(4606), + [anon_sym_DASH] = ACTIONS(4606), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4608), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4606), + [anon_sym_COLON_QMARK] = ACTIONS(4606), + [anon_sym_COLON_DASH] = ACTIONS(4606), + [anon_sym_PERCENT] = ACTIONS(4606), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1708] = { - [sym__concat] = ACTIONS(4043), - [ts_builtin_sym_end] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4045), - [anon_sym_PIPE] = ACTIONS(4045), - [anon_sym_RPAREN] = ACTIONS(4043), - [anon_sym_SEMI_SEMI] = ACTIONS(4043), - [anon_sym_PIPE_AMP] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [sym__special_characters] = ACTIONS(4043), - [anon_sym_DQUOTE] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(4045), - [sym_raw_string] = ACTIONS(4043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), - [anon_sym_BQUOTE] = ACTIONS(4043), - [anon_sym_LT_LPAREN] = ACTIONS(4043), - [anon_sym_GT_LPAREN] = ACTIONS(4043), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4045), - [sym_word] = ACTIONS(4045), - [anon_sym_LF] = ACTIONS(4043), - [anon_sym_AMP] = ACTIONS(4045), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4598), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1709] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4615), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(4030), + [anon_sym_DQUOTE] = ACTIONS(4032), + [anon_sym_DOLLAR] = ACTIONS(4032), + [sym__string_content] = ACTIONS(4030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4032), + [anon_sym_BQUOTE] = ACTIONS(4032), + [sym_comment] = ACTIONS(265), }, [1710] = { - [sym__concat] = ACTIONS(4065), - [ts_builtin_sym_end] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_PIPE] = ACTIONS(4067), - [anon_sym_RPAREN] = ACTIONS(4065), - [anon_sym_SEMI_SEMI] = ACTIONS(4065), - [anon_sym_PIPE_AMP] = ACTIONS(4065), - [anon_sym_AMP_AMP] = ACTIONS(4065), - [anon_sym_PIPE_PIPE] = ACTIONS(4065), - [sym__special_characters] = ACTIONS(4065), - [anon_sym_DQUOTE] = ACTIONS(4065), - [anon_sym_DOLLAR] = ACTIONS(4067), - [sym_raw_string] = ACTIONS(4065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), - [anon_sym_BQUOTE] = ACTIONS(4065), - [anon_sym_LT_LPAREN] = ACTIONS(4065), - [anon_sym_GT_LPAREN] = ACTIONS(4065), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4067), - [sym_word] = ACTIONS(4067), - [anon_sym_LF] = ACTIONS(4065), - [anon_sym_AMP] = ACTIONS(4067), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4610), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1711] = { - [sym__concat] = ACTIONS(4089), - [ts_builtin_sym_end] = ACTIONS(4089), - [anon_sym_SEMI] = ACTIONS(4091), - [anon_sym_PIPE] = ACTIONS(4091), - [anon_sym_RPAREN] = ACTIONS(4089), - [anon_sym_SEMI_SEMI] = ACTIONS(4089), - [anon_sym_PIPE_AMP] = ACTIONS(4089), - [anon_sym_AMP_AMP] = ACTIONS(4089), - [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [sym__special_characters] = ACTIONS(4089), - [anon_sym_DQUOTE] = ACTIONS(4089), - [anon_sym_DOLLAR] = ACTIONS(4091), - [sym_raw_string] = ACTIONS(4089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), - [anon_sym_BQUOTE] = ACTIONS(4089), - [anon_sym_LT_LPAREN] = ACTIONS(4089), - [anon_sym_GT_LPAREN] = ACTIONS(4089), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4091), - [sym_word] = ACTIONS(4091), - [anon_sym_LF] = ACTIONS(4089), - [anon_sym_AMP] = ACTIONS(4091), + [sym__concat] = ACTIONS(4064), + [anon_sym_DQUOTE] = ACTIONS(4066), + [anon_sym_DOLLAR] = ACTIONS(4066), + [sym__string_content] = ACTIONS(4064), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4066), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4066), + [anon_sym_BQUOTE] = ACTIONS(4066), + [sym_comment] = ACTIONS(265), }, [1712] = { - [sym_file_descriptor] = ACTIONS(3934), - [sym__concat] = ACTIONS(3934), - [sym_variable_name] = ACTIONS(3934), - [anon_sym_LT] = ACTIONS(3936), - [anon_sym_GT] = ACTIONS(3936), - [anon_sym_GT_GT] = ACTIONS(3934), - [anon_sym_AMP_GT] = ACTIONS(3936), - [anon_sym_AMP_GT_GT] = ACTIONS(3934), - [anon_sym_LT_AMP] = ACTIONS(3934), - [anon_sym_GT_AMP] = ACTIONS(3934), - [sym__special_characters] = ACTIONS(3934), - [anon_sym_DQUOTE] = ACTIONS(3934), - [anon_sym_DOLLAR] = ACTIONS(3936), - [sym_raw_string] = ACTIONS(3934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), - [anon_sym_BQUOTE] = ACTIONS(3934), - [anon_sym_LT_LPAREN] = ACTIONS(3934), - [anon_sym_GT_LPAREN] = ACTIONS(3934), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3934), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4612), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1713] = { - [sym_file_descriptor] = ACTIONS(3942), - [sym__concat] = ACTIONS(3942), - [sym_variable_name] = ACTIONS(3942), - [anon_sym_LT] = ACTIONS(3944), - [anon_sym_GT] = ACTIONS(3944), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_AMP_GT] = ACTIONS(3944), - [anon_sym_AMP_GT_GT] = ACTIONS(3942), - [anon_sym_LT_AMP] = ACTIONS(3942), - [anon_sym_GT_AMP] = ACTIONS(3942), - [sym__special_characters] = ACTIONS(3942), - [anon_sym_DQUOTE] = ACTIONS(3942), - [anon_sym_DOLLAR] = ACTIONS(3944), - [sym_raw_string] = ACTIONS(3942), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), - [anon_sym_BQUOTE] = ACTIONS(3942), - [anon_sym_LT_LPAREN] = ACTIONS(3942), - [anon_sym_GT_LPAREN] = ACTIONS(3942), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3942), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(4612), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [1714] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4617), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(4614), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_EQ] = ACTIONS(4616), + [anon_sym_DASH] = ACTIONS(4616), + [sym__special_characters] = ACTIONS(4616), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_DOLLAR] = ACTIONS(4616), + [sym_raw_string] = ACTIONS(3184), + [anon_sym_POUND] = ACTIONS(3184), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3184), + [anon_sym_COLON] = ACTIONS(4616), + [anon_sym_COLON_QMARK] = ACTIONS(4616), + [anon_sym_COLON_DASH] = ACTIONS(4616), + [anon_sym_PERCENT] = ACTIONS(4616), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3184), + [anon_sym_BQUOTE] = ACTIONS(3184), + [anon_sym_LT_LPAREN] = ACTIONS(3184), + [anon_sym_GT_LPAREN] = ACTIONS(3184), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(4616), }, [1715] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4619), - [sym_comment] = ACTIONS(55), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_EQ] = ACTIONS(4616), + [anon_sym_DASH] = ACTIONS(4616), + [sym__special_characters] = ACTIONS(4616), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_DOLLAR] = ACTIONS(4616), + [sym_raw_string] = ACTIONS(3184), + [anon_sym_POUND] = ACTIONS(3184), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3184), + [anon_sym_COLON] = ACTIONS(4616), + [anon_sym_COLON_QMARK] = ACTIONS(4616), + [anon_sym_COLON_DASH] = ACTIONS(4616), + [anon_sym_PERCENT] = ACTIONS(4616), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3184), + [anon_sym_BQUOTE] = ACTIONS(3184), + [anon_sym_LT_LPAREN] = ACTIONS(3184), + [anon_sym_GT_LPAREN] = ACTIONS(3184), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(4616), }, [1716] = { - [anon_sym_RBRACE] = ACTIONS(4619), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(4618), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_EQ] = ACTIONS(4620), + [anon_sym_DASH] = ACTIONS(4620), + [sym__special_characters] = ACTIONS(4620), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_DOLLAR] = ACTIONS(4620), + [sym_raw_string] = ACTIONS(3188), + [anon_sym_POUND] = ACTIONS(3188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3188), + [anon_sym_COLON] = ACTIONS(4620), + [anon_sym_COLON_QMARK] = ACTIONS(4620), + [anon_sym_COLON_DASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4620), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3188), + [anon_sym_BQUOTE] = ACTIONS(3188), + [anon_sym_LT_LPAREN] = ACTIONS(3188), + [anon_sym_GT_LPAREN] = ACTIONS(3188), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(4620), }, [1717] = { - [sym_concatenation] = STATE(2024), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2024), - [anon_sym_RBRACE] = ACTIONS(4621), - [anon_sym_EQ] = ACTIONS(4623), - [anon_sym_DASH] = ACTIONS(4623), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4625), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4623), - [anon_sym_COLON_QMARK] = ACTIONS(4623), - [anon_sym_COLON_DASH] = ACTIONS(4623), - [anon_sym_PERCENT] = ACTIONS(4623), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_EQ] = ACTIONS(4620), + [anon_sym_DASH] = ACTIONS(4620), + [sym__special_characters] = ACTIONS(4620), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_DOLLAR] = ACTIONS(4620), + [sym_raw_string] = ACTIONS(3188), + [anon_sym_POUND] = ACTIONS(3188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3188), + [anon_sym_COLON] = ACTIONS(4620), + [anon_sym_COLON_QMARK] = ACTIONS(4620), + [anon_sym_COLON_DASH] = ACTIONS(4620), + [anon_sym_PERCENT] = ACTIONS(4620), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3188), + [anon_sym_BQUOTE] = ACTIONS(3188), + [anon_sym_LT_LPAREN] = ACTIONS(3188), + [anon_sym_GT_LPAREN] = ACTIONS(3188), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(4620), }, [1718] = { - [sym_file_descriptor] = ACTIONS(3998), - [sym__concat] = ACTIONS(3998), - [sym_variable_name] = ACTIONS(3998), - [anon_sym_LT] = ACTIONS(4000), - [anon_sym_GT] = ACTIONS(4000), - [anon_sym_GT_GT] = ACTIONS(3998), - [anon_sym_AMP_GT] = ACTIONS(4000), - [anon_sym_AMP_GT_GT] = ACTIONS(3998), - [anon_sym_LT_AMP] = ACTIONS(3998), - [anon_sym_GT_AMP] = ACTIONS(3998), - [sym__special_characters] = ACTIONS(3998), - [anon_sym_DQUOTE] = ACTIONS(3998), - [anon_sym_DOLLAR] = ACTIONS(4000), - [sym_raw_string] = ACTIONS(3998), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), - [anon_sym_BQUOTE] = ACTIONS(3998), - [anon_sym_LT_LPAREN] = ACTIONS(3998), - [anon_sym_GT_LPAREN] = ACTIONS(3998), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3998), + [sym__concat] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), }, [1719] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4621), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1719), + [sym__concat] = ACTIONS(4622), + [anon_sym_RBRACE] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), }, [1720] = { - [sym_concatenation] = STATE(2025), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2025), - [anon_sym_RBRACE] = ACTIONS(4619), - [anon_sym_EQ] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4629), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4627), - [anon_sym_COLON_QMARK] = ACTIONS(4627), - [anon_sym_COLON_DASH] = ACTIONS(4627), - [anon_sym_PERCENT] = ACTIONS(4627), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(1733), + [anon_sym_RBRACE] = ACTIONS(1733), + [sym_comment] = ACTIONS(57), }, [1721] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4619), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(4625), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [1722] = { - [sym_file_descriptor] = ACTIONS(4043), - [sym__concat] = ACTIONS(4043), - [sym_variable_name] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4045), - [anon_sym_GT] = ACTIONS(4045), - [anon_sym_GT_GT] = ACTIONS(4043), - [anon_sym_AMP_GT] = ACTIONS(4045), - [anon_sym_AMP_GT_GT] = ACTIONS(4043), - [anon_sym_LT_AMP] = ACTIONS(4043), - [anon_sym_GT_AMP] = ACTIONS(4043), - [sym__special_characters] = ACTIONS(4043), - [anon_sym_DQUOTE] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(4045), - [sym_raw_string] = ACTIONS(4043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), - [anon_sym_BQUOTE] = ACTIONS(4043), - [anon_sym_LT_LPAREN] = ACTIONS(4043), - [anon_sym_GT_LPAREN] = ACTIONS(4043), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4043), + [sym_concatenation] = STATE(2004), + [sym_string] = STATE(2003), + [sym_simple_expansion] = STATE(2003), + [sym_string_expansion] = STATE(2003), + [sym_expansion] = STATE(2003), + [sym_command_substitution] = STATE(2003), + [sym_process_substitution] = STATE(2003), + [anon_sym_RBRACE] = ACTIONS(4627), + [sym__special_characters] = ACTIONS(4629), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(4631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4631), }, [1723] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4631), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(4633), + [sym_comment] = ACTIONS(57), }, [1724] = { - [sym_file_descriptor] = ACTIONS(4065), - [sym__concat] = ACTIONS(4065), - [sym_variable_name] = ACTIONS(4065), - [anon_sym_LT] = ACTIONS(4067), - [anon_sym_GT] = ACTIONS(4067), - [anon_sym_GT_GT] = ACTIONS(4065), - [anon_sym_AMP_GT] = ACTIONS(4067), - [anon_sym_AMP_GT_GT] = ACTIONS(4065), - [anon_sym_LT_AMP] = ACTIONS(4065), - [anon_sym_GT_AMP] = ACTIONS(4065), - [sym__special_characters] = ACTIONS(4065), - [anon_sym_DQUOTE] = ACTIONS(4065), - [anon_sym_DOLLAR] = ACTIONS(4067), - [sym_raw_string] = ACTIONS(4065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), - [anon_sym_BQUOTE] = ACTIONS(4065), - [anon_sym_LT_LPAREN] = ACTIONS(4065), - [anon_sym_GT_LPAREN] = ACTIONS(4065), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4065), + [sym_concatenation] = STATE(2008), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2008), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_EQ] = ACTIONS(4637), + [anon_sym_DASH] = ACTIONS(4637), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(4641), + [anon_sym_COLON] = ACTIONS(4637), + [anon_sym_COLON_QMARK] = ACTIONS(4637), + [anon_sym_COLON_DASH] = ACTIONS(4637), + [anon_sym_PERCENT] = ACTIONS(4637), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1725] = { - [sym_file_descriptor] = ACTIONS(4089), - [sym__concat] = ACTIONS(4089), - [sym_variable_name] = ACTIONS(4089), - [anon_sym_LT] = ACTIONS(4091), - [anon_sym_GT] = ACTIONS(4091), - [anon_sym_GT_GT] = ACTIONS(4089), - [anon_sym_AMP_GT] = ACTIONS(4091), - [anon_sym_AMP_GT_GT] = ACTIONS(4089), - [anon_sym_LT_AMP] = ACTIONS(4089), - [anon_sym_GT_AMP] = ACTIONS(4089), - [sym__special_characters] = ACTIONS(4089), - [anon_sym_DQUOTE] = ACTIONS(4089), - [anon_sym_DOLLAR] = ACTIONS(4091), - [sym_raw_string] = ACTIONS(4089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), - [anon_sym_BQUOTE] = ACTIONS(4089), - [anon_sym_LT_LPAREN] = ACTIONS(4089), - [anon_sym_GT_LPAREN] = ACTIONS(4089), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4089), - }, - [1726] = { - [sym__concat] = ACTIONS(3934), - [anon_sym_DQUOTE] = ACTIONS(3936), - [anon_sym_DOLLAR] = ACTIONS(3936), - [sym__string_content] = ACTIONS(3934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3936), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3936), - [anon_sym_BQUOTE] = ACTIONS(3936), - [sym_comment] = ACTIONS(281), - }, - [1727] = { - [sym__concat] = ACTIONS(3942), - [anon_sym_DQUOTE] = ACTIONS(3944), - [anon_sym_DOLLAR] = ACTIONS(3944), - [sym__string_content] = ACTIONS(3942), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3944), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3944), - [anon_sym_BQUOTE] = ACTIONS(3944), - [sym_comment] = ACTIONS(281), - }, - [1728] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4633), - [sym_comment] = ACTIONS(55), - }, - [1729] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4635), - [sym_comment] = ACTIONS(55), - }, - [1730] = { - [anon_sym_RBRACE] = ACTIONS(4635), - [sym_comment] = ACTIONS(55), - }, - [1731] = { - [sym_concatenation] = STATE(2030), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2030), - [anon_sym_RBRACE] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4639), - [anon_sym_DASH] = ACTIONS(4639), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4641), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4639), - [anon_sym_COLON_QMARK] = ACTIONS(4639), - [anon_sym_COLON_DASH] = ACTIONS(4639), - [anon_sym_PERCENT] = ACTIONS(4639), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [1732] = { - [sym__concat] = ACTIONS(3998), - [anon_sym_DQUOTE] = ACTIONS(4000), - [anon_sym_DOLLAR] = ACTIONS(4000), - [sym__string_content] = ACTIONS(3998), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4000), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4000), - [anon_sym_BQUOTE] = ACTIONS(4000), - [sym_comment] = ACTIONS(281), - }, - [1733] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [1734] = { - [sym_concatenation] = STATE(2031), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2031), - [anon_sym_RBRACE] = ACTIONS(4635), + [sym_concatenation] = STATE(2010), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2010), + [anon_sym_RBRACE] = ACTIONS(4627), [anon_sym_EQ] = ACTIONS(4643), [anon_sym_DASH] = ACTIONS(4643), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), [anon_sym_POUND] = ACTIONS(4645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(4647), [anon_sym_COLON] = ACTIONS(4643), [anon_sym_COLON_QMARK] = ACTIONS(4643), [anon_sym_COLON_DASH] = ACTIONS(4643), [anon_sym_PERCENT] = ACTIONS(4643), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [1726] = { + [sym__concat] = ACTIONS(1834), + [anon_sym_RBRACE] = ACTIONS(1834), + [sym_comment] = ACTIONS(57), + }, + [1727] = { + [sym_concatenation] = STATE(2013), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2013), + [sym_regex] = ACTIONS(4649), + [anon_sym_RBRACE] = ACTIONS(4651), + [anon_sym_EQ] = ACTIONS(4653), + [anon_sym_DASH] = ACTIONS(4653), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4653), + [anon_sym_COLON_QMARK] = ACTIONS(4653), + [anon_sym_COLON_DASH] = ACTIONS(4653), + [anon_sym_PERCENT] = ACTIONS(4653), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [1728] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4651), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [1729] = { + [sym__concat] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [sym_comment] = ACTIONS(57), + }, + [1730] = { + [sym_concatenation] = STATE(2010), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2010), + [sym_regex] = ACTIONS(4657), + [anon_sym_RBRACE] = ACTIONS(4627), + [anon_sym_EQ] = ACTIONS(4643), + [anon_sym_DASH] = ACTIONS(4643), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4643), + [anon_sym_COLON_QMARK] = ACTIONS(4643), + [anon_sym_COLON_DASH] = ACTIONS(4643), + [anon_sym_PERCENT] = ACTIONS(4643), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [1731] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4627), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [1732] = { + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(4659), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), + }, + [1733] = { + [sym__concat] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [sym_comment] = ACTIONS(57), + }, + [1734] = { + [anon_sym_SEMI] = ACTIONS(4661), + [anon_sym_RPAREN] = ACTIONS(4659), + [anon_sym_SEMI_SEMI] = ACTIONS(4663), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4663), + [anon_sym_AMP] = ACTIONS(4663), }, [1735] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4635), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2018), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(4665), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(4659), + [anon_sym_SEMI_SEMI] = ACTIONS(4667), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4667), + [anon_sym_AMP] = ACTIONS(4665), }, [1736] = { - [sym__concat] = ACTIONS(4043), - [anon_sym_DQUOTE] = ACTIONS(4045), - [anon_sym_DOLLAR] = ACTIONS(4045), - [sym__string_content] = ACTIONS(4043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4045), - [anon_sym_BQUOTE] = ACTIONS(4045), - [sym_comment] = ACTIONS(281), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2018), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(4665), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(4659), + [anon_sym_SEMI_SEMI] = ACTIONS(4667), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(4667), + [anon_sym_AMP] = ACTIONS(4665), }, [1737] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4647), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(4659), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1738] = { - [sym__concat] = ACTIONS(4065), - [anon_sym_DQUOTE] = ACTIONS(4067), - [anon_sym_DOLLAR] = ACTIONS(4067), - [sym__string_content] = ACTIONS(4065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4067), - [anon_sym_BQUOTE] = ACTIONS(4067), - [sym_comment] = ACTIONS(281), + [anon_sym_SEMI] = ACTIONS(4669), + [anon_sym_SEMI_SEMI] = ACTIONS(4671), + [anon_sym_BQUOTE] = ACTIONS(4659), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4671), + [anon_sym_AMP] = ACTIONS(4671), }, [1739] = { - [sym__concat] = ACTIONS(4649), - [anon_sym_RBRACE] = ACTIONS(3211), - [anon_sym_EQ] = ACTIONS(4651), - [anon_sym_DASH] = ACTIONS(4651), - [sym__special_characters] = ACTIONS(4651), - [anon_sym_DQUOTE] = ACTIONS(3211), - [anon_sym_DOLLAR] = ACTIONS(4651), - [sym_raw_string] = ACTIONS(3211), - [anon_sym_POUND] = ACTIONS(3211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3211), - [anon_sym_SLASH] = ACTIONS(3211), - [anon_sym_COLON] = ACTIONS(4651), - [anon_sym_COLON_QMARK] = ACTIONS(4651), - [anon_sym_COLON_DASH] = ACTIONS(4651), - [anon_sym_PERCENT] = ACTIONS(4651), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3211), - [anon_sym_BQUOTE] = ACTIONS(3211), - [anon_sym_LT_LPAREN] = ACTIONS(3211), - [anon_sym_GT_LPAREN] = ACTIONS(3211), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(4651), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(2021), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(4675), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(4659), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4675), + [anon_sym_AMP] = ACTIONS(4673), }, [1740] = { - [anon_sym_RBRACE] = ACTIONS(3211), - [anon_sym_EQ] = ACTIONS(4651), - [anon_sym_DASH] = ACTIONS(4651), - [sym__special_characters] = ACTIONS(4651), - [anon_sym_DQUOTE] = ACTIONS(3211), - [anon_sym_DOLLAR] = ACTIONS(4651), - [sym_raw_string] = ACTIONS(3211), - [anon_sym_POUND] = ACTIONS(3211), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3211), - [anon_sym_SLASH] = ACTIONS(3211), - [anon_sym_COLON] = ACTIONS(4651), - [anon_sym_COLON_QMARK] = ACTIONS(4651), - [anon_sym_COLON_DASH] = ACTIONS(4651), - [anon_sym_PERCENT] = ACTIONS(4651), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3211), - [anon_sym_BQUOTE] = ACTIONS(3211), - [anon_sym_LT_LPAREN] = ACTIONS(3211), - [anon_sym_GT_LPAREN] = ACTIONS(3211), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(4651), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(2021), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(4675), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(4659), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(4675), + [anon_sym_AMP] = ACTIONS(4673), }, [1741] = { - [sym__concat] = ACTIONS(4653), - [anon_sym_RBRACE] = ACTIONS(3215), - [anon_sym_EQ] = ACTIONS(4655), - [anon_sym_DASH] = ACTIONS(4655), - [sym__special_characters] = ACTIONS(4655), - [anon_sym_DQUOTE] = ACTIONS(3215), - [anon_sym_DOLLAR] = ACTIONS(4655), - [sym_raw_string] = ACTIONS(3215), - [anon_sym_POUND] = ACTIONS(3215), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3215), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_COLON] = ACTIONS(4655), - [anon_sym_COLON_QMARK] = ACTIONS(4655), - [anon_sym_COLON_DASH] = ACTIONS(4655), - [anon_sym_PERCENT] = ACTIONS(4655), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3215), - [anon_sym_BQUOTE] = ACTIONS(3215), - [anon_sym_LT_LPAREN] = ACTIONS(3215), - [anon_sym_GT_LPAREN] = ACTIONS(3215), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(4655), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(4677), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1742] = { - [anon_sym_RBRACE] = ACTIONS(3215), - [anon_sym_EQ] = ACTIONS(4655), - [anon_sym_DASH] = ACTIONS(4655), - [sym__special_characters] = ACTIONS(4655), - [anon_sym_DQUOTE] = ACTIONS(3215), - [anon_sym_DOLLAR] = ACTIONS(4655), - [sym_raw_string] = ACTIONS(3215), - [anon_sym_POUND] = ACTIONS(3215), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3215), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_COLON] = ACTIONS(4655), - [anon_sym_COLON_QMARK] = ACTIONS(4655), - [anon_sym_COLON_DASH] = ACTIONS(4655), - [anon_sym_PERCENT] = ACTIONS(4655), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3215), - [anon_sym_BQUOTE] = ACTIONS(3215), - [anon_sym_LT_LPAREN] = ACTIONS(3215), - [anon_sym_GT_LPAREN] = ACTIONS(3215), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(4655), + [sym__concat] = ACTIONS(1924), + [anon_sym_RBRACE] = ACTIONS(1924), + [sym_comment] = ACTIONS(57), }, [1743] = { - [sym__concat] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(4679), + [anon_sym_RPAREN] = ACTIONS(4677), + [anon_sym_SEMI_SEMI] = ACTIONS(4681), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4681), + [anon_sym_AMP] = ACTIONS(4681), }, [1744] = { - [aux_sym_concatenation_repeat1] = STATE(1744), - [sym__concat] = ACTIONS(4657), - [anon_sym_RBRACE] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2025), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(4683), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(4677), + [anon_sym_SEMI_SEMI] = ACTIONS(4685), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4685), + [anon_sym_AMP] = ACTIONS(4683), }, [1745] = { - [sym__concat] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1770), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2025), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(4683), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(4677), + [anon_sym_SEMI_SEMI] = ACTIONS(4685), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(4685), + [anon_sym_AMP] = ACTIONS(4683), }, [1746] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(4660), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [sym__simple_heredoc_body] = ACTIONS(4687), + [sym__heredoc_body_beginning] = ACTIONS(4687), + [sym_file_descriptor] = ACTIONS(4687), + [sym__concat] = ACTIONS(4687), + [ts_builtin_sym_end] = ACTIONS(4687), + [anon_sym_SEMI] = ACTIONS(4689), + [anon_sym_PIPE] = ACTIONS(4689), + [anon_sym_RPAREN] = ACTIONS(4687), + [anon_sym_SEMI_SEMI] = ACTIONS(4687), + [anon_sym_PIPE_AMP] = ACTIONS(4687), + [anon_sym_AMP_AMP] = ACTIONS(4687), + [anon_sym_PIPE_PIPE] = ACTIONS(4687), + [anon_sym_EQ_TILDE] = ACTIONS(4689), + [anon_sym_EQ_EQ] = ACTIONS(4689), + [anon_sym_LT] = ACTIONS(4689), + [anon_sym_GT] = ACTIONS(4689), + [anon_sym_GT_GT] = ACTIONS(4687), + [anon_sym_AMP_GT] = ACTIONS(4689), + [anon_sym_AMP_GT_GT] = ACTIONS(4687), + [anon_sym_LT_AMP] = ACTIONS(4687), + [anon_sym_GT_AMP] = ACTIONS(4687), + [anon_sym_LT_LT] = ACTIONS(4689), + [anon_sym_LT_LT_DASH] = ACTIONS(4687), + [anon_sym_LT_LT_LT] = ACTIONS(4687), + [sym__special_characters] = ACTIONS(4687), + [anon_sym_DQUOTE] = ACTIONS(4687), + [anon_sym_DOLLAR] = ACTIONS(4689), + [sym_raw_string] = ACTIONS(4687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4687), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4687), + [anon_sym_BQUOTE] = ACTIONS(4687), + [anon_sym_LT_LPAREN] = ACTIONS(4687), + [anon_sym_GT_LPAREN] = ACTIONS(4687), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4689), + [anon_sym_LF] = ACTIONS(4687), + [anon_sym_AMP] = ACTIONS(4689), }, [1747] = { - [sym_concatenation] = STATE(2039), - [sym_string] = STATE(2038), - [sym_simple_expansion] = STATE(2038), - [sym_string_expansion] = STATE(2038), - [sym_expansion] = STATE(2038), - [sym_command_substitution] = STATE(2038), - [sym_process_substitution] = STATE(2038), - [anon_sym_RBRACE] = ACTIONS(4662), - [sym__special_characters] = ACTIONS(4664), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(4666), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4666), + [sym__simple_heredoc_body] = ACTIONS(4691), + [sym__heredoc_body_beginning] = ACTIONS(4691), + [sym_file_descriptor] = ACTIONS(4691), + [sym__concat] = ACTIONS(4691), + [ts_builtin_sym_end] = ACTIONS(4691), + [anon_sym_SEMI] = ACTIONS(4693), + [anon_sym_PIPE] = ACTIONS(4693), + [anon_sym_RPAREN] = ACTIONS(4691), + [anon_sym_SEMI_SEMI] = ACTIONS(4691), + [anon_sym_PIPE_AMP] = ACTIONS(4691), + [anon_sym_AMP_AMP] = ACTIONS(4691), + [anon_sym_PIPE_PIPE] = ACTIONS(4691), + [anon_sym_EQ_TILDE] = ACTIONS(4693), + [anon_sym_EQ_EQ] = ACTIONS(4693), + [anon_sym_LT] = ACTIONS(4693), + [anon_sym_GT] = ACTIONS(4693), + [anon_sym_GT_GT] = ACTIONS(4691), + [anon_sym_AMP_GT] = ACTIONS(4693), + [anon_sym_AMP_GT_GT] = ACTIONS(4691), + [anon_sym_LT_AMP] = ACTIONS(4691), + [anon_sym_GT_AMP] = ACTIONS(4691), + [anon_sym_LT_LT] = ACTIONS(4693), + [anon_sym_LT_LT_DASH] = ACTIONS(4691), + [anon_sym_LT_LT_LT] = ACTIONS(4691), + [sym__special_characters] = ACTIONS(4691), + [anon_sym_DQUOTE] = ACTIONS(4691), + [anon_sym_DOLLAR] = ACTIONS(4693), + [sym_raw_string] = ACTIONS(4691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4691), + [anon_sym_BQUOTE] = ACTIONS(4691), + [anon_sym_LT_LPAREN] = ACTIONS(4691), + [anon_sym_GT_LPAREN] = ACTIONS(4691), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4693), + [anon_sym_LF] = ACTIONS(4691), + [anon_sym_AMP] = ACTIONS(4693), }, [1748] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(4668), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(4695), + [sym__heredoc_body_beginning] = ACTIONS(4695), + [sym_file_descriptor] = ACTIONS(4695), + [sym__concat] = ACTIONS(4695), + [ts_builtin_sym_end] = ACTIONS(4695), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym_PIPE] = ACTIONS(4697), + [anon_sym_RPAREN] = ACTIONS(4695), + [anon_sym_SEMI_SEMI] = ACTIONS(4695), + [anon_sym_PIPE_AMP] = ACTIONS(4695), + [anon_sym_AMP_AMP] = ACTIONS(4695), + [anon_sym_PIPE_PIPE] = ACTIONS(4695), + [anon_sym_EQ_TILDE] = ACTIONS(4697), + [anon_sym_EQ_EQ] = ACTIONS(4697), + [anon_sym_LT] = ACTIONS(4697), + [anon_sym_GT] = ACTIONS(4697), + [anon_sym_GT_GT] = ACTIONS(4695), + [anon_sym_AMP_GT] = ACTIONS(4697), + [anon_sym_AMP_GT_GT] = ACTIONS(4695), + [anon_sym_LT_AMP] = ACTIONS(4695), + [anon_sym_GT_AMP] = ACTIONS(4695), + [anon_sym_LT_LT] = ACTIONS(4697), + [anon_sym_LT_LT_DASH] = ACTIONS(4695), + [anon_sym_LT_LT_LT] = ACTIONS(4695), + [sym__special_characters] = ACTIONS(4695), + [anon_sym_DQUOTE] = ACTIONS(4695), + [anon_sym_DOLLAR] = ACTIONS(4697), + [sym_raw_string] = ACTIONS(4695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4695), + [anon_sym_BQUOTE] = ACTIONS(4695), + [anon_sym_LT_LPAREN] = ACTIONS(4695), + [anon_sym_GT_LPAREN] = ACTIONS(4695), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4697), + [anon_sym_LF] = ACTIONS(4695), + [anon_sym_AMP] = ACTIONS(4697), }, [1749] = { - [sym_concatenation] = STATE(2043), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2043), - [anon_sym_RBRACE] = ACTIONS(4670), - [anon_sym_EQ] = ACTIONS(4672), - [anon_sym_DASH] = ACTIONS(4672), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(4676), - [anon_sym_COLON] = ACTIONS(4672), - [anon_sym_COLON_QMARK] = ACTIONS(4672), - [anon_sym_COLON_DASH] = ACTIONS(4672), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4699), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1750] = { - [sym_concatenation] = STATE(2045), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2045), - [anon_sym_RBRACE] = ACTIONS(4662), - [anon_sym_EQ] = ACTIONS(4678), - [anon_sym_DASH] = ACTIONS(4678), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4680), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(4682), - [anon_sym_COLON] = ACTIONS(4678), - [anon_sym_COLON_QMARK] = ACTIONS(4678), - [anon_sym_COLON_DASH] = ACTIONS(4678), - [anon_sym_PERCENT] = ACTIONS(4678), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4701), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1751] = { - [sym__concat] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1871), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(2930), + [anon_sym_RBRACE] = ACTIONS(2930), + [anon_sym_EQ] = ACTIONS(2932), + [anon_sym_DASH] = ACTIONS(2932), + [sym__special_characters] = ACTIONS(2932), + [anon_sym_DQUOTE] = ACTIONS(2930), + [anon_sym_DOLLAR] = ACTIONS(2932), + [sym_raw_string] = ACTIONS(2930), + [anon_sym_POUND] = ACTIONS(2930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2930), + [anon_sym_COLON] = ACTIONS(2932), + [anon_sym_COLON_QMARK] = ACTIONS(2932), + [anon_sym_COLON_DASH] = ACTIONS(2932), + [anon_sym_PERCENT] = ACTIONS(2932), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2930), + [anon_sym_BQUOTE] = ACTIONS(2930), + [anon_sym_LT_LPAREN] = ACTIONS(2930), + [anon_sym_GT_LPAREN] = ACTIONS(2930), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(2932), }, [1752] = { - [sym_concatenation] = STATE(2048), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2048), - [sym_regex] = ACTIONS(4684), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_EQ] = ACTIONS(4688), - [anon_sym_DASH] = ACTIONS(4688), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4690), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4688), - [anon_sym_COLON_QMARK] = ACTIONS(4688), - [anon_sym_COLON_DASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4688), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(2944), + [anon_sym_RBRACE] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2946), + [anon_sym_DASH] = ACTIONS(2946), + [sym__special_characters] = ACTIONS(2946), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_DOLLAR] = ACTIONS(2946), + [sym_raw_string] = ACTIONS(2944), + [anon_sym_POUND] = ACTIONS(2944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2944), + [anon_sym_COLON] = ACTIONS(2946), + [anon_sym_COLON_QMARK] = ACTIONS(2946), + [anon_sym_COLON_DASH] = ACTIONS(2946), + [anon_sym_PERCENT] = ACTIONS(2946), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2944), + [anon_sym_BQUOTE] = ACTIONS(2944), + [anon_sym_LT_LPAREN] = ACTIONS(2944), + [anon_sym_GT_LPAREN] = ACTIONS(2944), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(2946), }, [1753] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4703), + [sym_comment] = ACTIONS(57), }, [1754] = { - [sym__concat] = ACTIONS(1919), - [anon_sym_RBRACE] = ACTIONS(1919), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4705), + [sym_comment] = ACTIONS(57), }, [1755] = { - [sym_concatenation] = STATE(2045), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2045), - [sym_regex] = ACTIONS(4692), - [anon_sym_RBRACE] = ACTIONS(4662), - [anon_sym_EQ] = ACTIONS(4678), - [anon_sym_DASH] = ACTIONS(4678), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4680), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4678), - [anon_sym_COLON_QMARK] = ACTIONS(4678), - [anon_sym_COLON_DASH] = ACTIONS(4678), - [anon_sym_PERCENT] = ACTIONS(4678), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(4705), + [sym_comment] = ACTIONS(57), }, [1756] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4662), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [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(4705), + [sym__special_characters] = ACTIONS(4707), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(4709), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4709), }, [1757] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(4694), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__concat] = ACTIONS(2980), + [anon_sym_RBRACE] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2982), + [sym__special_characters] = ACTIONS(2982), + [anon_sym_DQUOTE] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2982), + [sym_raw_string] = ACTIONS(2980), + [anon_sym_POUND] = ACTIONS(2980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2980), + [anon_sym_COLON] = ACTIONS(2982), + [anon_sym_COLON_QMARK] = ACTIONS(2982), + [anon_sym_COLON_DASH] = ACTIONS(2982), + [anon_sym_PERCENT] = ACTIONS(2982), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2980), + [anon_sym_BQUOTE] = ACTIONS(2980), + [anon_sym_LT_LPAREN] = ACTIONS(2980), + [anon_sym_GT_LPAREN] = ACTIONS(2980), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(2982), }, [1758] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1927), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(2035), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2035), + [sym_regex] = ACTIONS(4711), + [anon_sym_RBRACE] = ACTIONS(4713), + [anon_sym_EQ] = ACTIONS(4715), + [anon_sym_DASH] = ACTIONS(4715), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4717), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4715), + [anon_sym_COLON_QMARK] = ACTIONS(4715), + [anon_sym_COLON_DASH] = ACTIONS(4715), + [anon_sym_PERCENT] = ACTIONS(4715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1759] = { - [anon_sym_SEMI] = ACTIONS(4696), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4694), - [anon_sym_SEMI_SEMI] = ACTIONS(4698), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4698), - [anon_sym_AMP] = ACTIONS(4696), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4713), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1760] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(4696), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4694), - [anon_sym_SEMI_SEMI] = ACTIONS(4698), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(4698), - [anon_sym_AMP] = ACTIONS(4696), + [sym_concatenation] = STATE(2037), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2037), + [sym_regex] = ACTIONS(4719), + [anon_sym_RBRACE] = ACTIONS(4705), + [anon_sym_EQ] = ACTIONS(4721), + [anon_sym_DASH] = ACTIONS(4721), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4723), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4721), + [anon_sym_COLON_QMARK] = ACTIONS(4721), + [anon_sym_COLON_DASH] = ACTIONS(4721), + [anon_sym_PERCENT] = ACTIONS(4721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1761] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(4694), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4705), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1762] = { - [anon_sym_SEMI] = ACTIONS(4700), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(4702), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(4694), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4702), - [anon_sym_AMP] = ACTIONS(4700), + [sym_concatenation] = STATE(2039), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2039), + [anon_sym_RBRACE] = ACTIONS(4725), + [anon_sym_EQ] = ACTIONS(4727), + [anon_sym_DASH] = ACTIONS(4727), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4729), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4727), + [anon_sym_COLON_QMARK] = ACTIONS(4727), + [anon_sym_COLON_DASH] = ACTIONS(4727), + [anon_sym_PERCENT] = ACTIONS(4727), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1763] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(4700), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(4702), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(4694), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(4702), - [anon_sym_AMP] = ACTIONS(4700), + [sym__concat] = ACTIONS(3036), + [anon_sym_RBRACE] = ACTIONS(3036), + [anon_sym_EQ] = ACTIONS(3038), + [anon_sym_DASH] = ACTIONS(3038), + [sym__special_characters] = ACTIONS(3038), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_DOLLAR] = ACTIONS(3038), + [sym_raw_string] = ACTIONS(3036), + [anon_sym_POUND] = ACTIONS(3036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3036), + [anon_sym_COLON] = ACTIONS(3038), + [anon_sym_COLON_QMARK] = ACTIONS(3038), + [anon_sym_COLON_DASH] = ACTIONS(3038), + [anon_sym_PERCENT] = ACTIONS(3038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3036), + [anon_sym_BQUOTE] = ACTIONS(3036), + [anon_sym_LT_LPAREN] = ACTIONS(3036), + [anon_sym_GT_LPAREN] = ACTIONS(3036), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(3038), }, [1764] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(4704), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4725), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1765] = { - [sym__concat] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1959), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(2037), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2037), + [anon_sym_RBRACE] = ACTIONS(4705), + [anon_sym_EQ] = ACTIONS(4721), + [anon_sym_DASH] = ACTIONS(4721), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4723), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4721), + [anon_sym_COLON_QMARK] = ACTIONS(4721), + [anon_sym_COLON_DASH] = ACTIONS(4721), + [anon_sym_PERCENT] = ACTIONS(4721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1766] = { - [anon_sym_SEMI] = ACTIONS(4706), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4704), - [anon_sym_SEMI_SEMI] = ACTIONS(4708), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4708), - [anon_sym_AMP] = ACTIONS(4706), + [sym__simple_heredoc_body] = ACTIONS(4731), + [sym__heredoc_body_beginning] = ACTIONS(4731), + [sym_file_descriptor] = ACTIONS(4731), + [sym__concat] = ACTIONS(4731), + [ts_builtin_sym_end] = ACTIONS(4731), + [anon_sym_SEMI] = ACTIONS(4733), + [anon_sym_PIPE] = ACTIONS(4733), + [anon_sym_RPAREN] = ACTIONS(4731), + [anon_sym_SEMI_SEMI] = ACTIONS(4731), + [anon_sym_PIPE_AMP] = ACTIONS(4731), + [anon_sym_AMP_AMP] = ACTIONS(4731), + [anon_sym_PIPE_PIPE] = ACTIONS(4731), + [anon_sym_EQ_TILDE] = ACTIONS(4733), + [anon_sym_EQ_EQ] = ACTIONS(4733), + [anon_sym_LT] = ACTIONS(4733), + [anon_sym_GT] = ACTIONS(4733), + [anon_sym_GT_GT] = ACTIONS(4731), + [anon_sym_AMP_GT] = ACTIONS(4733), + [anon_sym_AMP_GT_GT] = ACTIONS(4731), + [anon_sym_LT_AMP] = ACTIONS(4731), + [anon_sym_GT_AMP] = ACTIONS(4731), + [anon_sym_LT_LT] = ACTIONS(4733), + [anon_sym_LT_LT_DASH] = ACTIONS(4731), + [anon_sym_LT_LT_LT] = ACTIONS(4731), + [sym__special_characters] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4731), + [anon_sym_DOLLAR] = ACTIONS(4733), + [sym_raw_string] = ACTIONS(4731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4731), + [anon_sym_BQUOTE] = ACTIONS(4731), + [anon_sym_LT_LPAREN] = ACTIONS(4731), + [anon_sym_GT_LPAREN] = ACTIONS(4731), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4733), + [anon_sym_LF] = ACTIONS(4731), + [anon_sym_AMP] = ACTIONS(4733), }, [1767] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(4706), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4704), - [anon_sym_SEMI_SEMI] = ACTIONS(4708), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(4708), - [anon_sym_AMP] = ACTIONS(4706), + [sym__concat] = ACTIONS(3091), + [anon_sym_RBRACE] = ACTIONS(3091), + [anon_sym_EQ] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3093), + [sym__special_characters] = ACTIONS(3093), + [anon_sym_DQUOTE] = ACTIONS(3091), + [anon_sym_DOLLAR] = ACTIONS(3093), + [sym_raw_string] = ACTIONS(3091), + [anon_sym_POUND] = ACTIONS(3091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3091), + [anon_sym_COLON] = ACTIONS(3093), + [anon_sym_COLON_QMARK] = ACTIONS(3093), + [anon_sym_COLON_DASH] = ACTIONS(3093), + [anon_sym_PERCENT] = ACTIONS(3093), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(3091), + [anon_sym_LT_LPAREN] = ACTIONS(3091), + [anon_sym_GT_LPAREN] = ACTIONS(3091), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(3093), }, [1768] = { - [sym__simple_heredoc_body] = ACTIONS(4710), - [sym__heredoc_body_beginning] = ACTIONS(4710), - [sym_file_descriptor] = ACTIONS(4710), - [sym__concat] = ACTIONS(4710), - [ts_builtin_sym_end] = ACTIONS(4710), - [anon_sym_SEMI] = ACTIONS(4712), - [anon_sym_PIPE] = ACTIONS(4712), - [anon_sym_RPAREN] = ACTIONS(4710), - [anon_sym_SEMI_SEMI] = ACTIONS(4710), - [anon_sym_PIPE_AMP] = ACTIONS(4710), - [anon_sym_AMP_AMP] = ACTIONS(4710), - [anon_sym_PIPE_PIPE] = ACTIONS(4710), - [anon_sym_EQ_TILDE] = ACTIONS(4712), - [anon_sym_EQ_EQ] = ACTIONS(4712), - [anon_sym_LT] = ACTIONS(4712), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_GT_GT] = ACTIONS(4710), - [anon_sym_AMP_GT] = ACTIONS(4712), - [anon_sym_AMP_GT_GT] = ACTIONS(4710), - [anon_sym_LT_AMP] = ACTIONS(4710), - [anon_sym_GT_AMP] = ACTIONS(4710), - [anon_sym_LT_LT] = ACTIONS(4712), - [anon_sym_LT_LT_DASH] = ACTIONS(4710), - [anon_sym_LT_LT_LT] = ACTIONS(4710), - [sym__special_characters] = ACTIONS(4710), - [anon_sym_DQUOTE] = ACTIONS(4710), - [anon_sym_DOLLAR] = ACTIONS(4712), - [sym_raw_string] = ACTIONS(4710), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), - [anon_sym_BQUOTE] = ACTIONS(4710), - [anon_sym_LT_LPAREN] = ACTIONS(4710), - [anon_sym_GT_LPAREN] = ACTIONS(4710), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4712), - [anon_sym_LF] = ACTIONS(4710), - [anon_sym_AMP] = ACTIONS(4712), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4735), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1769] = { - [sym__simple_heredoc_body] = ACTIONS(4714), - [sym__heredoc_body_beginning] = ACTIONS(4714), - [sym_file_descriptor] = ACTIONS(4714), - [sym__concat] = ACTIONS(4714), - [ts_builtin_sym_end] = ACTIONS(4714), - [anon_sym_SEMI] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4716), - [anon_sym_RPAREN] = ACTIONS(4714), - [anon_sym_SEMI_SEMI] = ACTIONS(4714), - [anon_sym_PIPE_AMP] = ACTIONS(4714), - [anon_sym_AMP_AMP] = ACTIONS(4714), - [anon_sym_PIPE_PIPE] = ACTIONS(4714), - [anon_sym_EQ_TILDE] = ACTIONS(4716), - [anon_sym_EQ_EQ] = ACTIONS(4716), - [anon_sym_LT] = ACTIONS(4716), - [anon_sym_GT] = ACTIONS(4716), - [anon_sym_GT_GT] = ACTIONS(4714), - [anon_sym_AMP_GT] = ACTIONS(4716), - [anon_sym_AMP_GT_GT] = ACTIONS(4714), - [anon_sym_LT_AMP] = ACTIONS(4714), - [anon_sym_GT_AMP] = ACTIONS(4714), - [anon_sym_LT_LT] = ACTIONS(4716), - [anon_sym_LT_LT_DASH] = ACTIONS(4714), - [anon_sym_LT_LT_LT] = ACTIONS(4714), - [sym__special_characters] = ACTIONS(4714), - [anon_sym_DQUOTE] = ACTIONS(4714), - [anon_sym_DOLLAR] = ACTIONS(4716), - [sym_raw_string] = ACTIONS(4714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), - [anon_sym_BQUOTE] = ACTIONS(4714), - [anon_sym_LT_LPAREN] = ACTIONS(4714), - [anon_sym_GT_LPAREN] = ACTIONS(4714), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4716), - [anon_sym_LF] = ACTIONS(4714), - [anon_sym_AMP] = ACTIONS(4716), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(4735), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1770] = { - [sym__simple_heredoc_body] = ACTIONS(4718), - [sym__heredoc_body_beginning] = ACTIONS(4718), - [sym_file_descriptor] = ACTIONS(4718), - [sym__concat] = ACTIONS(4718), - [ts_builtin_sym_end] = ACTIONS(4718), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_RPAREN] = ACTIONS(4718), - [anon_sym_SEMI_SEMI] = ACTIONS(4718), - [anon_sym_PIPE_AMP] = ACTIONS(4718), - [anon_sym_AMP_AMP] = ACTIONS(4718), - [anon_sym_PIPE_PIPE] = ACTIONS(4718), - [anon_sym_EQ_TILDE] = ACTIONS(4720), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_LT] = ACTIONS(4720), - [anon_sym_GT] = ACTIONS(4720), - [anon_sym_GT_GT] = ACTIONS(4718), - [anon_sym_AMP_GT] = ACTIONS(4720), - [anon_sym_AMP_GT_GT] = ACTIONS(4718), - [anon_sym_LT_AMP] = ACTIONS(4718), - [anon_sym_GT_AMP] = ACTIONS(4718), - [anon_sym_LT_LT] = ACTIONS(4720), - [anon_sym_LT_LT_DASH] = ACTIONS(4718), - [anon_sym_LT_LT_LT] = ACTIONS(4718), - [sym__special_characters] = ACTIONS(4718), - [anon_sym_DQUOTE] = ACTIONS(4718), - [anon_sym_DOLLAR] = ACTIONS(4720), - [sym_raw_string] = ACTIONS(4718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), - [anon_sym_BQUOTE] = ACTIONS(4718), - [anon_sym_LT_LPAREN] = ACTIONS(4718), - [anon_sym_GT_LPAREN] = ACTIONS(4718), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4720), - [anon_sym_LF] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), + [anon_sym_SEMI] = ACTIONS(4737), + [anon_sym_RPAREN] = ACTIONS(4735), + [anon_sym_SEMI_SEMI] = ACTIONS(4739), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4739), + [anon_sym_AMP] = ACTIONS(4739), }, [1771] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4722), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(4735), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [1772] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4724), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(4735), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1773] = { - [sym__concat] = ACTIONS(2959), - [anon_sym_RBRACE] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [sym__special_characters] = ACTIONS(2961), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_DOLLAR] = ACTIONS(2961), - [sym_raw_string] = ACTIONS(2959), - [anon_sym_POUND] = ACTIONS(2959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), - [anon_sym_COLON] = ACTIONS(2961), - [anon_sym_COLON_QMARK] = ACTIONS(2961), - [anon_sym_COLON_DASH] = ACTIONS(2961), - [anon_sym_PERCENT] = ACTIONS(2961), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), - [anon_sym_BQUOTE] = ACTIONS(2959), - [anon_sym_LT_LPAREN] = ACTIONS(2959), - [anon_sym_GT_LPAREN] = ACTIONS(2959), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(4741), + [anon_sym_SEMI_SEMI] = ACTIONS(4743), + [anon_sym_BQUOTE] = ACTIONS(4735), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4743), + [anon_sym_AMP] = ACTIONS(4743), }, [1774] = { - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2975), - [sym__special_characters] = ACTIONS(2975), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_DOLLAR] = ACTIONS(2975), - [sym_raw_string] = ACTIONS(2973), - [anon_sym_POUND] = ACTIONS(2973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), - [anon_sym_COLON] = ACTIONS(2975), - [anon_sym_COLON_QMARK] = ACTIONS(2975), - [anon_sym_COLON_DASH] = ACTIONS(2975), - [anon_sym_PERCENT] = ACTIONS(2975), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), - [anon_sym_BQUOTE] = ACTIONS(2973), - [anon_sym_LT_LPAREN] = ACTIONS(2973), - [anon_sym_GT_LPAREN] = ACTIONS(2973), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(2975), + [sym__concat] = ACTIONS(3121), + [anon_sym_RBRACE] = ACTIONS(3121), + [anon_sym_EQ] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3123), + [sym__special_characters] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3123), + [sym_raw_string] = ACTIONS(3121), + [anon_sym_POUND] = ACTIONS(3121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3121), + [anon_sym_COLON] = ACTIONS(3123), + [anon_sym_COLON_QMARK] = ACTIONS(3123), + [anon_sym_COLON_DASH] = ACTIONS(3123), + [anon_sym_PERCENT] = ACTIONS(3123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3121), + [anon_sym_BQUOTE] = ACTIONS(3121), + [anon_sym_LT_LPAREN] = ACTIONS(3121), + [anon_sym_GT_LPAREN] = ACTIONS(3121), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(3123), }, [1775] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4726), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4745), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1776] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4728), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(4745), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1777] = { - [anon_sym_RBRACE] = ACTIONS(4728), - [sym_comment] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(4747), + [anon_sym_RPAREN] = ACTIONS(4745), + [anon_sym_SEMI_SEMI] = ACTIONS(4749), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4749), + [anon_sym_AMP] = ACTIONS(4749), }, [1778] = { + [sym__simple_heredoc_body] = ACTIONS(4751), + [sym__heredoc_body_beginning] = ACTIONS(4751), + [sym_file_descriptor] = ACTIONS(4751), + [sym__concat] = ACTIONS(4751), + [ts_builtin_sym_end] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4753), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_SEMI_SEMI] = ACTIONS(4751), + [anon_sym_PIPE_AMP] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [anon_sym_EQ_TILDE] = ACTIONS(4753), + [anon_sym_EQ_EQ] = ACTIONS(4753), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_GT_GT] = ACTIONS(4751), + [anon_sym_AMP_GT] = ACTIONS(4753), + [anon_sym_AMP_GT_GT] = ACTIONS(4751), + [anon_sym_LT_AMP] = ACTIONS(4751), + [anon_sym_GT_AMP] = ACTIONS(4751), + [anon_sym_LT_LT] = ACTIONS(4753), + [anon_sym_LT_LT_DASH] = ACTIONS(4751), + [anon_sym_LT_LT_LT] = ACTIONS(4751), + [sym__special_characters] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4753), + [sym_raw_string] = ACTIONS(4751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4751), + [anon_sym_BQUOTE] = ACTIONS(4751), + [anon_sym_LT_LPAREN] = ACTIONS(4751), + [anon_sym_GT_LPAREN] = ACTIONS(4751), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4753), + [anon_sym_LF] = ACTIONS(4751), + [anon_sym_AMP] = ACTIONS(4753), + }, + [1779] = { + [aux_sym_concatenation_repeat1] = STATE(1779), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), + }, + [1780] = { + [sym__simple_heredoc_body] = ACTIONS(4755), + [sym__heredoc_body_beginning] = ACTIONS(4755), + [sym_file_descriptor] = ACTIONS(4755), + [sym__concat] = ACTIONS(4755), + [ts_builtin_sym_end] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4757), + [anon_sym_PIPE] = ACTIONS(4757), + [anon_sym_RPAREN] = ACTIONS(4755), + [anon_sym_SEMI_SEMI] = ACTIONS(4755), + [anon_sym_PIPE_AMP] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4755), + [anon_sym_PIPE_PIPE] = ACTIONS(4755), + [anon_sym_EQ_TILDE] = ACTIONS(4757), + [anon_sym_EQ_EQ] = ACTIONS(4757), + [anon_sym_LT] = ACTIONS(4757), + [anon_sym_GT] = ACTIONS(4757), + [anon_sym_GT_GT] = ACTIONS(4755), + [anon_sym_AMP_GT] = ACTIONS(4757), + [anon_sym_AMP_GT_GT] = ACTIONS(4755), + [anon_sym_LT_AMP] = ACTIONS(4755), + [anon_sym_GT_AMP] = ACTIONS(4755), + [anon_sym_LT_LT] = ACTIONS(4757), + [anon_sym_LT_LT_DASH] = ACTIONS(4755), + [anon_sym_LT_LT_LT] = ACTIONS(4755), + [sym__special_characters] = ACTIONS(4755), + [anon_sym_DQUOTE] = ACTIONS(4755), + [anon_sym_DOLLAR] = ACTIONS(4757), + [sym_raw_string] = ACTIONS(4755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4755), + [anon_sym_BQUOTE] = ACTIONS(4755), + [anon_sym_LT_LPAREN] = ACTIONS(4755), + [anon_sym_GT_LPAREN] = ACTIONS(4755), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4757), + [anon_sym_LF] = ACTIONS(4755), + [anon_sym_AMP] = ACTIONS(4757), + }, + [1781] = { + [sym__heredoc_body_middle] = ACTIONS(2944), + [sym__heredoc_body_end] = ACTIONS(2944), + [anon_sym_DOLLAR] = ACTIONS(2946), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2944), + [sym_comment] = ACTIONS(57), + }, + [1782] = { + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4759), + [sym_comment] = ACTIONS(57), + }, + [1783] = { + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4761), + [sym_comment] = ACTIONS(57), + }, + [1784] = { + [anon_sym_RBRACE] = ACTIONS(4761), + [sym_comment] = ACTIONS(57), + }, + [1785] = { + [sym_concatenation] = STATE(2049), + [sym_string] = STATE(2048), + [sym_simple_expansion] = STATE(2048), + [sym_string_expansion] = STATE(2048), + [sym_expansion] = STATE(2048), + [sym_command_substitution] = STATE(2048), + [sym_process_substitution] = STATE(2048), + [anon_sym_RBRACE] = ACTIONS(4761), + [sym__special_characters] = ACTIONS(4763), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(4765), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4765), + }, + [1786] = { + [sym__heredoc_body_middle] = ACTIONS(2980), + [sym__heredoc_body_end] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2982), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2980), + [sym_comment] = ACTIONS(57), + }, + [1787] = { + [sym_concatenation] = STATE(2052), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2052), + [sym_regex] = ACTIONS(4767), + [anon_sym_RBRACE] = ACTIONS(4769), + [anon_sym_EQ] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4771), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4773), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4771), + [anon_sym_COLON_QMARK] = ACTIONS(4771), + [anon_sym_COLON_DASH] = ACTIONS(4771), + [anon_sym_PERCENT] = ACTIONS(4771), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [1788] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4769), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [1789] = { + [sym_concatenation] = STATE(2054), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2054), + [sym_regex] = ACTIONS(4775), + [anon_sym_RBRACE] = ACTIONS(4761), + [anon_sym_EQ] = ACTIONS(4777), + [anon_sym_DASH] = ACTIONS(4777), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4777), + [anon_sym_COLON_QMARK] = ACTIONS(4777), + [anon_sym_COLON_DASH] = ACTIONS(4777), + [anon_sym_PERCENT] = ACTIONS(4777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [1790] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4761), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [1791] = { + [sym_concatenation] = STATE(2056), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2056), + [anon_sym_RBRACE] = ACTIONS(4781), + [anon_sym_EQ] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4785), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4783), + [anon_sym_COLON_QMARK] = ACTIONS(4783), + [anon_sym_COLON_DASH] = ACTIONS(4783), + [anon_sym_PERCENT] = ACTIONS(4783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [1792] = { + [sym__heredoc_body_middle] = ACTIONS(3036), + [sym__heredoc_body_end] = ACTIONS(3036), + [anon_sym_DOLLAR] = ACTIONS(3038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3036), + [sym_comment] = ACTIONS(57), + }, + [1793] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4781), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [1794] = { + [sym_concatenation] = STATE(2054), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2054), + [anon_sym_RBRACE] = ACTIONS(4761), + [anon_sym_EQ] = ACTIONS(4777), + [anon_sym_DASH] = ACTIONS(4777), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4777), + [anon_sym_COLON_QMARK] = ACTIONS(4777), + [anon_sym_COLON_DASH] = ACTIONS(4777), + [anon_sym_PERCENT] = ACTIONS(4777), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [1795] = { + [sym__concat] = ACTIONS(2930), + [anon_sym_RPAREN] = ACTIONS(2930), + [sym__special_characters] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [anon_sym_DOLLAR] = ACTIONS(2932), + [sym_raw_string] = ACTIONS(2930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2930), + [anon_sym_BQUOTE] = ACTIONS(2930), + [anon_sym_LT_LPAREN] = ACTIONS(2930), + [anon_sym_GT_LPAREN] = ACTIONS(2930), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2930), + }, + [1796] = { + [sym__concat] = ACTIONS(2944), + [anon_sym_RPAREN] = ACTIONS(2944), + [sym__special_characters] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_DOLLAR] = ACTIONS(2946), + [sym_raw_string] = ACTIONS(2944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2944), + [anon_sym_BQUOTE] = ACTIONS(2944), + [anon_sym_LT_LPAREN] = ACTIONS(2944), + [anon_sym_GT_LPAREN] = ACTIONS(2944), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2944), + }, + [1797] = { + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4787), + [sym_comment] = ACTIONS(57), + }, + [1798] = { + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4789), + [sym_comment] = ACTIONS(57), + }, + [1799] = { + [anon_sym_RBRACE] = ACTIONS(4789), + [sym_comment] = ACTIONS(57), + }, + [1800] = { [sym_concatenation] = STATE(2061), [sym_string] = STATE(2060), [sym_simple_expansion] = STATE(2060), @@ -54320,9189 +59257,9678 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(2060), [sym_command_substitution] = STATE(2060), [sym_process_substitution] = STATE(2060), - [anon_sym_RBRACE] = ACTIONS(4728), - [sym__special_characters] = ACTIONS(4730), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(4732), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4732), - }, - [1779] = { - [sym__concat] = ACTIONS(3009), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_EQ] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [sym__special_characters] = ACTIONS(3011), - [anon_sym_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3011), - [sym_raw_string] = ACTIONS(3009), - [anon_sym_POUND] = ACTIONS(3009), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), - [anon_sym_COLON] = ACTIONS(3011), - [anon_sym_COLON_QMARK] = ACTIONS(3011), - [anon_sym_COLON_DASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3011), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), - [anon_sym_BQUOTE] = ACTIONS(3009), - [anon_sym_LT_LPAREN] = ACTIONS(3009), - [anon_sym_GT_LPAREN] = ACTIONS(3009), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(3011), - }, - [1780] = { - [sym_concatenation] = STATE(2064), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2064), - [sym_regex] = ACTIONS(4734), - [anon_sym_RBRACE] = ACTIONS(4736), - [anon_sym_EQ] = ACTIONS(4738), - [anon_sym_DASH] = ACTIONS(4738), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4738), - [anon_sym_COLON_QMARK] = ACTIONS(4738), - [anon_sym_COLON_DASH] = ACTIONS(4738), - [anon_sym_PERCENT] = ACTIONS(4738), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [1781] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4736), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [1782] = { - [sym_concatenation] = STATE(2066), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2066), - [sym_regex] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4728), - [anon_sym_EQ] = ACTIONS(4744), - [anon_sym_DASH] = ACTIONS(4744), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4746), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4744), - [anon_sym_COLON_QMARK] = ACTIONS(4744), - [anon_sym_COLON_DASH] = ACTIONS(4744), - [anon_sym_PERCENT] = ACTIONS(4744), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [1783] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4728), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [1784] = { - [sym_concatenation] = STATE(2068), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2068), - [anon_sym_RBRACE] = ACTIONS(4748), - [anon_sym_EQ] = ACTIONS(4750), - [anon_sym_DASH] = ACTIONS(4750), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4752), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4750), - [anon_sym_COLON_QMARK] = ACTIONS(4750), - [anon_sym_COLON_DASH] = ACTIONS(4750), - [anon_sym_PERCENT] = ACTIONS(4750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [1785] = { - [sym__concat] = ACTIONS(3065), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_EQ] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3067), - [sym__special_characters] = ACTIONS(3067), - [anon_sym_DQUOTE] = ACTIONS(3065), - [anon_sym_DOLLAR] = ACTIONS(3067), - [sym_raw_string] = ACTIONS(3065), - [anon_sym_POUND] = ACTIONS(3065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), - [anon_sym_COLON] = ACTIONS(3067), - [anon_sym_COLON_QMARK] = ACTIONS(3067), - [anon_sym_COLON_DASH] = ACTIONS(3067), - [anon_sym_PERCENT] = ACTIONS(3067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), - [anon_sym_BQUOTE] = ACTIONS(3065), - [anon_sym_LT_LPAREN] = ACTIONS(3065), - [anon_sym_GT_LPAREN] = ACTIONS(3065), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(3067), - }, - [1786] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4748), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [1787] = { - [sym_concatenation] = STATE(2066), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2066), - [anon_sym_RBRACE] = ACTIONS(4728), - [anon_sym_EQ] = ACTIONS(4744), - [anon_sym_DASH] = ACTIONS(4744), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4746), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4744), - [anon_sym_COLON_QMARK] = ACTIONS(4744), - [anon_sym_COLON_DASH] = ACTIONS(4744), - [anon_sym_PERCENT] = ACTIONS(4744), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [1788] = { - [sym__simple_heredoc_body] = ACTIONS(4754), - [sym__heredoc_body_beginning] = ACTIONS(4754), - [sym_file_descriptor] = ACTIONS(4754), - [sym__concat] = ACTIONS(4754), - [ts_builtin_sym_end] = ACTIONS(4754), - [anon_sym_SEMI] = ACTIONS(4756), - [anon_sym_PIPE] = ACTIONS(4756), - [anon_sym_RPAREN] = ACTIONS(4754), - [anon_sym_SEMI_SEMI] = ACTIONS(4754), - [anon_sym_PIPE_AMP] = ACTIONS(4754), - [anon_sym_AMP_AMP] = ACTIONS(4754), - [anon_sym_PIPE_PIPE] = ACTIONS(4754), - [anon_sym_EQ_TILDE] = ACTIONS(4756), - [anon_sym_EQ_EQ] = ACTIONS(4756), - [anon_sym_LT] = ACTIONS(4756), - [anon_sym_GT] = ACTIONS(4756), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_AMP_GT] = ACTIONS(4756), - [anon_sym_AMP_GT_GT] = ACTIONS(4754), - [anon_sym_LT_AMP] = ACTIONS(4754), - [anon_sym_GT_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4756), - [anon_sym_LT_LT_DASH] = ACTIONS(4754), - [anon_sym_LT_LT_LT] = ACTIONS(4754), - [sym__special_characters] = ACTIONS(4754), - [anon_sym_DQUOTE] = ACTIONS(4754), - [anon_sym_DOLLAR] = ACTIONS(4756), - [sym_raw_string] = ACTIONS(4754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), - [anon_sym_BQUOTE] = ACTIONS(4754), - [anon_sym_LT_LPAREN] = ACTIONS(4754), - [anon_sym_GT_LPAREN] = ACTIONS(4754), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4756), - [anon_sym_LF] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4756), - }, - [1789] = { - [sym__concat] = ACTIONS(3120), - [anon_sym_RBRACE] = ACTIONS(3120), - [anon_sym_EQ] = ACTIONS(3122), - [anon_sym_DASH] = ACTIONS(3122), - [sym__special_characters] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [sym_raw_string] = ACTIONS(3120), - [anon_sym_POUND] = ACTIONS(3120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), - [anon_sym_COLON] = ACTIONS(3122), - [anon_sym_COLON_QMARK] = ACTIONS(3122), - [anon_sym_COLON_DASH] = ACTIONS(3122), - [anon_sym_PERCENT] = ACTIONS(3122), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), - [anon_sym_BQUOTE] = ACTIONS(3120), - [anon_sym_LT_LPAREN] = ACTIONS(3120), - [anon_sym_GT_LPAREN] = ACTIONS(3120), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(3122), - }, - [1790] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(4758), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), - }, - [1791] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(4758), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), - }, - [1792] = { - [sym__concat] = ACTIONS(3158), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_EQ] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [sym__special_characters] = ACTIONS(3160), - [anon_sym_DQUOTE] = ACTIONS(3158), - [anon_sym_DOLLAR] = ACTIONS(3160), - [sym_raw_string] = ACTIONS(3158), - [anon_sym_POUND] = ACTIONS(3158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), - [anon_sym_COLON] = ACTIONS(3160), - [anon_sym_COLON_QMARK] = ACTIONS(3160), - [anon_sym_COLON_DASH] = ACTIONS(3160), - [anon_sym_PERCENT] = ACTIONS(3160), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), - [anon_sym_BQUOTE] = ACTIONS(3158), - [anon_sym_LT_LPAREN] = ACTIONS(3158), - [anon_sym_GT_LPAREN] = ACTIONS(3158), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(3160), - }, - [1793] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(4760), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), - }, - [1794] = { - [sym_concatenation] = STATE(1586), - [sym_string] = STATE(2072), - [sym_simple_expansion] = STATE(2072), - [sym_string_expansion] = STATE(2072), - [sym_expansion] = STATE(2072), - [sym_command_substitution] = STATE(2072), - [sym_process_substitution] = STATE(2072), - [sym__special_characters] = ACTIONS(4762), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(4764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2406), - [anon_sym_LT_LPAREN] = ACTIONS(2408), - [anon_sym_GT_LPAREN] = ACTIONS(2408), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4764), - }, - [1795] = { - [aux_sym_concatenation_repeat1] = STATE(2073), - [sym_file_descriptor] = ACTIONS(773), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(773), - [anon_sym_AMP_GT] = ACTIONS(777), - [anon_sym_AMP_GT_GT] = ACTIONS(773), - [anon_sym_LT_AMP] = ACTIONS(773), - [anon_sym_GT_AMP] = ACTIONS(773), - [anon_sym_LT_LT] = ACTIONS(777), - [anon_sym_LT_LT_DASH] = ACTIONS(773), - [anon_sym_LT_LT_LT] = ACTIONS(773), - [anon_sym_BQUOTE] = ACTIONS(773), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(777), - }, - [1796] = { - [aux_sym_concatenation_repeat1] = STATE(2073), - [sym_file_descriptor] = ACTIONS(791), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_SEMI_SEMI] = ACTIONS(791), - [anon_sym_PIPE_AMP] = ACTIONS(791), - [anon_sym_AMP_AMP] = ACTIONS(791), - [anon_sym_PIPE_PIPE] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_GT_GT] = ACTIONS(791), - [anon_sym_AMP_GT] = ACTIONS(793), - [anon_sym_AMP_GT_GT] = ACTIONS(791), - [anon_sym_LT_AMP] = ACTIONS(791), - [anon_sym_GT_AMP] = ACTIONS(791), - [anon_sym_LT_LT] = ACTIONS(793), - [anon_sym_LT_LT_DASH] = ACTIONS(791), - [anon_sym_LT_LT_LT] = ACTIONS(791), - [anon_sym_BQUOTE] = ACTIONS(791), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_AMP] = ACTIONS(793), - }, - [1797] = { - [aux_sym_concatenation_repeat1] = STATE(2073), - [sym_file_descriptor] = ACTIONS(2015), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(2017), - [anon_sym_PIPE] = ACTIONS(2017), - [anon_sym_SEMI_SEMI] = ACTIONS(2015), - [anon_sym_PIPE_AMP] = ACTIONS(2015), - [anon_sym_AMP_AMP] = ACTIONS(2015), - [anon_sym_PIPE_PIPE] = ACTIONS(2015), - [anon_sym_LT] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2017), - [anon_sym_GT_GT] = ACTIONS(2015), - [anon_sym_AMP_GT] = ACTIONS(2017), - [anon_sym_AMP_GT_GT] = ACTIONS(2015), - [anon_sym_LT_AMP] = ACTIONS(2015), - [anon_sym_GT_AMP] = ACTIONS(2015), - [anon_sym_LT_LT] = ACTIONS(2017), - [anon_sym_LT_LT_DASH] = ACTIONS(2015), - [anon_sym_LT_LT_LT] = ACTIONS(2015), - [anon_sym_BQUOTE] = ACTIONS(2015), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2017), - }, - [1798] = { - [aux_sym_concatenation_repeat1] = STATE(2073), - [sym_file_descriptor] = ACTIONS(2019), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_SEMI_SEMI] = ACTIONS(2019), - [anon_sym_PIPE_AMP] = ACTIONS(2019), - [anon_sym_AMP_AMP] = ACTIONS(2019), - [anon_sym_PIPE_PIPE] = ACTIONS(2019), - [anon_sym_LT] = ACTIONS(2021), - [anon_sym_GT] = ACTIONS(2021), - [anon_sym_GT_GT] = ACTIONS(2019), - [anon_sym_AMP_GT] = ACTIONS(2021), - [anon_sym_AMP_GT_GT] = ACTIONS(2019), - [anon_sym_LT_AMP] = ACTIONS(2019), - [anon_sym_GT_AMP] = ACTIONS(2019), - [anon_sym_LT_LT] = ACTIONS(2021), - [anon_sym_LT_LT_DASH] = ACTIONS(2019), - [anon_sym_LT_LT_LT] = ACTIONS(2019), - [anon_sym_BQUOTE] = ACTIONS(2019), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2019), - [anon_sym_AMP] = ACTIONS(2021), - }, - [1799] = { - [sym_file_redirect] = STATE(1799), - [sym_heredoc_redirect] = STATE(1799), - [sym_herestring_redirect] = STATE(1799), - [aux_sym_while_statement_repeat1] = STATE(1799), - [sym_file_descriptor] = ACTIONS(4766), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2027), - [anon_sym_PIPE_AMP] = ACTIONS(2027), - [anon_sym_AMP_AMP] = ACTIONS(2027), - [anon_sym_PIPE_PIPE] = ACTIONS(2027), - [anon_sym_LT] = ACTIONS(4769), - [anon_sym_GT] = ACTIONS(4769), - [anon_sym_GT_GT] = ACTIONS(4772), - [anon_sym_AMP_GT] = ACTIONS(4769), - [anon_sym_AMP_GT_GT] = ACTIONS(4772), - [anon_sym_LT_AMP] = ACTIONS(4772), - [anon_sym_GT_AMP] = ACTIONS(4772), - [anon_sym_LT_LT] = ACTIONS(3612), - [anon_sym_LT_LT_DASH] = ACTIONS(3615), - [anon_sym_LT_LT_LT] = ACTIONS(4775), - [anon_sym_BQUOTE] = ACTIONS(2027), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(2032), - }, - [1800] = { - [sym_file_redirect] = STATE(1651), - [sym_file_descriptor] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3722), - [anon_sym_PIPE] = ACTIONS(3722), - [anon_sym_SEMI_SEMI] = ACTIONS(3720), - [anon_sym_PIPE_AMP] = ACTIONS(3720), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_GT] = ACTIONS(3138), - [anon_sym_GT_GT] = ACTIONS(3140), - [anon_sym_AMP_GT] = ACTIONS(3138), - [anon_sym_AMP_GT_GT] = ACTIONS(3140), - [anon_sym_LT_AMP] = ACTIONS(3140), - [anon_sym_GT_AMP] = ACTIONS(3140), - [anon_sym_BQUOTE] = ACTIONS(3720), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3720), - [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_RBRACE] = ACTIONS(4789), + [sym__special_characters] = ACTIONS(4791), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(4793), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4793), }, [1801] = { - [sym_concatenation] = STATE(1654), - [sym_string] = STATE(2075), - [sym_simple_expansion] = STATE(2075), - [sym_string_expansion] = STATE(2075), - [sym_expansion] = STATE(2075), - [sym_command_substitution] = STATE(2075), - [sym_process_substitution] = STATE(2075), - [sym__special_characters] = ACTIONS(4778), - [anon_sym_DQUOTE] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [sym_raw_string] = ACTIONS(4780), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), - [anon_sym_BQUOTE] = ACTIONS(239), - [anon_sym_LT_LPAREN] = ACTIONS(241), - [anon_sym_GT_LPAREN] = ACTIONS(241), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4780), + [sym__concat] = ACTIONS(2980), + [anon_sym_RPAREN] = ACTIONS(2980), + [sym__special_characters] = ACTIONS(2980), + [anon_sym_DQUOTE] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2982), + [sym_raw_string] = ACTIONS(2980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2980), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2980), + [anon_sym_BQUOTE] = ACTIONS(2980), + [anon_sym_LT_LPAREN] = ACTIONS(2980), + [anon_sym_GT_LPAREN] = ACTIONS(2980), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2980), }, [1802] = { - [aux_sym_concatenation_repeat1] = STATE(2076), - [sym__concat] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_BQUOTE] = ACTIONS(773), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(777), + [sym_concatenation] = STATE(2064), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2064), + [sym_regex] = ACTIONS(4795), + [anon_sym_RBRACE] = ACTIONS(4797), + [anon_sym_EQ] = ACTIONS(4799), + [anon_sym_DASH] = ACTIONS(4799), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4801), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4799), + [anon_sym_COLON_QMARK] = ACTIONS(4799), + [anon_sym_COLON_DASH] = ACTIONS(4799), + [anon_sym_PERCENT] = ACTIONS(4799), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1803] = { - [aux_sym_concatenation_repeat1] = STATE(2076), - [sym__concat] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_SEMI_SEMI] = ACTIONS(791), - [anon_sym_PIPE_AMP] = ACTIONS(791), - [anon_sym_AMP_AMP] = ACTIONS(791), - [anon_sym_PIPE_PIPE] = ACTIONS(791), - [anon_sym_BQUOTE] = ACTIONS(791), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_AMP] = ACTIONS(793), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4797), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1804] = { - [aux_sym_concatenation_repeat1] = STATE(1804), - [sym__simple_heredoc_body] = ACTIONS(1763), - [sym__heredoc_body_beginning] = ACTIONS(1763), - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_LT_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT_LT] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym_concatenation] = STATE(2066), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2066), + [sym_regex] = ACTIONS(4803), + [anon_sym_RBRACE] = ACTIONS(4789), + [anon_sym_EQ] = ACTIONS(4805), + [anon_sym_DASH] = ACTIONS(4805), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4807), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4805), + [anon_sym_COLON_QMARK] = ACTIONS(4805), + [anon_sym_COLON_DASH] = ACTIONS(4805), + [anon_sym_PERCENT] = ACTIONS(4805), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1805] = { - [sym__heredoc_body_middle] = ACTIONS(2973), - [sym__heredoc_body_end] = ACTIONS(2973), - [anon_sym_DOLLAR] = ACTIONS(2975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4789), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1806] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4782), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(2068), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2068), + [anon_sym_RBRACE] = ACTIONS(4809), + [anon_sym_EQ] = ACTIONS(4811), + [anon_sym_DASH] = ACTIONS(4811), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4813), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4811), + [anon_sym_COLON_QMARK] = ACTIONS(4811), + [anon_sym_COLON_DASH] = ACTIONS(4811), + [anon_sym_PERCENT] = ACTIONS(4811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1807] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4784), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(3036), + [anon_sym_RPAREN] = ACTIONS(3036), + [sym__special_characters] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_DOLLAR] = ACTIONS(3038), + [sym_raw_string] = ACTIONS(3036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3036), + [anon_sym_BQUOTE] = ACTIONS(3036), + [anon_sym_LT_LPAREN] = ACTIONS(3036), + [anon_sym_GT_LPAREN] = ACTIONS(3036), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3036), }, [1808] = { - [anon_sym_RBRACE] = ACTIONS(4784), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4809), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1809] = { - [sym_concatenation] = STATE(2081), - [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), - [anon_sym_RBRACE] = ACTIONS(4784), - [sym__special_characters] = ACTIONS(4786), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(4788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4788), + [sym_concatenation] = STATE(2066), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2066), + [anon_sym_RBRACE] = ACTIONS(4789), + [anon_sym_EQ] = ACTIONS(4805), + [anon_sym_DASH] = ACTIONS(4805), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4807), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4805), + [anon_sym_COLON_QMARK] = ACTIONS(4805), + [anon_sym_COLON_DASH] = ACTIONS(4805), + [anon_sym_PERCENT] = ACTIONS(4805), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1810] = { - [sym__heredoc_body_middle] = ACTIONS(3009), - [sym__heredoc_body_end] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3011), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(3091), + [anon_sym_RPAREN] = ACTIONS(3091), + [sym__special_characters] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [anon_sym_DOLLAR] = ACTIONS(3093), + [sym_raw_string] = ACTIONS(3091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3091), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(3091), + [anon_sym_LT_LPAREN] = ACTIONS(3091), + [anon_sym_GT_LPAREN] = ACTIONS(3091), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3091), }, [1811] = { - [sym_concatenation] = STATE(2084), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2084), - [sym_regex] = ACTIONS(4790), - [anon_sym_RBRACE] = ACTIONS(4792), - [anon_sym_EQ] = ACTIONS(4794), - [anon_sym_DASH] = ACTIONS(4794), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4794), - [anon_sym_COLON_QMARK] = ACTIONS(4794), - [anon_sym_COLON_DASH] = ACTIONS(4794), - [anon_sym_PERCENT] = ACTIONS(4794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4815), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1812] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4792), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(4815), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1813] = { - [sym_concatenation] = STATE(2086), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2086), - [sym_regex] = ACTIONS(4798), - [anon_sym_RBRACE] = ACTIONS(4784), - [anon_sym_EQ] = ACTIONS(4800), - [anon_sym_DASH] = ACTIONS(4800), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4800), - [anon_sym_COLON_QMARK] = ACTIONS(4800), - [anon_sym_COLON_DASH] = ACTIONS(4800), - [anon_sym_PERCENT] = ACTIONS(4800), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(4817), + [anon_sym_RPAREN] = ACTIONS(4815), + [anon_sym_SEMI_SEMI] = ACTIONS(4819), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4819), + [anon_sym_AMP] = ACTIONS(4819), }, [1814] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4784), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(4815), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [1815] = { - [sym_concatenation] = STATE(2088), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2088), - [anon_sym_RBRACE] = ACTIONS(4804), - [anon_sym_EQ] = ACTIONS(4806), - [anon_sym_DASH] = ACTIONS(4806), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4808), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4806), - [anon_sym_COLON_QMARK] = ACTIONS(4806), - [anon_sym_COLON_DASH] = ACTIONS(4806), - [anon_sym_PERCENT] = ACTIONS(4806), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(4815), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1816] = { - [sym__heredoc_body_middle] = ACTIONS(3065), - [sym__heredoc_body_end] = ACTIONS(3065), - [anon_sym_DOLLAR] = ACTIONS(3067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), - [sym_comment] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(4821), + [anon_sym_SEMI_SEMI] = ACTIONS(4823), + [anon_sym_BQUOTE] = ACTIONS(4815), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4823), + [anon_sym_AMP] = ACTIONS(4823), }, [1817] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4804), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(3121), + [anon_sym_RPAREN] = ACTIONS(3121), + [sym__special_characters] = ACTIONS(3121), + [anon_sym_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3123), + [sym_raw_string] = ACTIONS(3121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3121), + [anon_sym_BQUOTE] = ACTIONS(3121), + [anon_sym_LT_LPAREN] = ACTIONS(3121), + [anon_sym_GT_LPAREN] = ACTIONS(3121), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3121), }, [1818] = { - [sym_concatenation] = STATE(2086), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2086), - [anon_sym_RBRACE] = ACTIONS(4784), - [anon_sym_EQ] = ACTIONS(4800), - [anon_sym_DASH] = ACTIONS(4800), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4800), - [anon_sym_COLON_QMARK] = ACTIONS(4800), - [anon_sym_COLON_DASH] = ACTIONS(4800), - [anon_sym_PERCENT] = ACTIONS(4800), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4825), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1819] = { - [sym__concat] = ACTIONS(2959), - [anon_sym_RPAREN] = ACTIONS(2959), - [sym__special_characters] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_DOLLAR] = ACTIONS(2961), - [sym_raw_string] = ACTIONS(2959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), - [anon_sym_BQUOTE] = ACTIONS(2959), - [anon_sym_LT_LPAREN] = ACTIONS(2959), - [anon_sym_GT_LPAREN] = ACTIONS(2959), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2959), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(4825), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1820] = { - [sym__concat] = ACTIONS(2973), - [anon_sym_RPAREN] = ACTIONS(2973), - [sym__special_characters] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_DOLLAR] = ACTIONS(2975), - [sym_raw_string] = ACTIONS(2973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), - [anon_sym_BQUOTE] = ACTIONS(2973), - [anon_sym_LT_LPAREN] = ACTIONS(2973), - [anon_sym_GT_LPAREN] = ACTIONS(2973), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2973), + [anon_sym_SEMI] = ACTIONS(4827), + [anon_sym_RPAREN] = ACTIONS(4825), + [anon_sym_SEMI_SEMI] = ACTIONS(4829), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), }, [1821] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4810), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(3921), + [sym__heredoc_body_beginning] = ACTIONS(3921), + [sym_file_descriptor] = ACTIONS(3921), + [sym__concat] = ACTIONS(3921), + [sym_variable_name] = ACTIONS(3921), + [ts_builtin_sym_end] = ACTIONS(3921), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym_PIPE] = ACTIONS(3923), + [anon_sym_RPAREN] = ACTIONS(3921), + [anon_sym_SEMI_SEMI] = ACTIONS(3921), + [anon_sym_PIPE_AMP] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_GT] = ACTIONS(3923), + [anon_sym_GT_GT] = ACTIONS(3921), + [anon_sym_AMP_GT] = ACTIONS(3923), + [anon_sym_AMP_GT_GT] = ACTIONS(3921), + [anon_sym_LT_AMP] = ACTIONS(3921), + [anon_sym_GT_AMP] = ACTIONS(3921), + [anon_sym_LT_LT] = ACTIONS(3923), + [anon_sym_LT_LT_DASH] = ACTIONS(3921), + [anon_sym_LT_LT_LT] = ACTIONS(3921), + [sym__special_characters] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_DOLLAR] = ACTIONS(3923), + [sym_raw_string] = ACTIONS(3921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3921), + [anon_sym_BQUOTE] = ACTIONS(3921), + [anon_sym_LT_LPAREN] = ACTIONS(3921), + [anon_sym_GT_LPAREN] = ACTIONS(3921), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3923), + [anon_sym_LF] = ACTIONS(3921), + [anon_sym_AMP] = ACTIONS(3923), }, [1822] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4812), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(3929), + [sym__heredoc_body_beginning] = ACTIONS(3929), + [sym_file_descriptor] = ACTIONS(3929), + [sym__concat] = ACTIONS(3929), + [sym_variable_name] = ACTIONS(3929), + [ts_builtin_sym_end] = ACTIONS(3929), + [anon_sym_SEMI] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3931), + [anon_sym_RPAREN] = ACTIONS(3929), + [anon_sym_SEMI_SEMI] = ACTIONS(3929), + [anon_sym_PIPE_AMP] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_GT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_AMP_GT] = ACTIONS(3931), + [anon_sym_AMP_GT_GT] = ACTIONS(3929), + [anon_sym_LT_AMP] = ACTIONS(3929), + [anon_sym_GT_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_LT_LT_DASH] = ACTIONS(3929), + [anon_sym_LT_LT_LT] = ACTIONS(3929), + [sym__special_characters] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_DOLLAR] = ACTIONS(3931), + [sym_raw_string] = ACTIONS(3929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3929), + [anon_sym_BQUOTE] = ACTIONS(3929), + [anon_sym_LT_LPAREN] = ACTIONS(3929), + [anon_sym_GT_LPAREN] = ACTIONS(3929), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3931), + [anon_sym_LF] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3931), }, [1823] = { - [anon_sym_RBRACE] = ACTIONS(4812), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4831), + [sym_comment] = ACTIONS(57), }, [1824] = { - [sym_concatenation] = STATE(2093), - [sym_string] = STATE(2092), - [sym_simple_expansion] = STATE(2092), - [sym_string_expansion] = STATE(2092), - [sym_expansion] = STATE(2092), - [sym_command_substitution] = STATE(2092), - [sym_process_substitution] = STATE(2092), - [anon_sym_RBRACE] = ACTIONS(4812), - [sym__special_characters] = ACTIONS(4814), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(4816), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4816), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4833), + [sym_comment] = ACTIONS(57), }, [1825] = { - [sym__concat] = ACTIONS(3009), - [anon_sym_RPAREN] = ACTIONS(3009), - [sym__special_characters] = ACTIONS(3009), - [anon_sym_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3011), - [sym_raw_string] = ACTIONS(3009), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), - [anon_sym_BQUOTE] = ACTIONS(3009), - [anon_sym_LT_LPAREN] = ACTIONS(3009), - [anon_sym_GT_LPAREN] = ACTIONS(3009), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3009), + [anon_sym_RBRACE] = ACTIONS(4833), + [sym_comment] = ACTIONS(57), }, [1826] = { - [sym_concatenation] = STATE(2096), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2096), - [sym_regex] = ACTIONS(4818), - [anon_sym_RBRACE] = ACTIONS(4820), - [anon_sym_EQ] = ACTIONS(4822), - [anon_sym_DASH] = ACTIONS(4822), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4822), - [anon_sym_COLON_QMARK] = ACTIONS(4822), - [anon_sym_COLON_DASH] = ACTIONS(4822), - [anon_sym_PERCENT] = ACTIONS(4822), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(2077), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2077), + [anon_sym_RBRACE] = ACTIONS(4835), + [anon_sym_EQ] = ACTIONS(4837), + [anon_sym_DASH] = ACTIONS(4837), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4839), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4837), + [anon_sym_COLON_QMARK] = ACTIONS(4837), + [anon_sym_COLON_DASH] = ACTIONS(4837), + [anon_sym_PERCENT] = ACTIONS(4837), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1827] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4820), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(3985), + [sym__heredoc_body_beginning] = ACTIONS(3985), + [sym_file_descriptor] = ACTIONS(3985), + [sym__concat] = ACTIONS(3985), + [sym_variable_name] = ACTIONS(3985), + [ts_builtin_sym_end] = ACTIONS(3985), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_RPAREN] = ACTIONS(3985), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [anon_sym_PIPE_AMP] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_GT_GT] = ACTIONS(3985), + [anon_sym_AMP_GT] = ACTIONS(3987), + [anon_sym_AMP_GT_GT] = ACTIONS(3985), + [anon_sym_LT_AMP] = ACTIONS(3985), + [anon_sym_GT_AMP] = ACTIONS(3985), + [anon_sym_LT_LT] = ACTIONS(3987), + [anon_sym_LT_LT_DASH] = ACTIONS(3985), + [anon_sym_LT_LT_LT] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3987), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3987), }, [1828] = { - [sym_concatenation] = STATE(2098), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2098), - [sym_regex] = ACTIONS(4826), - [anon_sym_RBRACE] = ACTIONS(4812), - [anon_sym_EQ] = ACTIONS(4828), - [anon_sym_DASH] = ACTIONS(4828), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4828), - [anon_sym_COLON_QMARK] = ACTIONS(4828), - [anon_sym_COLON_DASH] = ACTIONS(4828), - [anon_sym_PERCENT] = ACTIONS(4828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4835), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1829] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4812), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(2078), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2078), + [anon_sym_RBRACE] = ACTIONS(4833), + [anon_sym_EQ] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4843), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4841), + [anon_sym_COLON_QMARK] = ACTIONS(4841), + [anon_sym_COLON_DASH] = ACTIONS(4841), + [anon_sym_PERCENT] = ACTIONS(4841), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1830] = { - [sym_concatenation] = STATE(2100), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2100), - [anon_sym_RBRACE] = ACTIONS(4832), - [anon_sym_EQ] = ACTIONS(4834), - [anon_sym_DASH] = ACTIONS(4834), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4834), - [anon_sym_COLON_QMARK] = ACTIONS(4834), - [anon_sym_COLON_DASH] = ACTIONS(4834), - [anon_sym_PERCENT] = ACTIONS(4834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4833), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1831] = { - [sym__concat] = ACTIONS(3065), - [anon_sym_RPAREN] = ACTIONS(3065), - [sym__special_characters] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [anon_sym_DOLLAR] = ACTIONS(3067), - [sym_raw_string] = ACTIONS(3065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), - [anon_sym_BQUOTE] = ACTIONS(3065), - [anon_sym_LT_LPAREN] = ACTIONS(3065), - [anon_sym_GT_LPAREN] = ACTIONS(3065), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3065), + [sym__simple_heredoc_body] = ACTIONS(4030), + [sym__heredoc_body_beginning] = ACTIONS(4030), + [sym_file_descriptor] = ACTIONS(4030), + [sym__concat] = ACTIONS(4030), + [sym_variable_name] = ACTIONS(4030), + [ts_builtin_sym_end] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_PIPE] = ACTIONS(4032), + [anon_sym_RPAREN] = ACTIONS(4030), + [anon_sym_SEMI_SEMI] = ACTIONS(4030), + [anon_sym_PIPE_AMP] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4032), + [anon_sym_GT] = ACTIONS(4032), + [anon_sym_GT_GT] = ACTIONS(4030), + [anon_sym_AMP_GT] = ACTIONS(4032), + [anon_sym_AMP_GT_GT] = ACTIONS(4030), + [anon_sym_LT_AMP] = ACTIONS(4030), + [anon_sym_GT_AMP] = ACTIONS(4030), + [anon_sym_LT_LT] = ACTIONS(4032), + [anon_sym_LT_LT_DASH] = ACTIONS(4030), + [anon_sym_LT_LT_LT] = ACTIONS(4030), + [sym__special_characters] = ACTIONS(4030), + [anon_sym_DQUOTE] = ACTIONS(4030), + [anon_sym_DOLLAR] = ACTIONS(4032), + [sym_raw_string] = ACTIONS(4030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4030), + [anon_sym_BQUOTE] = ACTIONS(4030), + [anon_sym_LT_LPAREN] = ACTIONS(4030), + [anon_sym_GT_LPAREN] = ACTIONS(4030), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4032), + [anon_sym_LF] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4032), }, [1832] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4832), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4845), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1833] = { - [sym_concatenation] = STATE(2098), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2098), - [anon_sym_RBRACE] = ACTIONS(4812), - [anon_sym_EQ] = ACTIONS(4828), - [anon_sym_DASH] = ACTIONS(4828), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4828), - [anon_sym_COLON_QMARK] = ACTIONS(4828), - [anon_sym_COLON_DASH] = ACTIONS(4828), - [anon_sym_PERCENT] = ACTIONS(4828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(4064), + [sym__heredoc_body_beginning] = ACTIONS(4064), + [sym_file_descriptor] = ACTIONS(4064), + [sym__concat] = ACTIONS(4064), + [sym_variable_name] = ACTIONS(4064), + [ts_builtin_sym_end] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4066), + [anon_sym_PIPE] = ACTIONS(4066), + [anon_sym_RPAREN] = ACTIONS(4064), + [anon_sym_SEMI_SEMI] = ACTIONS(4064), + [anon_sym_PIPE_AMP] = ACTIONS(4064), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_PIPE_PIPE] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(4066), + [anon_sym_GT] = ACTIONS(4066), + [anon_sym_GT_GT] = ACTIONS(4064), + [anon_sym_AMP_GT] = ACTIONS(4066), + [anon_sym_AMP_GT_GT] = ACTIONS(4064), + [anon_sym_LT_AMP] = ACTIONS(4064), + [anon_sym_GT_AMP] = ACTIONS(4064), + [anon_sym_LT_LT] = ACTIONS(4066), + [anon_sym_LT_LT_DASH] = ACTIONS(4064), + [anon_sym_LT_LT_LT] = ACTIONS(4064), + [sym__special_characters] = ACTIONS(4064), + [anon_sym_DQUOTE] = ACTIONS(4064), + [anon_sym_DOLLAR] = ACTIONS(4066), + [sym_raw_string] = ACTIONS(4064), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4064), + [anon_sym_BQUOTE] = ACTIONS(4064), + [anon_sym_LT_LPAREN] = ACTIONS(4064), + [anon_sym_GT_LPAREN] = ACTIONS(4064), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4066), + [anon_sym_LF] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4066), }, [1834] = { - [sym__concat] = ACTIONS(3120), - [anon_sym_RPAREN] = ACTIONS(3120), - [sym__special_characters] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [sym_raw_string] = ACTIONS(3120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), - [anon_sym_BQUOTE] = ACTIONS(3120), - [anon_sym_LT_LPAREN] = ACTIONS(3120), - [anon_sym_GT_LPAREN] = ACTIONS(3120), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3120), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4847), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1835] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(4838), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(4847), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [1836] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(4838), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__simple_heredoc_body] = ACTIONS(4070), + [sym__heredoc_body_beginning] = ACTIONS(4070), + [sym_file_descriptor] = ACTIONS(4070), + [sym__concat] = ACTIONS(4070), + [sym_variable_name] = ACTIONS(4070), + [ts_builtin_sym_end] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym_PIPE] = ACTIONS(4072), + [anon_sym_RPAREN] = ACTIONS(4070), + [anon_sym_SEMI_SEMI] = ACTIONS(4070), + [anon_sym_PIPE_AMP] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_PIPE_PIPE] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4072), + [anon_sym_GT] = ACTIONS(4072), + [anon_sym_GT_GT] = ACTIONS(4070), + [anon_sym_AMP_GT] = ACTIONS(4072), + [anon_sym_AMP_GT_GT] = ACTIONS(4070), + [anon_sym_LT_AMP] = ACTIONS(4070), + [anon_sym_GT_AMP] = ACTIONS(4070), + [anon_sym_LT_LT] = ACTIONS(4072), + [anon_sym_LT_LT_DASH] = ACTIONS(4070), + [anon_sym_LT_LT_LT] = ACTIONS(4070), + [sym__special_characters] = ACTIONS(4070), + [anon_sym_DQUOTE] = ACTIONS(4070), + [anon_sym_DOLLAR] = ACTIONS(4072), + [sym_raw_string] = ACTIONS(4070), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4070), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4070), + [anon_sym_BQUOTE] = ACTIONS(4070), + [anon_sym_LT_LPAREN] = ACTIONS(4070), + [anon_sym_GT_LPAREN] = ACTIONS(4070), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4072), + [anon_sym_LF] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4072), }, [1837] = { - [sym__concat] = ACTIONS(3158), - [anon_sym_RPAREN] = ACTIONS(3158), - [sym__special_characters] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [anon_sym_DOLLAR] = ACTIONS(3160), - [sym_raw_string] = ACTIONS(3158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), - [anon_sym_BQUOTE] = ACTIONS(3158), - [anon_sym_LT_LPAREN] = ACTIONS(3158), - [anon_sym_GT_LPAREN] = ACTIONS(3158), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3158), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4849), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1838] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(4840), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__simple_heredoc_body] = ACTIONS(4851), + [sym__heredoc_body_beginning] = ACTIONS(4851), + [sym_file_descriptor] = ACTIONS(4851), + [ts_builtin_sym_end] = ACTIONS(4851), + [anon_sym_SEMI] = ACTIONS(4853), + [anon_sym_esac] = ACTIONS(4851), + [anon_sym_PIPE] = ACTIONS(4853), + [anon_sym_RPAREN] = ACTIONS(4851), + [anon_sym_SEMI_SEMI] = ACTIONS(4851), + [anon_sym_PIPE_AMP] = ACTIONS(4851), + [anon_sym_AMP_AMP] = ACTIONS(4851), + [anon_sym_PIPE_PIPE] = ACTIONS(4851), + [anon_sym_LT] = ACTIONS(4853), + [anon_sym_GT] = ACTIONS(4853), + [anon_sym_GT_GT] = ACTIONS(4851), + [anon_sym_AMP_GT] = ACTIONS(4853), + [anon_sym_AMP_GT_GT] = ACTIONS(4851), + [anon_sym_LT_AMP] = ACTIONS(4851), + [anon_sym_GT_AMP] = ACTIONS(4851), + [anon_sym_LT_LT] = ACTIONS(4853), + [anon_sym_LT_LT_DASH] = ACTIONS(4851), + [anon_sym_LT_LT_LT] = ACTIONS(4851), + [anon_sym_BQUOTE] = ACTIONS(4851), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4851), + [anon_sym_AMP] = ACTIONS(4853), }, [1839] = { - [sym_file_descriptor] = ACTIONS(3934), - [sym__concat] = ACTIONS(3934), - [sym_variable_name] = ACTIONS(3934), - [ts_builtin_sym_end] = ACTIONS(3934), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym_PIPE] = ACTIONS(3936), - [anon_sym_RPAREN] = ACTIONS(3934), - [anon_sym_SEMI_SEMI] = ACTIONS(3934), - [anon_sym_PIPE_AMP] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_LT] = ACTIONS(3936), - [anon_sym_GT] = ACTIONS(3936), - [anon_sym_GT_GT] = ACTIONS(3934), - [anon_sym_AMP_GT] = ACTIONS(3936), - [anon_sym_AMP_GT_GT] = ACTIONS(3934), - [anon_sym_LT_AMP] = ACTIONS(3934), - [anon_sym_GT_AMP] = ACTIONS(3934), - [sym__special_characters] = ACTIONS(3934), - [anon_sym_DQUOTE] = ACTIONS(3934), - [anon_sym_DOLLAR] = ACTIONS(3936), - [sym_raw_string] = ACTIONS(3934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), - [anon_sym_BQUOTE] = ACTIONS(3934), - [anon_sym_LT_LPAREN] = ACTIONS(3934), - [anon_sym_GT_LPAREN] = ACTIONS(3934), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3936), - [anon_sym_LF] = ACTIONS(3934), - [anon_sym_AMP] = ACTIONS(3936), + [sym_do_group] = STATE(2082), + [sym_compound_statement] = STATE(2082), + [anon_sym_do] = ACTIONS(493), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(57), }, [1840] = { - [sym_file_descriptor] = ACTIONS(3942), - [sym__concat] = ACTIONS(3942), - [sym_variable_name] = ACTIONS(3942), - [ts_builtin_sym_end] = ACTIONS(3942), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym_PIPE] = ACTIONS(3944), - [anon_sym_RPAREN] = ACTIONS(3942), - [anon_sym_SEMI_SEMI] = ACTIONS(3942), - [anon_sym_PIPE_AMP] = ACTIONS(3942), - [anon_sym_AMP_AMP] = ACTIONS(3942), - [anon_sym_PIPE_PIPE] = ACTIONS(3942), - [anon_sym_LT] = ACTIONS(3944), - [anon_sym_GT] = ACTIONS(3944), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_AMP_GT] = ACTIONS(3944), - [anon_sym_AMP_GT_GT] = ACTIONS(3942), - [anon_sym_LT_AMP] = ACTIONS(3942), - [anon_sym_GT_AMP] = ACTIONS(3942), - [sym__special_characters] = ACTIONS(3942), - [anon_sym_DQUOTE] = ACTIONS(3942), - [anon_sym_DOLLAR] = ACTIONS(3944), - [sym_raw_string] = ACTIONS(3942), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), - [anon_sym_BQUOTE] = ACTIONS(3942), - [anon_sym_LT_LPAREN] = ACTIONS(3942), - [anon_sym_GT_LPAREN] = ACTIONS(3942), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3944), - [anon_sym_LF] = ACTIONS(3942), - [anon_sym_AMP] = ACTIONS(3944), + [sym_do_group] = STATE(2082), + [sym_compound_statement] = STATE(2082), + [anon_sym_SEMI] = ACTIONS(4855), + [anon_sym_do] = ACTIONS(493), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(57), }, [1841] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4842), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(3921), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym_SEMI_SEMI] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_EQ_TILDE] = ACTIONS(3921), + [anon_sym_EQ_EQ] = ACTIONS(3921), + [anon_sym_EQ] = ACTIONS(3923), + [anon_sym_PLUS_EQ] = ACTIONS(3921), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_GT] = ACTIONS(3923), + [anon_sym_BANG_EQ] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3923), + [anon_sym_DASH] = ACTIONS(3923), + [anon_sym_DASH_EQ] = ACTIONS(3921), + [anon_sym_LT_EQ] = ACTIONS(3921), + [anon_sym_GT_EQ] = ACTIONS(3921), + [anon_sym_PLUS_PLUS] = ACTIONS(3921), + [anon_sym_DASH_DASH] = ACTIONS(3921), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3921), + [anon_sym_LF] = ACTIONS(3921), + [anon_sym_AMP] = ACTIONS(3923), }, [1842] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4844), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(3929), + [anon_sym_SEMI] = ACTIONS(3931), + [anon_sym_SEMI_SEMI] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_EQ_TILDE] = ACTIONS(3929), + [anon_sym_EQ_EQ] = ACTIONS(3929), + [anon_sym_EQ] = ACTIONS(3931), + [anon_sym_PLUS_EQ] = ACTIONS(3929), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_GT] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_DASH_EQ] = ACTIONS(3929), + [anon_sym_LT_EQ] = ACTIONS(3929), + [anon_sym_GT_EQ] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3929), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3929), + [anon_sym_LF] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3931), }, [1843] = { - [anon_sym_RBRACE] = ACTIONS(4844), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4857), + [sym_comment] = ACTIONS(57), }, [1844] = { - [sym_concatenation] = STATE(2106), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2106), - [anon_sym_RBRACE] = ACTIONS(4846), - [anon_sym_EQ] = ACTIONS(4848), - [anon_sym_DASH] = ACTIONS(4848), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4850), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4848), - [anon_sym_COLON_QMARK] = ACTIONS(4848), - [anon_sym_COLON_DASH] = ACTIONS(4848), - [anon_sym_PERCENT] = ACTIONS(4848), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4859), + [sym_comment] = ACTIONS(57), }, [1845] = { - [sym_file_descriptor] = ACTIONS(3998), - [sym__concat] = ACTIONS(3998), - [sym_variable_name] = ACTIONS(3998), - [ts_builtin_sym_end] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym_PIPE] = ACTIONS(4000), - [anon_sym_RPAREN] = ACTIONS(3998), - [anon_sym_SEMI_SEMI] = ACTIONS(3998), - [anon_sym_PIPE_AMP] = ACTIONS(3998), - [anon_sym_AMP_AMP] = ACTIONS(3998), - [anon_sym_PIPE_PIPE] = ACTIONS(3998), - [anon_sym_LT] = ACTIONS(4000), - [anon_sym_GT] = ACTIONS(4000), - [anon_sym_GT_GT] = ACTIONS(3998), - [anon_sym_AMP_GT] = ACTIONS(4000), - [anon_sym_AMP_GT_GT] = ACTIONS(3998), - [anon_sym_LT_AMP] = ACTIONS(3998), - [anon_sym_GT_AMP] = ACTIONS(3998), - [sym__special_characters] = ACTIONS(3998), - [anon_sym_DQUOTE] = ACTIONS(3998), - [anon_sym_DOLLAR] = ACTIONS(4000), - [sym_raw_string] = ACTIONS(3998), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), - [anon_sym_BQUOTE] = ACTIONS(3998), - [anon_sym_LT_LPAREN] = ACTIONS(3998), - [anon_sym_GT_LPAREN] = ACTIONS(3998), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4000), - [anon_sym_LF] = ACTIONS(3998), - [anon_sym_AMP] = ACTIONS(4000), + [anon_sym_RBRACE] = ACTIONS(4859), + [sym_comment] = ACTIONS(57), }, [1846] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4846), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(2087), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2087), + [anon_sym_RBRACE] = ACTIONS(4861), + [anon_sym_EQ] = ACTIONS(4863), + [anon_sym_DASH] = ACTIONS(4863), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4865), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4863), + [anon_sym_COLON_QMARK] = ACTIONS(4863), + [anon_sym_COLON_DASH] = ACTIONS(4863), + [anon_sym_PERCENT] = ACTIONS(4863), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1847] = { - [sym_concatenation] = STATE(2107), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2107), - [anon_sym_RBRACE] = ACTIONS(4844), - [anon_sym_EQ] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4852), - [anon_sym_COLON_QMARK] = ACTIONS(4852), - [anon_sym_COLON_DASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4852), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(3985), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_EQ_TILDE] = ACTIONS(3985), + [anon_sym_EQ_EQ] = ACTIONS(3985), + [anon_sym_EQ] = ACTIONS(3987), + [anon_sym_PLUS_EQ] = ACTIONS(3985), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_BANG_EQ] = ACTIONS(3985), + [anon_sym_PLUS] = ACTIONS(3987), + [anon_sym_DASH] = ACTIONS(3987), + [anon_sym_DASH_EQ] = ACTIONS(3985), + [anon_sym_LT_EQ] = ACTIONS(3985), + [anon_sym_GT_EQ] = ACTIONS(3985), + [anon_sym_PLUS_PLUS] = ACTIONS(3985), + [anon_sym_DASH_DASH] = ACTIONS(3985), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3985), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3987), }, [1848] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4844), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4861), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1849] = { - [sym_file_descriptor] = ACTIONS(4043), - [sym__concat] = ACTIONS(4043), - [sym_variable_name] = ACTIONS(4043), - [ts_builtin_sym_end] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4045), - [anon_sym_PIPE] = ACTIONS(4045), - [anon_sym_RPAREN] = ACTIONS(4043), - [anon_sym_SEMI_SEMI] = ACTIONS(4043), - [anon_sym_PIPE_AMP] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4045), - [anon_sym_GT] = ACTIONS(4045), - [anon_sym_GT_GT] = ACTIONS(4043), - [anon_sym_AMP_GT] = ACTIONS(4045), - [anon_sym_AMP_GT_GT] = ACTIONS(4043), - [anon_sym_LT_AMP] = ACTIONS(4043), - [anon_sym_GT_AMP] = ACTIONS(4043), - [sym__special_characters] = ACTIONS(4043), - [anon_sym_DQUOTE] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(4045), - [sym_raw_string] = ACTIONS(4043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), - [anon_sym_BQUOTE] = ACTIONS(4043), - [anon_sym_LT_LPAREN] = ACTIONS(4043), - [anon_sym_GT_LPAREN] = ACTIONS(4043), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4045), - [anon_sym_LF] = ACTIONS(4043), - [anon_sym_AMP] = ACTIONS(4045), + [sym_concatenation] = STATE(2088), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2088), + [anon_sym_RBRACE] = ACTIONS(4859), + [anon_sym_EQ] = ACTIONS(4867), + [anon_sym_DASH] = ACTIONS(4867), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4867), + [anon_sym_COLON_QMARK] = ACTIONS(4867), + [anon_sym_COLON_DASH] = ACTIONS(4867), + [anon_sym_PERCENT] = ACTIONS(4867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1850] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4856), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4859), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1851] = { - [sym_file_descriptor] = ACTIONS(4065), - [sym__concat] = ACTIONS(4065), - [sym_variable_name] = ACTIONS(4065), - [ts_builtin_sym_end] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_PIPE] = ACTIONS(4067), - [anon_sym_RPAREN] = ACTIONS(4065), - [anon_sym_SEMI_SEMI] = ACTIONS(4065), - [anon_sym_PIPE_AMP] = ACTIONS(4065), - [anon_sym_AMP_AMP] = ACTIONS(4065), - [anon_sym_PIPE_PIPE] = ACTIONS(4065), - [anon_sym_LT] = ACTIONS(4067), - [anon_sym_GT] = ACTIONS(4067), - [anon_sym_GT_GT] = ACTIONS(4065), - [anon_sym_AMP_GT] = ACTIONS(4067), - [anon_sym_AMP_GT_GT] = ACTIONS(4065), - [anon_sym_LT_AMP] = ACTIONS(4065), - [anon_sym_GT_AMP] = ACTIONS(4065), - [sym__special_characters] = ACTIONS(4065), - [anon_sym_DQUOTE] = ACTIONS(4065), - [anon_sym_DOLLAR] = ACTIONS(4067), - [sym_raw_string] = ACTIONS(4065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), - [anon_sym_BQUOTE] = ACTIONS(4065), - [anon_sym_LT_LPAREN] = ACTIONS(4065), - [anon_sym_GT_LPAREN] = ACTIONS(4065), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4067), - [anon_sym_LF] = ACTIONS(4065), - [anon_sym_AMP] = ACTIONS(4067), + [sym__concat] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_SEMI_SEMI] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_EQ_TILDE] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4032), + [anon_sym_PLUS_EQ] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4032), + [anon_sym_GT] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_DASH_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4030), + [anon_sym_DASH_DASH] = ACTIONS(4030), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4030), + [anon_sym_LF] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4032), }, [1852] = { - [sym_file_descriptor] = ACTIONS(4089), - [sym__concat] = ACTIONS(4089), - [sym_variable_name] = ACTIONS(4089), - [ts_builtin_sym_end] = ACTIONS(4089), - [anon_sym_SEMI] = ACTIONS(4091), - [anon_sym_PIPE] = ACTIONS(4091), - [anon_sym_RPAREN] = ACTIONS(4089), - [anon_sym_SEMI_SEMI] = ACTIONS(4089), - [anon_sym_PIPE_AMP] = ACTIONS(4089), - [anon_sym_AMP_AMP] = ACTIONS(4089), - [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_LT] = ACTIONS(4091), - [anon_sym_GT] = ACTIONS(4091), - [anon_sym_GT_GT] = ACTIONS(4089), - [anon_sym_AMP_GT] = ACTIONS(4091), - [anon_sym_AMP_GT_GT] = ACTIONS(4089), - [anon_sym_LT_AMP] = ACTIONS(4089), - [anon_sym_GT_AMP] = ACTIONS(4089), - [sym__special_characters] = ACTIONS(4089), - [anon_sym_DQUOTE] = ACTIONS(4089), - [anon_sym_DOLLAR] = ACTIONS(4091), - [sym_raw_string] = ACTIONS(4089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), - [anon_sym_BQUOTE] = ACTIONS(4089), - [anon_sym_LT_LPAREN] = ACTIONS(4089), - [anon_sym_GT_LPAREN] = ACTIONS(4089), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4091), - [anon_sym_LF] = ACTIONS(4089), - [anon_sym_AMP] = ACTIONS(4091), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4871), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1853] = { - [ts_builtin_sym_end] = ACTIONS(4858), - [anon_sym_SEMI] = ACTIONS(4860), - [anon_sym_esac] = ACTIONS(4858), - [anon_sym_PIPE] = ACTIONS(4860), - [anon_sym_RPAREN] = ACTIONS(4858), - [anon_sym_SEMI_SEMI] = ACTIONS(4858), - [anon_sym_PIPE_AMP] = ACTIONS(4858), - [anon_sym_AMP_AMP] = ACTIONS(4858), - [anon_sym_PIPE_PIPE] = ACTIONS(4858), - [anon_sym_BQUOTE] = ACTIONS(4858), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4858), - [anon_sym_AMP] = ACTIONS(4860), + [sym__concat] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4066), + [anon_sym_SEMI_SEMI] = ACTIONS(4064), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_PIPE_PIPE] = ACTIONS(4064), + [anon_sym_EQ_TILDE] = ACTIONS(4064), + [anon_sym_EQ_EQ] = ACTIONS(4064), + [anon_sym_EQ] = ACTIONS(4066), + [anon_sym_PLUS_EQ] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(4066), + [anon_sym_GT] = ACTIONS(4066), + [anon_sym_BANG_EQ] = ACTIONS(4064), + [anon_sym_PLUS] = ACTIONS(4066), + [anon_sym_DASH] = ACTIONS(4066), + [anon_sym_DASH_EQ] = ACTIONS(4064), + [anon_sym_LT_EQ] = ACTIONS(4064), + [anon_sym_GT_EQ] = ACTIONS(4064), + [anon_sym_PLUS_PLUS] = ACTIONS(4064), + [anon_sym_DASH_DASH] = ACTIONS(4064), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4064), + [anon_sym_LF] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4066), }, [1854] = { - [ts_builtin_sym_end] = ACTIONS(2594), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym_esac] = ACTIONS(2594), - [anon_sym_PIPE] = ACTIONS(2596), - [anon_sym_RPAREN] = ACTIONS(2594), - [anon_sym_SEMI_SEMI] = ACTIONS(2594), - [anon_sym_PIPE_AMP] = ACTIONS(2594), - [anon_sym_AMP_AMP] = ACTIONS(2594), - [anon_sym_PIPE_PIPE] = ACTIONS(2594), - [anon_sym_BQUOTE] = ACTIONS(2594), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2596), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4873), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1855] = { - [sym__terminated_statement] = STATE(1234), - [sym_for_statement] = STATE(751), - [sym_c_style_for_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_if_statement] = STATE(751), - [sym_case_statement] = STATE(751), - [sym_function_definition] = STATE(751), - [sym_subshell] = STATE(751), - [sym_pipeline] = STATE(751), - [sym_list] = STATE(751), - [sym_negated_command] = STATE(751), - [sym_test_command] = STATE(751), - [sym_declaration_command] = STATE(751), - [sym_unset_command] = STATE(751), - [sym_command] = STATE(751), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(752), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(1234), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(4873), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [1856] = { - [sym_do_group] = STATE(2110), - [sym_compound_statement] = STATE(2110), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(3350), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym_SEMI_SEMI] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_PIPE_PIPE] = ACTIONS(4070), + [anon_sym_EQ_TILDE] = ACTIONS(4070), + [anon_sym_EQ_EQ] = ACTIONS(4070), + [anon_sym_EQ] = ACTIONS(4072), + [anon_sym_PLUS_EQ] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4072), + [anon_sym_GT] = ACTIONS(4072), + [anon_sym_BANG_EQ] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4072), + [anon_sym_DASH] = ACTIONS(4072), + [anon_sym_DASH_EQ] = ACTIONS(4070), + [anon_sym_LT_EQ] = ACTIONS(4070), + [anon_sym_GT_EQ] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4070), + [anon_sym_LF] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4072), }, [1857] = { - [sym_do_group] = STATE(2110), - [sym_compound_statement] = STATE(2110), - [anon_sym_SEMI] = ACTIONS(4864), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(3350), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4875), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1858] = { - [sym__concat] = ACTIONS(3934), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym_esac] = ACTIONS(3934), - [anon_sym_PIPE] = ACTIONS(3936), - [anon_sym_SEMI_SEMI] = ACTIONS(3934), - [anon_sym_PIPE_AMP] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_EQ_TILDE] = ACTIONS(3934), - [anon_sym_EQ_EQ] = ACTIONS(3934), - [anon_sym_EQ] = ACTIONS(3936), - [anon_sym_PLUS_EQ] = ACTIONS(3934), - [anon_sym_LT] = ACTIONS(3936), - [anon_sym_GT] = ACTIONS(3936), - [anon_sym_BANG_EQ] = ACTIONS(3934), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_DASH_EQ] = ACTIONS(3934), - [anon_sym_LT_EQ] = ACTIONS(3934), - [anon_sym_GT_EQ] = ACTIONS(3934), - [anon_sym_PLUS_PLUS] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(3934), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3934), - [anon_sym_LF] = ACTIONS(3934), - [anon_sym_AMP] = ACTIONS(3936), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4877), + [anon_sym_AMP_AMP] = ACTIONS(465), + [anon_sym_PIPE_PIPE] = ACTIONS(465), + [anon_sym_EQ_TILDE] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(467), + [anon_sym_EQ] = ACTIONS(469), + [anon_sym_PLUS_EQ] = ACTIONS(465), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(465), + [anon_sym_PLUS] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_DASH_EQ] = ACTIONS(465), + [anon_sym_LT_EQ] = ACTIONS(465), + [anon_sym_GT_EQ] = ACTIONS(465), + [anon_sym_PLUS_PLUS] = ACTIONS(471), + [anon_sym_DASH_DASH] = ACTIONS(471), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(465), }, [1859] = { - [sym__concat] = ACTIONS(3942), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym_esac] = ACTIONS(3942), - [anon_sym_PIPE] = ACTIONS(3944), - [anon_sym_SEMI_SEMI] = ACTIONS(3942), - [anon_sym_PIPE_AMP] = ACTIONS(3942), - [anon_sym_AMP_AMP] = ACTIONS(3942), - [anon_sym_PIPE_PIPE] = ACTIONS(3942), - [anon_sym_EQ_TILDE] = ACTIONS(3942), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ] = ACTIONS(3944), - [anon_sym_PLUS_EQ] = ACTIONS(3942), - [anon_sym_LT] = ACTIONS(3944), - [anon_sym_GT] = ACTIONS(3944), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_PLUS] = ACTIONS(3944), - [anon_sym_DASH] = ACTIONS(3944), - [anon_sym_DASH_EQ] = ACTIONS(3942), - [anon_sym_LT_EQ] = ACTIONS(3942), - [anon_sym_GT_EQ] = ACTIONS(3942), - [anon_sym_PLUS_PLUS] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(3942), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3942), - [anon_sym_LF] = ACTIONS(3942), - [anon_sym_AMP] = ACTIONS(3944), + [sym__concat] = ACTIONS(2930), + [anon_sym_SEMI] = ACTIONS(2932), + [anon_sym_SEMI_SEMI] = ACTIONS(2930), + [sym__special_characters] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [anon_sym_DOLLAR] = ACTIONS(2932), + [sym_raw_string] = ACTIONS(2930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2930), + [anon_sym_BQUOTE] = ACTIONS(2930), + [anon_sym_LT_LPAREN] = ACTIONS(2930), + [anon_sym_GT_LPAREN] = ACTIONS(2930), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2932), + [anon_sym_LF] = ACTIONS(2930), + [anon_sym_AMP] = ACTIONS(2930), }, [1860] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4866), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_SEMI_SEMI] = ACTIONS(2944), + [sym__special_characters] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_DOLLAR] = ACTIONS(2946), + [sym_raw_string] = ACTIONS(2944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2944), + [anon_sym_BQUOTE] = ACTIONS(2944), + [anon_sym_LT_LPAREN] = ACTIONS(2944), + [anon_sym_GT_LPAREN] = ACTIONS(2944), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2946), + [anon_sym_LF] = ACTIONS(2944), + [anon_sym_AMP] = ACTIONS(2944), }, [1861] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4868), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4879), + [sym_comment] = ACTIONS(57), }, [1862] = { - [anon_sym_RBRACE] = ACTIONS(4868), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4881), + [sym_comment] = ACTIONS(57), }, [1863] = { - [sym_concatenation] = STATE(2115), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2115), - [anon_sym_RBRACE] = ACTIONS(4870), - [anon_sym_EQ] = ACTIONS(4872), - [anon_sym_DASH] = ACTIONS(4872), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4872), - [anon_sym_COLON_QMARK] = ACTIONS(4872), - [anon_sym_COLON_DASH] = ACTIONS(4872), - [anon_sym_PERCENT] = ACTIONS(4872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(4881), + [sym_comment] = ACTIONS(57), }, [1864] = { - [sym__concat] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym_esac] = ACTIONS(3998), - [anon_sym_PIPE] = ACTIONS(4000), - [anon_sym_SEMI_SEMI] = ACTIONS(3998), - [anon_sym_PIPE_AMP] = ACTIONS(3998), - [anon_sym_AMP_AMP] = ACTIONS(3998), - [anon_sym_PIPE_PIPE] = ACTIONS(3998), - [anon_sym_EQ_TILDE] = ACTIONS(3998), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ] = ACTIONS(4000), - [anon_sym_PLUS_EQ] = ACTIONS(3998), - [anon_sym_LT] = ACTIONS(4000), - [anon_sym_GT] = ACTIONS(4000), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_PLUS] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_DASH_EQ] = ACTIONS(3998), - [anon_sym_LT_EQ] = ACTIONS(3998), - [anon_sym_GT_EQ] = ACTIONS(3998), - [anon_sym_PLUS_PLUS] = ACTIONS(3998), - [anon_sym_DASH_DASH] = ACTIONS(3998), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3998), - [anon_sym_LF] = ACTIONS(3998), - [anon_sym_AMP] = ACTIONS(4000), + [sym_concatenation] = STATE(2097), + [sym_string] = STATE(2096), + [sym_simple_expansion] = STATE(2096), + [sym_string_expansion] = STATE(2096), + [sym_expansion] = STATE(2096), + [sym_command_substitution] = STATE(2096), + [sym_process_substitution] = STATE(2096), + [anon_sym_RBRACE] = ACTIONS(4881), + [sym__special_characters] = ACTIONS(4883), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4885), }, [1865] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4870), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(2980), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_SEMI_SEMI] = ACTIONS(2980), + [sym__special_characters] = ACTIONS(2980), + [anon_sym_DQUOTE] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2982), + [sym_raw_string] = ACTIONS(2980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2980), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2980), + [anon_sym_BQUOTE] = ACTIONS(2980), + [anon_sym_LT_LPAREN] = ACTIONS(2980), + [anon_sym_GT_LPAREN] = ACTIONS(2980), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2982), + [anon_sym_LF] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2980), }, [1866] = { - [sym_concatenation] = STATE(2116), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2116), - [anon_sym_RBRACE] = ACTIONS(4868), - [anon_sym_EQ] = ACTIONS(4876), - [anon_sym_DASH] = ACTIONS(4876), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4876), - [anon_sym_COLON_QMARK] = ACTIONS(4876), - [anon_sym_COLON_DASH] = ACTIONS(4876), - [anon_sym_PERCENT] = ACTIONS(4876), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(2100), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2100), + [sym_regex] = ACTIONS(4887), + [anon_sym_RBRACE] = ACTIONS(4889), + [anon_sym_EQ] = ACTIONS(4891), + [anon_sym_DASH] = ACTIONS(4891), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4893), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_COLON_QMARK] = ACTIONS(4891), + [anon_sym_COLON_DASH] = ACTIONS(4891), + [anon_sym_PERCENT] = ACTIONS(4891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1867] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4868), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4889), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1868] = { - [sym__concat] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4045), - [anon_sym_esac] = ACTIONS(4043), - [anon_sym_PIPE] = ACTIONS(4045), - [anon_sym_SEMI_SEMI] = ACTIONS(4043), - [anon_sym_PIPE_AMP] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_EQ_TILDE] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4043), - [anon_sym_EQ] = ACTIONS(4045), - [anon_sym_PLUS_EQ] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4045), - [anon_sym_GT] = ACTIONS(4045), - [anon_sym_BANG_EQ] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4045), - [anon_sym_DASH] = ACTIONS(4045), - [anon_sym_DASH_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4043), - [anon_sym_LF] = ACTIONS(4043), - [anon_sym_AMP] = ACTIONS(4045), + [sym_concatenation] = STATE(2102), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2102), + [sym_regex] = ACTIONS(4895), + [anon_sym_RBRACE] = ACTIONS(4881), + [anon_sym_EQ] = ACTIONS(4897), + [anon_sym_DASH] = ACTIONS(4897), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4897), + [anon_sym_COLON_QMARK] = ACTIONS(4897), + [anon_sym_COLON_DASH] = ACTIONS(4897), + [anon_sym_PERCENT] = ACTIONS(4897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1869] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4880), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4881), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1870] = { - [sym__concat] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_esac] = ACTIONS(4065), - [anon_sym_PIPE] = ACTIONS(4067), - [anon_sym_SEMI_SEMI] = ACTIONS(4065), - [anon_sym_PIPE_AMP] = ACTIONS(4065), - [anon_sym_AMP_AMP] = ACTIONS(4065), - [anon_sym_PIPE_PIPE] = ACTIONS(4065), - [anon_sym_EQ_TILDE] = ACTIONS(4065), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4065), - [anon_sym_LT] = ACTIONS(4067), - [anon_sym_GT] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_PLUS] = ACTIONS(4067), - [anon_sym_DASH] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4065), - [anon_sym_LT_EQ] = ACTIONS(4065), - [anon_sym_GT_EQ] = ACTIONS(4065), - [anon_sym_PLUS_PLUS] = ACTIONS(4065), - [anon_sym_DASH_DASH] = ACTIONS(4065), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4065), - [anon_sym_LF] = ACTIONS(4065), - [anon_sym_AMP] = ACTIONS(4067), + [sym_concatenation] = STATE(2104), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2104), + [anon_sym_RBRACE] = ACTIONS(4901), + [anon_sym_EQ] = ACTIONS(4903), + [anon_sym_DASH] = ACTIONS(4903), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4903), + [anon_sym_COLON_QMARK] = ACTIONS(4903), + [anon_sym_COLON_DASH] = ACTIONS(4903), + [anon_sym_PERCENT] = ACTIONS(4903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1871] = { - [sym__concat] = ACTIONS(4089), - [anon_sym_SEMI] = ACTIONS(4091), - [anon_sym_esac] = ACTIONS(4089), - [anon_sym_PIPE] = ACTIONS(4091), - [anon_sym_SEMI_SEMI] = ACTIONS(4089), - [anon_sym_PIPE_AMP] = ACTIONS(4089), - [anon_sym_AMP_AMP] = ACTIONS(4089), - [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_EQ_TILDE] = ACTIONS(4089), - [anon_sym_EQ_EQ] = ACTIONS(4089), - [anon_sym_EQ] = ACTIONS(4091), - [anon_sym_PLUS_EQ] = ACTIONS(4089), - [anon_sym_LT] = ACTIONS(4091), - [anon_sym_GT] = ACTIONS(4091), - [anon_sym_BANG_EQ] = ACTIONS(4089), - [anon_sym_PLUS] = ACTIONS(4091), - [anon_sym_DASH] = ACTIONS(4091), - [anon_sym_DASH_EQ] = ACTIONS(4089), - [anon_sym_LT_EQ] = ACTIONS(4089), - [anon_sym_GT_EQ] = ACTIONS(4089), - [anon_sym_PLUS_PLUS] = ACTIONS(4089), - [anon_sym_DASH_DASH] = ACTIONS(4089), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4089), - [anon_sym_LF] = ACTIONS(4089), - [anon_sym_AMP] = ACTIONS(4091), + [sym__concat] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_SEMI_SEMI] = ACTIONS(3036), + [sym__special_characters] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_DOLLAR] = ACTIONS(3038), + [sym_raw_string] = ACTIONS(3036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3036), + [anon_sym_BQUOTE] = ACTIONS(3036), + [anon_sym_LT_LPAREN] = ACTIONS(3036), + [anon_sym_GT_LPAREN] = ACTIONS(3036), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3038), + [anon_sym_LF] = ACTIONS(3036), + [anon_sym_AMP] = ACTIONS(3036), }, [1872] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(4882), - [anon_sym_AMP_AMP] = ACTIONS(493), - [anon_sym_PIPE_PIPE] = ACTIONS(493), - [anon_sym_EQ_TILDE] = ACTIONS(495), - [anon_sym_EQ_EQ] = ACTIONS(495), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(493), - [anon_sym_LT] = ACTIONS(497), - [anon_sym_GT] = ACTIONS(497), - [anon_sym_BANG_EQ] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(497), - [anon_sym_DASH] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(493), - [anon_sym_LT_EQ] = ACTIONS(493), - [anon_sym_GT_EQ] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(493), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4901), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1873] = { - [sym__concat] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_SEMI_SEMI] = ACTIONS(2959), - [sym__special_characters] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_DOLLAR] = ACTIONS(2961), - [sym_raw_string] = ACTIONS(2959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), - [anon_sym_BQUOTE] = ACTIONS(2959), - [anon_sym_LT_LPAREN] = ACTIONS(2959), - [anon_sym_GT_LPAREN] = ACTIONS(2959), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2961), - [anon_sym_LF] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), + [sym_concatenation] = STATE(2102), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2102), + [anon_sym_RBRACE] = ACTIONS(4881), + [anon_sym_EQ] = ACTIONS(4897), + [anon_sym_DASH] = ACTIONS(4897), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4897), + [anon_sym_COLON_QMARK] = ACTIONS(4897), + [anon_sym_COLON_DASH] = ACTIONS(4897), + [anon_sym_PERCENT] = ACTIONS(4897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1874] = { - [sym__concat] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym_SEMI_SEMI] = ACTIONS(2973), - [sym__special_characters] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_DOLLAR] = ACTIONS(2975), - [sym_raw_string] = ACTIONS(2973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), - [anon_sym_BQUOTE] = ACTIONS(2973), - [anon_sym_LT_LPAREN] = ACTIONS(2973), - [anon_sym_GT_LPAREN] = ACTIONS(2973), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2975), - [anon_sym_LF] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2973), + [sym__concat] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_SEMI_SEMI] = ACTIONS(3091), + [sym__special_characters] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [anon_sym_DOLLAR] = ACTIONS(3093), + [sym_raw_string] = ACTIONS(3091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3091), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(3091), + [anon_sym_LT_LPAREN] = ACTIONS(3091), + [anon_sym_GT_LPAREN] = ACTIONS(3091), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3093), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3091), }, [1875] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4884), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4907), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1876] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4886), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(4907), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1877] = { - [anon_sym_RBRACE] = ACTIONS(4886), - [sym_comment] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(4909), + [anon_sym_RPAREN] = ACTIONS(4907), + [anon_sym_SEMI_SEMI] = ACTIONS(4911), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4911), + [anon_sym_AMP] = ACTIONS(4911), }, [1878] = { - [sym_concatenation] = STATE(2123), - [sym_string] = STATE(2122), - [sym_simple_expansion] = STATE(2122), - [sym_string_expansion] = STATE(2122), - [sym_expansion] = STATE(2122), - [sym_command_substitution] = STATE(2122), - [sym_process_substitution] = STATE(2122), - [anon_sym_RBRACE] = ACTIONS(4886), - [sym__special_characters] = ACTIONS(4888), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(4890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4890), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(4907), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [1879] = { - [sym__concat] = ACTIONS(3009), - [anon_sym_SEMI] = ACTIONS(3011), - [anon_sym_SEMI_SEMI] = ACTIONS(3009), - [sym__special_characters] = ACTIONS(3009), - [anon_sym_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3011), - [sym_raw_string] = ACTIONS(3009), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), - [anon_sym_BQUOTE] = ACTIONS(3009), - [anon_sym_LT_LPAREN] = ACTIONS(3009), - [anon_sym_GT_LPAREN] = ACTIONS(3009), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3011), - [anon_sym_LF] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3009), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(4907), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1880] = { - [sym_concatenation] = STATE(2126), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2126), - [sym_regex] = ACTIONS(4892), - [anon_sym_RBRACE] = ACTIONS(4894), - [anon_sym_EQ] = ACTIONS(4896), - [anon_sym_DASH] = ACTIONS(4896), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4896), - [anon_sym_COLON_QMARK] = ACTIONS(4896), - [anon_sym_COLON_DASH] = ACTIONS(4896), - [anon_sym_PERCENT] = ACTIONS(4896), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(4913), + [anon_sym_SEMI_SEMI] = ACTIONS(4915), + [anon_sym_BQUOTE] = ACTIONS(4907), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4915), + [anon_sym_AMP] = ACTIONS(4915), }, [1881] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4894), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_SEMI_SEMI] = ACTIONS(3121), + [sym__special_characters] = ACTIONS(3121), + [anon_sym_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3123), + [sym_raw_string] = ACTIONS(3121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3121), + [anon_sym_BQUOTE] = ACTIONS(3121), + [anon_sym_LT_LPAREN] = ACTIONS(3121), + [anon_sym_GT_LPAREN] = ACTIONS(3121), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3123), + [anon_sym_LF] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3121), }, [1882] = { - [sym_concatenation] = STATE(2128), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2128), - [sym_regex] = ACTIONS(4900), - [anon_sym_RBRACE] = ACTIONS(4886), - [anon_sym_EQ] = ACTIONS(4902), - [anon_sym_DASH] = ACTIONS(4902), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4904), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4902), - [anon_sym_COLON_QMARK] = ACTIONS(4902), - [anon_sym_COLON_DASH] = ACTIONS(4902), - [anon_sym_PERCENT] = ACTIONS(4902), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4917), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1883] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4886), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(4917), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [1884] = { - [sym_concatenation] = STATE(2130), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2130), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_EQ] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4908), - [anon_sym_COLON_QMARK] = ACTIONS(4908), - [anon_sym_COLON_DASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(4919), + [anon_sym_RPAREN] = ACTIONS(4917), + [anon_sym_SEMI_SEMI] = ACTIONS(4921), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4921), + [anon_sym_AMP] = ACTIONS(4921), }, [1885] = { - [sym__concat] = ACTIONS(3065), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym_SEMI_SEMI] = ACTIONS(3065), - [sym__special_characters] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [anon_sym_DOLLAR] = ACTIONS(3067), - [sym_raw_string] = ACTIONS(3065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), - [anon_sym_BQUOTE] = ACTIONS(3065), - [anon_sym_LT_LPAREN] = ACTIONS(3065), - [anon_sym_GT_LPAREN] = ACTIONS(3065), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3067), - [anon_sym_LF] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3065), + [sym__concat] = ACTIONS(3921), + [anon_sym_PIPE] = ACTIONS(3923), + [anon_sym_RPAREN] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_EQ_TILDE] = ACTIONS(3921), + [anon_sym_EQ_EQ] = ACTIONS(3921), + [anon_sym_EQ] = ACTIONS(3923), + [anon_sym_PLUS_EQ] = ACTIONS(3921), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_GT] = ACTIONS(3923), + [anon_sym_BANG_EQ] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3923), + [anon_sym_DASH] = ACTIONS(3923), + [anon_sym_DASH_EQ] = ACTIONS(3921), + [anon_sym_LT_EQ] = ACTIONS(3921), + [anon_sym_GT_EQ] = ACTIONS(3921), + [anon_sym_PLUS_PLUS] = ACTIONS(3921), + [anon_sym_DASH_DASH] = ACTIONS(3921), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3921), }, [1886] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(3929), + [anon_sym_PIPE] = ACTIONS(3931), + [anon_sym_RPAREN] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_EQ_TILDE] = ACTIONS(3929), + [anon_sym_EQ_EQ] = ACTIONS(3929), + [anon_sym_EQ] = ACTIONS(3931), + [anon_sym_PLUS_EQ] = ACTIONS(3929), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_GT] = ACTIONS(3931), + [anon_sym_BANG_EQ] = ACTIONS(3929), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_DASH_EQ] = ACTIONS(3929), + [anon_sym_LT_EQ] = ACTIONS(3929), + [anon_sym_GT_EQ] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3929), + [anon_sym_DASH_DASH] = ACTIONS(3929), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3929), }, [1887] = { - [sym_concatenation] = STATE(2128), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2128), - [anon_sym_RBRACE] = ACTIONS(4886), - [anon_sym_EQ] = ACTIONS(4902), - [anon_sym_DASH] = ACTIONS(4902), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4904), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4902), - [anon_sym_COLON_QMARK] = ACTIONS(4902), - [anon_sym_COLON_DASH] = ACTIONS(4902), - [anon_sym_PERCENT] = ACTIONS(4902), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4923), + [sym_comment] = ACTIONS(57), }, [1888] = { - [sym__concat] = ACTIONS(3120), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_SEMI_SEMI] = ACTIONS(3120), - [sym__special_characters] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [sym_raw_string] = ACTIONS(3120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), - [anon_sym_BQUOTE] = ACTIONS(3120), - [anon_sym_LT_LPAREN] = ACTIONS(3120), - [anon_sym_GT_LPAREN] = ACTIONS(3120), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3122), - [anon_sym_LF] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3120), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(4925), + [sym_comment] = ACTIONS(57), }, [1889] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(4912), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(4925), + [sym_comment] = ACTIONS(57), }, [1890] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(4912), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_concatenation] = STATE(2113), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2113), + [anon_sym_RBRACE] = ACTIONS(4927), + [anon_sym_EQ] = ACTIONS(4929), + [anon_sym_DASH] = ACTIONS(4929), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4929), + [anon_sym_COLON_QMARK] = ACTIONS(4929), + [anon_sym_COLON_DASH] = ACTIONS(4929), + [anon_sym_PERCENT] = ACTIONS(4929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1891] = { - [sym__concat] = ACTIONS(3158), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_SEMI_SEMI] = ACTIONS(3158), - [sym__special_characters] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [anon_sym_DOLLAR] = ACTIONS(3160), - [sym_raw_string] = ACTIONS(3158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), - [anon_sym_BQUOTE] = ACTIONS(3158), - [anon_sym_LT_LPAREN] = ACTIONS(3158), - [anon_sym_GT_LPAREN] = ACTIONS(3158), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3160), - [anon_sym_LF] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3158), + [sym__concat] = ACTIONS(3985), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_RPAREN] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_EQ_TILDE] = ACTIONS(3985), + [anon_sym_EQ_EQ] = ACTIONS(3985), + [anon_sym_EQ] = ACTIONS(3987), + [anon_sym_PLUS_EQ] = ACTIONS(3985), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_BANG_EQ] = ACTIONS(3985), + [anon_sym_PLUS] = ACTIONS(3987), + [anon_sym_DASH] = ACTIONS(3987), + [anon_sym_DASH_EQ] = ACTIONS(3985), + [anon_sym_LT_EQ] = ACTIONS(3985), + [anon_sym_GT_EQ] = ACTIONS(3985), + [anon_sym_PLUS_PLUS] = ACTIONS(3985), + [anon_sym_DASH_DASH] = ACTIONS(3985), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(3985), }, [1892] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(4914), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4927), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1893] = { - [sym__concat] = ACTIONS(3934), - [anon_sym_PIPE] = ACTIONS(3936), - [anon_sym_RPAREN] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_EQ_TILDE] = ACTIONS(3934), - [anon_sym_EQ_EQ] = ACTIONS(3934), - [anon_sym_EQ] = ACTIONS(3936), - [anon_sym_PLUS_EQ] = ACTIONS(3934), - [anon_sym_LT] = ACTIONS(3936), - [anon_sym_GT] = ACTIONS(3936), - [anon_sym_BANG_EQ] = ACTIONS(3934), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_DASH_EQ] = ACTIONS(3934), - [anon_sym_LT_EQ] = ACTIONS(3934), - [anon_sym_GT_EQ] = ACTIONS(3934), - [anon_sym_PLUS_PLUS] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(3934), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3934), + [sym_concatenation] = STATE(2114), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2114), + [anon_sym_RBRACE] = ACTIONS(4925), + [anon_sym_EQ] = ACTIONS(4933), + [anon_sym_DASH] = ACTIONS(4933), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(4935), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(4933), + [anon_sym_COLON_QMARK] = ACTIONS(4933), + [anon_sym_COLON_DASH] = ACTIONS(4933), + [anon_sym_PERCENT] = ACTIONS(4933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1894] = { - [sym__concat] = ACTIONS(3942), - [anon_sym_PIPE] = ACTIONS(3944), - [anon_sym_RPAREN] = ACTIONS(3942), - [anon_sym_AMP_AMP] = ACTIONS(3942), - [anon_sym_PIPE_PIPE] = ACTIONS(3942), - [anon_sym_EQ_TILDE] = ACTIONS(3942), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_EQ] = ACTIONS(3944), - [anon_sym_PLUS_EQ] = ACTIONS(3942), - [anon_sym_LT] = ACTIONS(3944), - [anon_sym_GT] = ACTIONS(3944), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_PLUS] = ACTIONS(3944), - [anon_sym_DASH] = ACTIONS(3944), - [anon_sym_DASH_EQ] = ACTIONS(3942), - [anon_sym_LT_EQ] = ACTIONS(3942), - [anon_sym_GT_EQ] = ACTIONS(3942), - [anon_sym_PLUS_PLUS] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(3942), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3942), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4925), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1895] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4916), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(4030), + [anon_sym_PIPE] = ACTIONS(4032), + [anon_sym_RPAREN] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_EQ_TILDE] = ACTIONS(4030), + [anon_sym_EQ_EQ] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4032), + [anon_sym_PLUS_EQ] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4032), + [anon_sym_GT] = ACTIONS(4032), + [anon_sym_BANG_EQ] = ACTIONS(4030), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_DASH_EQ] = ACTIONS(4030), + [anon_sym_LT_EQ] = ACTIONS(4030), + [anon_sym_GT_EQ] = ACTIONS(4030), + [anon_sym_PLUS_PLUS] = ACTIONS(4030), + [anon_sym_DASH_DASH] = ACTIONS(4030), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4030), }, [1896] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(4918), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4937), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1897] = { - [anon_sym_RBRACE] = ACTIONS(4918), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(4064), + [anon_sym_PIPE] = ACTIONS(4066), + [anon_sym_RPAREN] = ACTIONS(4064), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_PIPE_PIPE] = ACTIONS(4064), + [anon_sym_EQ_TILDE] = ACTIONS(4064), + [anon_sym_EQ_EQ] = ACTIONS(4064), + [anon_sym_EQ] = ACTIONS(4066), + [anon_sym_PLUS_EQ] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(4066), + [anon_sym_GT] = ACTIONS(4066), + [anon_sym_BANG_EQ] = ACTIONS(4064), + [anon_sym_PLUS] = ACTIONS(4066), + [anon_sym_DASH] = ACTIONS(4066), + [anon_sym_DASH_EQ] = ACTIONS(4064), + [anon_sym_LT_EQ] = ACTIONS(4064), + [anon_sym_GT_EQ] = ACTIONS(4064), + [anon_sym_PLUS_PLUS] = ACTIONS(4064), + [anon_sym_DASH_DASH] = ACTIONS(4064), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4064), }, [1898] = { - [sym_concatenation] = STATE(2136), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2136), - [anon_sym_RBRACE] = ACTIONS(4920), - [anon_sym_EQ] = ACTIONS(4922), - [anon_sym_DASH] = ACTIONS(4922), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4924), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4922), - [anon_sym_COLON_QMARK] = ACTIONS(4922), - [anon_sym_COLON_DASH] = ACTIONS(4922), - [anon_sym_PERCENT] = ACTIONS(4922), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4939), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1899] = { - [sym__concat] = ACTIONS(3998), - [anon_sym_PIPE] = ACTIONS(4000), - [anon_sym_RPAREN] = ACTIONS(3998), - [anon_sym_AMP_AMP] = ACTIONS(3998), - [anon_sym_PIPE_PIPE] = ACTIONS(3998), - [anon_sym_EQ_TILDE] = ACTIONS(3998), - [anon_sym_EQ_EQ] = ACTIONS(3998), - [anon_sym_EQ] = ACTIONS(4000), - [anon_sym_PLUS_EQ] = ACTIONS(3998), - [anon_sym_LT] = ACTIONS(4000), - [anon_sym_GT] = ACTIONS(4000), - [anon_sym_BANG_EQ] = ACTIONS(3998), - [anon_sym_PLUS] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_DASH_EQ] = ACTIONS(3998), - [anon_sym_LT_EQ] = ACTIONS(3998), - [anon_sym_GT_EQ] = ACTIONS(3998), - [anon_sym_PLUS_PLUS] = ACTIONS(3998), - [anon_sym_DASH_DASH] = ACTIONS(3998), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(3998), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(4939), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [1900] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4920), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(4070), + [anon_sym_PIPE] = ACTIONS(4072), + [anon_sym_RPAREN] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_PIPE_PIPE] = ACTIONS(4070), + [anon_sym_EQ_TILDE] = ACTIONS(4070), + [anon_sym_EQ_EQ] = ACTIONS(4070), + [anon_sym_EQ] = ACTIONS(4072), + [anon_sym_PLUS_EQ] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4072), + [anon_sym_GT] = ACTIONS(4072), + [anon_sym_BANG_EQ] = ACTIONS(4070), + [anon_sym_PLUS] = ACTIONS(4072), + [anon_sym_DASH] = ACTIONS(4072), + [anon_sym_DASH_EQ] = ACTIONS(4070), + [anon_sym_LT_EQ] = ACTIONS(4070), + [anon_sym_GT_EQ] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4070), }, [1901] = { - [sym_concatenation] = STATE(2137), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2137), - [anon_sym_RBRACE] = ACTIONS(4918), - [anon_sym_EQ] = ACTIONS(4926), - [anon_sym_DASH] = ACTIONS(4926), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4926), - [anon_sym_COLON_QMARK] = ACTIONS(4926), - [anon_sym_COLON_DASH] = ACTIONS(4926), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(4941), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [1902] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4918), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(4687), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4687), + [anon_sym_AMP_AMP] = ACTIONS(4687), + [anon_sym_PIPE_PIPE] = ACTIONS(4687), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4687), + [anon_sym_EQ_TILDE] = ACTIONS(4687), + [anon_sym_EQ_EQ] = ACTIONS(4687), + [anon_sym_EQ] = ACTIONS(4689), + [anon_sym_PLUS_EQ] = ACTIONS(4687), + [anon_sym_LT] = ACTIONS(4689), + [anon_sym_GT] = ACTIONS(4689), + [anon_sym_BANG_EQ] = ACTIONS(4687), + [anon_sym_PLUS] = ACTIONS(4689), + [anon_sym_DASH] = ACTIONS(4689), + [anon_sym_DASH_EQ] = ACTIONS(4687), + [anon_sym_LT_EQ] = ACTIONS(4687), + [anon_sym_GT_EQ] = ACTIONS(4687), + [anon_sym_PLUS_PLUS] = ACTIONS(4687), + [anon_sym_DASH_DASH] = ACTIONS(4687), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4687), }, [1903] = { - [sym__concat] = ACTIONS(4043), - [anon_sym_PIPE] = ACTIONS(4045), - [anon_sym_RPAREN] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_EQ_TILDE] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4043), - [anon_sym_EQ] = ACTIONS(4045), - [anon_sym_PLUS_EQ] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4045), - [anon_sym_GT] = ACTIONS(4045), - [anon_sym_BANG_EQ] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4045), - [anon_sym_DASH] = ACTIONS(4045), - [anon_sym_DASH_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4043), + [sym__concat] = ACTIONS(4691), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4691), + [anon_sym_AMP_AMP] = ACTIONS(4691), + [anon_sym_PIPE_PIPE] = ACTIONS(4691), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4691), + [anon_sym_EQ_TILDE] = ACTIONS(4691), + [anon_sym_EQ_EQ] = ACTIONS(4691), + [anon_sym_EQ] = ACTIONS(4693), + [anon_sym_PLUS_EQ] = ACTIONS(4691), + [anon_sym_LT] = ACTIONS(4693), + [anon_sym_GT] = ACTIONS(4693), + [anon_sym_BANG_EQ] = ACTIONS(4691), + [anon_sym_PLUS] = ACTIONS(4693), + [anon_sym_DASH] = ACTIONS(4693), + [anon_sym_DASH_EQ] = ACTIONS(4691), + [anon_sym_LT_EQ] = ACTIONS(4691), + [anon_sym_GT_EQ] = ACTIONS(4691), + [anon_sym_PLUS_PLUS] = ACTIONS(4691), + [anon_sym_DASH_DASH] = ACTIONS(4691), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4691), }, [1904] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4930), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(4695), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4695), + [anon_sym_AMP_AMP] = ACTIONS(4695), + [anon_sym_PIPE_PIPE] = ACTIONS(4695), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4695), + [anon_sym_EQ_TILDE] = ACTIONS(4695), + [anon_sym_EQ_EQ] = ACTIONS(4695), + [anon_sym_EQ] = ACTIONS(4697), + [anon_sym_PLUS_EQ] = ACTIONS(4695), + [anon_sym_LT] = ACTIONS(4697), + [anon_sym_GT] = ACTIONS(4697), + [anon_sym_BANG_EQ] = ACTIONS(4695), + [anon_sym_PLUS] = ACTIONS(4697), + [anon_sym_DASH] = ACTIONS(4697), + [anon_sym_DASH_EQ] = ACTIONS(4695), + [anon_sym_LT_EQ] = ACTIONS(4695), + [anon_sym_GT_EQ] = ACTIONS(4695), + [anon_sym_PLUS_PLUS] = ACTIONS(4695), + [anon_sym_DASH_DASH] = ACTIONS(4695), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4695), }, [1905] = { - [sym__concat] = ACTIONS(4065), - [anon_sym_PIPE] = ACTIONS(4067), - [anon_sym_RPAREN] = ACTIONS(4065), - [anon_sym_AMP_AMP] = ACTIONS(4065), - [anon_sym_PIPE_PIPE] = ACTIONS(4065), - [anon_sym_EQ_TILDE] = ACTIONS(4065), - [anon_sym_EQ_EQ] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(4067), - [anon_sym_PLUS_EQ] = ACTIONS(4065), - [anon_sym_LT] = ACTIONS(4067), - [anon_sym_GT] = ACTIONS(4067), - [anon_sym_BANG_EQ] = ACTIONS(4065), - [anon_sym_PLUS] = ACTIONS(4067), - [anon_sym_DASH] = ACTIONS(4067), - [anon_sym_DASH_EQ] = ACTIONS(4065), - [anon_sym_LT_EQ] = ACTIONS(4065), - [anon_sym_GT_EQ] = ACTIONS(4065), - [anon_sym_PLUS_PLUS] = ACTIONS(4065), - [anon_sym_DASH_DASH] = ACTIONS(4065), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4065), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4943), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1906] = { - [sym__concat] = ACTIONS(4089), - [anon_sym_PIPE] = ACTIONS(4091), - [anon_sym_RPAREN] = ACTIONS(4089), - [anon_sym_AMP_AMP] = ACTIONS(4089), - [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_EQ_TILDE] = ACTIONS(4089), - [anon_sym_EQ_EQ] = ACTIONS(4089), - [anon_sym_EQ] = ACTIONS(4091), - [anon_sym_PLUS_EQ] = ACTIONS(4089), - [anon_sym_LT] = ACTIONS(4091), - [anon_sym_GT] = ACTIONS(4091), - [anon_sym_BANG_EQ] = ACTIONS(4089), - [anon_sym_PLUS] = ACTIONS(4091), - [anon_sym_DASH] = ACTIONS(4091), - [anon_sym_DASH_EQ] = ACTIONS(4089), - [anon_sym_LT_EQ] = ACTIONS(4089), - [anon_sym_GT_EQ] = ACTIONS(4089), - [anon_sym_PLUS_PLUS] = ACTIONS(4089), - [anon_sym_DASH_DASH] = ACTIONS(4089), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4089), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(4945), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1907] = { - [sym__concat] = ACTIONS(4710), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4710), - [anon_sym_AMP_AMP] = ACTIONS(4710), - [anon_sym_PIPE_PIPE] = ACTIONS(4710), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4710), - [anon_sym_EQ_TILDE] = ACTIONS(4710), - [anon_sym_EQ_EQ] = ACTIONS(4710), - [anon_sym_EQ] = ACTIONS(4712), - [anon_sym_PLUS_EQ] = ACTIONS(4710), - [anon_sym_LT] = ACTIONS(4712), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_BANG_EQ] = ACTIONS(4710), - [anon_sym_PLUS] = ACTIONS(4712), - [anon_sym_DASH] = ACTIONS(4712), - [anon_sym_DASH_EQ] = ACTIONS(4710), - [anon_sym_LT_EQ] = ACTIONS(4710), - [anon_sym_GT_EQ] = ACTIONS(4710), - [anon_sym_PLUS_PLUS] = ACTIONS(4710), - [anon_sym_DASH_DASH] = ACTIONS(4710), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4710), + [sym__concat] = ACTIONS(4731), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4731), + [anon_sym_AMP_AMP] = ACTIONS(4731), + [anon_sym_PIPE_PIPE] = ACTIONS(4731), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4731), + [anon_sym_EQ_TILDE] = ACTIONS(4731), + [anon_sym_EQ_EQ] = ACTIONS(4731), + [anon_sym_EQ] = ACTIONS(4733), + [anon_sym_PLUS_EQ] = ACTIONS(4731), + [anon_sym_LT] = ACTIONS(4733), + [anon_sym_GT] = ACTIONS(4733), + [anon_sym_BANG_EQ] = ACTIONS(4731), + [anon_sym_PLUS] = ACTIONS(4733), + [anon_sym_DASH] = ACTIONS(4733), + [anon_sym_DASH_EQ] = ACTIONS(4731), + [anon_sym_LT_EQ] = ACTIONS(4731), + [anon_sym_GT_EQ] = ACTIONS(4731), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4731), }, [1908] = { - [sym__concat] = ACTIONS(4714), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4714), - [anon_sym_AMP_AMP] = ACTIONS(4714), - [anon_sym_PIPE_PIPE] = ACTIONS(4714), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4714), - [anon_sym_EQ_TILDE] = ACTIONS(4714), - [anon_sym_EQ_EQ] = ACTIONS(4714), - [anon_sym_EQ] = ACTIONS(4716), - [anon_sym_PLUS_EQ] = ACTIONS(4714), - [anon_sym_LT] = ACTIONS(4716), - [anon_sym_GT] = ACTIONS(4716), - [anon_sym_BANG_EQ] = ACTIONS(4714), - [anon_sym_PLUS] = ACTIONS(4716), - [anon_sym_DASH] = ACTIONS(4716), - [anon_sym_DASH_EQ] = ACTIONS(4714), - [anon_sym_LT_EQ] = ACTIONS(4714), - [anon_sym_GT_EQ] = ACTIONS(4714), - [anon_sym_PLUS_PLUS] = ACTIONS(4714), - [anon_sym_DASH_DASH] = ACTIONS(4714), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4714), + [sym__concat] = ACTIONS(4751), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4751), + [anon_sym_EQ_TILDE] = ACTIONS(4751), + [anon_sym_EQ_EQ] = ACTIONS(4751), + [anon_sym_EQ] = ACTIONS(4753), + [anon_sym_PLUS_EQ] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_BANG_EQ] = ACTIONS(4751), + [anon_sym_PLUS] = ACTIONS(4753), + [anon_sym_DASH] = ACTIONS(4753), + [anon_sym_DASH_EQ] = ACTIONS(4751), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_PLUS_PLUS] = ACTIONS(4751), + [anon_sym_DASH_DASH] = ACTIONS(4751), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4751), }, [1909] = { - [sym__concat] = ACTIONS(4718), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4718), - [anon_sym_AMP_AMP] = ACTIONS(4718), - [anon_sym_PIPE_PIPE] = ACTIONS(4718), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4718), - [anon_sym_EQ_TILDE] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4718), - [anon_sym_EQ] = ACTIONS(4720), - [anon_sym_PLUS_EQ] = ACTIONS(4718), - [anon_sym_LT] = ACTIONS(4720), - [anon_sym_GT] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4718), - [anon_sym_PLUS] = ACTIONS(4720), - [anon_sym_DASH] = ACTIONS(4720), - [anon_sym_DASH_EQ] = ACTIONS(4718), - [anon_sym_LT_EQ] = ACTIONS(4718), - [anon_sym_GT_EQ] = ACTIONS(4718), - [anon_sym_PLUS_PLUS] = ACTIONS(4718), - [anon_sym_DASH_DASH] = ACTIONS(4718), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4718), + [sym__concat] = ACTIONS(4755), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4755), + [anon_sym_PIPE_PIPE] = ACTIONS(4755), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4755), + [anon_sym_EQ_TILDE] = ACTIONS(4755), + [anon_sym_EQ_EQ] = ACTIONS(4755), + [anon_sym_EQ] = ACTIONS(4757), + [anon_sym_PLUS_EQ] = ACTIONS(4755), + [anon_sym_LT] = ACTIONS(4757), + [anon_sym_GT] = ACTIONS(4757), + [anon_sym_BANG_EQ] = ACTIONS(4755), + [anon_sym_PLUS] = ACTIONS(4757), + [anon_sym_DASH] = ACTIONS(4757), + [anon_sym_DASH_EQ] = ACTIONS(4755), + [anon_sym_LT_EQ] = ACTIONS(4755), + [anon_sym_GT_EQ] = ACTIONS(4755), + [anon_sym_PLUS_PLUS] = ACTIONS(4755), + [anon_sym_DASH_DASH] = ACTIONS(4755), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4755), }, [1910] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4932), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__terminated_statement] = STATE(1165), + [sym_redirected_statement] = STATE(524), + [sym_for_statement] = STATE(524), + [sym_c_style_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_compound_statement] = STATE(524), + [sym_subshell] = STATE(524), + [sym_pipeline] = STATE(524), + [sym_list] = STATE(524), + [sym_negated_command] = STATE(524), + [sym_test_command] = STATE(524), + [sym_declaration_command] = STATE(524), + [sym_unset_command] = STATE(524), + [sym_command] = STATE(524), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(525), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(1165), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_fi] = ACTIONS(4947), + [anon_sym_elif] = ACTIONS(4947), + [anon_sym_else] = ACTIONS(4947), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_typeset] = ACTIONS(101), + [anon_sym_export] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_local] = ACTIONS(101), + [anon_sym_unset] = ACTIONS(103), + [anon_sym_unsetenv] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [1911] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4934), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(4949), + [sym__heredoc_body_beginning] = ACTIONS(4949), + [sym_file_descriptor] = ACTIONS(4949), + [ts_builtin_sym_end] = ACTIONS(4949), + [anon_sym_SEMI] = ACTIONS(4951), + [anon_sym_esac] = ACTIONS(4949), + [anon_sym_PIPE] = ACTIONS(4951), + [anon_sym_RPAREN] = ACTIONS(4949), + [anon_sym_SEMI_SEMI] = ACTIONS(4949), + [anon_sym_PIPE_AMP] = ACTIONS(4949), + [anon_sym_AMP_AMP] = ACTIONS(4949), + [anon_sym_PIPE_PIPE] = ACTIONS(4949), + [anon_sym_LT] = ACTIONS(4951), + [anon_sym_GT] = ACTIONS(4951), + [anon_sym_GT_GT] = ACTIONS(4949), + [anon_sym_AMP_GT] = ACTIONS(4951), + [anon_sym_AMP_GT_GT] = ACTIONS(4949), + [anon_sym_LT_AMP] = ACTIONS(4949), + [anon_sym_GT_AMP] = ACTIONS(4949), + [anon_sym_LT_LT] = ACTIONS(4951), + [anon_sym_LT_LT_DASH] = ACTIONS(4949), + [anon_sym_LT_LT_LT] = ACTIONS(4949), + [anon_sym_BQUOTE] = ACTIONS(4949), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4949), + [anon_sym_AMP] = ACTIONS(4951), }, [1912] = { - [sym__concat] = ACTIONS(4754), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4754), - [anon_sym_AMP_AMP] = ACTIONS(4754), - [anon_sym_PIPE_PIPE] = ACTIONS(4754), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4754), - [anon_sym_EQ_TILDE] = ACTIONS(4754), - [anon_sym_EQ_EQ] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4756), - [anon_sym_PLUS_EQ] = ACTIONS(4754), - [anon_sym_LT] = ACTIONS(4756), - [anon_sym_GT] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4754), - [anon_sym_PLUS] = ACTIONS(4756), - [anon_sym_DASH] = ACTIONS(4756), - [anon_sym_DASH_EQ] = ACTIONS(4754), - [anon_sym_LT_EQ] = ACTIONS(4754), - [anon_sym_GT_EQ] = ACTIONS(4754), - [anon_sym_PLUS_PLUS] = ACTIONS(4754), - [anon_sym_DASH_DASH] = ACTIONS(4754), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4754), + [aux_sym_concatenation_repeat1] = STATE(1599), + [sym__concat] = ACTIONS(1191), + [anon_sym_PIPE] = ACTIONS(4953), + [anon_sym_RPAREN] = ACTIONS(4953), + [sym_comment] = ACTIONS(57), }, [1913] = { - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(1763), - [ts_builtin_sym_end] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_esac] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_LT_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT_LT] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [aux_sym_concatenation_repeat1] = STATE(1599), + [sym__concat] = ACTIONS(1191), + [anon_sym_PIPE] = ACTIONS(4955), + [anon_sym_RPAREN] = ACTIONS(4955), + [sym_comment] = ACTIONS(57), }, [1914] = { - [aux_sym_concatenation_repeat1] = STATE(1914), - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(4936), - [ts_builtin_sym_end] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_LT_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT_LT] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_PIPE] = ACTIONS(4955), + [anon_sym_RPAREN] = ACTIONS(4955), + [sym_comment] = ACTIONS(57), }, [1915] = { - [sym_file_descriptor] = ACTIONS(1770), - [sym__concat] = ACTIONS(1770), - [ts_builtin_sym_end] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_esac] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_RPAREN] = ACTIONS(1770), - [anon_sym_SEMI_SEMI] = ACTIONS(1770), - [anon_sym_PIPE_AMP] = ACTIONS(1770), - [anon_sym_AMP_AMP] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1770), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1772), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_AMP_GT] = ACTIONS(1772), - [anon_sym_AMP_GT_GT] = ACTIONS(1770), - [anon_sym_LT_AMP] = ACTIONS(1770), - [anon_sym_GT_AMP] = ACTIONS(1770), - [anon_sym_LT_LT] = ACTIONS(1772), - [anon_sym_LT_LT_DASH] = ACTIONS(1770), - [anon_sym_LT_LT_LT] = ACTIONS(1770), - [anon_sym_BQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(4957), + [anon_sym_PLUS_EQ] = ACTIONS(4957), + [sym_comment] = ACTIONS(57), }, [1916] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(4939), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [anon_sym_esac] = ACTIONS(4959), + [sym__special_characters] = ACTIONS(4961), + [anon_sym_DQUOTE] = ACTIONS(4961), + [anon_sym_DOLLAR] = ACTIONS(4963), + [sym_raw_string] = ACTIONS(4961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4961), + [anon_sym_BQUOTE] = ACTIONS(4961), + [anon_sym_LT_LPAREN] = ACTIONS(4961), + [anon_sym_GT_LPAREN] = ACTIONS(4961), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4963), }, [1917] = { - [sym_concatenation] = STATE(2145), - [sym_string] = STATE(2144), - [sym_simple_expansion] = STATE(2144), - [sym_string_expansion] = STATE(2144), - [sym_expansion] = STATE(2144), - [sym_command_substitution] = STATE(2144), - [sym_process_substitution] = STATE(2144), - [anon_sym_RBRACE] = ACTIONS(4941), - [sym__special_characters] = ACTIONS(4943), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(4945), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4945), + [sym_subshell] = STATE(93), + [sym_test_command] = STATE(93), + [sym_command] = STATE(93), + [sym_command_name] = STATE(1930), + [sym_variable_assignment] = STATE(1935), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(1935), + [sym_concatenation] = STATE(1933), + [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), + [aux_sym_command_repeat1] = STATE(1935), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(145), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(4430), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_DOLLAR] = ACTIONS(4434), + [sym_raw_string] = ACTIONS(4436), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4440), + [anon_sym_BQUOTE] = ACTIONS(4442), + [anon_sym_LT_LPAREN] = ACTIONS(4444), + [anon_sym_GT_LPAREN] = ACTIONS(4444), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4436), }, [1918] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(4947), - [sym_comment] = ACTIONS(55), + [sym_variable_assignment] = STATE(2131), + [sym_subscript] = STATE(2130), + [sym_concatenation] = STATE(2131), + [sym_string] = STATE(2125), + [sym_simple_expansion] = STATE(2125), + [sym_string_expansion] = STATE(2125), + [sym_expansion] = STATE(2125), + [sym_command_substitution] = STATE(2125), + [sym_process_substitution] = STATE(2125), + [aux_sym_declaration_command_repeat1] = STATE(2131), + [sym__simple_heredoc_body] = ACTIONS(181), + [sym__heredoc_body_beginning] = ACTIONS(181), + [sym_file_descriptor] = ACTIONS(181), + [sym_variable_name] = ACTIONS(4965), + [anon_sym_SEMI] = ACTIONS(185), + [anon_sym_esac] = ACTIONS(185), + [anon_sym_PIPE] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(181), + [anon_sym_PIPE_AMP] = ACTIONS(181), + [anon_sym_AMP_AMP] = ACTIONS(181), + [anon_sym_PIPE_PIPE] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(185), + [anon_sym_GT_GT] = ACTIONS(181), + [anon_sym_AMP_GT] = ACTIONS(185), + [anon_sym_AMP_GT_GT] = ACTIONS(181), + [anon_sym_LT_AMP] = ACTIONS(181), + [anon_sym_GT_AMP] = ACTIONS(181), + [anon_sym_LT_LT] = ACTIONS(185), + [anon_sym_LT_LT_DASH] = ACTIONS(181), + [anon_sym_LT_LT_LT] = ACTIONS(181), + [sym__special_characters] = ACTIONS(4967), + [anon_sym_DQUOTE] = ACTIONS(4969), + [anon_sym_DOLLAR] = ACTIONS(4971), + [sym_raw_string] = ACTIONS(4973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4977), + [anon_sym_BQUOTE] = ACTIONS(4979), + [anon_sym_LT_LPAREN] = ACTIONS(4981), + [anon_sym_GT_LPAREN] = ACTIONS(4981), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4983), + [sym_word] = ACTIONS(4985), + [anon_sym_LF] = ACTIONS(181), + [anon_sym_AMP] = ACTIONS(185), }, [1919] = { - [sym_concatenation] = STATE(2149), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2149), - [anon_sym_RBRACE] = ACTIONS(4949), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_DASH] = ACTIONS(4951), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4953), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_COLON] = ACTIONS(4951), - [anon_sym_COLON_QMARK] = ACTIONS(4951), - [anon_sym_COLON_DASH] = ACTIONS(4951), - [anon_sym_PERCENT] = ACTIONS(4951), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(2140), + [sym_string] = STATE(2135), + [sym_simple_expansion] = STATE(2135), + [sym_string_expansion] = STATE(2135), + [sym_expansion] = STATE(2135), + [sym_command_substitution] = STATE(2135), + [sym_process_substitution] = STATE(2135), + [aux_sym_unset_command_repeat1] = STATE(2140), + [sym__simple_heredoc_body] = ACTIONS(207), + [sym__heredoc_body_beginning] = ACTIONS(207), + [sym_file_descriptor] = ACTIONS(207), + [anon_sym_SEMI] = ACTIONS(209), + [anon_sym_esac] = ACTIONS(209), + [anon_sym_PIPE] = ACTIONS(209), + [anon_sym_SEMI_SEMI] = ACTIONS(207), + [anon_sym_PIPE_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_LT] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(209), + [anon_sym_GT_GT] = ACTIONS(207), + [anon_sym_AMP_GT] = ACTIONS(209), + [anon_sym_AMP_GT_GT] = ACTIONS(207), + [anon_sym_LT_AMP] = ACTIONS(207), + [anon_sym_GT_AMP] = ACTIONS(207), + [anon_sym_LT_LT] = ACTIONS(209), + [anon_sym_LT_LT_DASH] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [sym__special_characters] = ACTIONS(4987), + [anon_sym_DQUOTE] = ACTIONS(4989), + [anon_sym_DOLLAR] = ACTIONS(4991), + [sym_raw_string] = ACTIONS(4993), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4997), + [anon_sym_BQUOTE] = ACTIONS(4999), + [anon_sym_LT_LPAREN] = ACTIONS(5001), + [anon_sym_GT_LPAREN] = ACTIONS(5001), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5003), + [sym_word] = ACTIONS(5005), + [anon_sym_LF] = ACTIONS(207), + [anon_sym_AMP] = ACTIONS(209), }, [1920] = { - [sym_concatenation] = STATE(2151), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2151), - [anon_sym_RBRACE] = ACTIONS(4941), - [anon_sym_EQ] = ACTIONS(4957), - [anon_sym_DASH] = ACTIONS(4957), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(4961), - [anon_sym_COLON] = ACTIONS(4957), - [anon_sym_COLON_QMARK] = ACTIONS(4957), - [anon_sym_COLON_DASH] = ACTIONS(4957), - [anon_sym_PERCENT] = ACTIONS(4957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(2142), + [sym__simple_heredoc_body] = ACTIONS(247), + [sym__heredoc_body_beginning] = ACTIONS(247), + [sym_file_descriptor] = ACTIONS(247), + [sym__concat] = ACTIONS(5007), + [anon_sym_SEMI] = ACTIONS(251), + [anon_sym_esac] = ACTIONS(251), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_SEMI_SEMI] = ACTIONS(247), + [anon_sym_PIPE_AMP] = ACTIONS(247), + [anon_sym_AMP_AMP] = ACTIONS(247), + [anon_sym_PIPE_PIPE] = ACTIONS(247), + [anon_sym_EQ_TILDE] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(251), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(247), + [anon_sym_AMP_GT] = ACTIONS(251), + [anon_sym_AMP_GT_GT] = ACTIONS(247), + [anon_sym_LT_AMP] = ACTIONS(247), + [anon_sym_GT_AMP] = ACTIONS(247), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_LT_LT_DASH] = ACTIONS(247), + [anon_sym_LT_LT_LT] = ACTIONS(247), + [sym__special_characters] = ACTIONS(247), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_DOLLAR] = ACTIONS(251), + [sym_raw_string] = ACTIONS(247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(247), + [anon_sym_BQUOTE] = ACTIONS(247), + [anon_sym_LT_LPAREN] = ACTIONS(247), + [anon_sym_GT_LPAREN] = ACTIONS(247), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(251), + [anon_sym_LF] = ACTIONS(247), + [anon_sym_AMP] = ACTIONS(251), }, [1921] = { - [sym_file_descriptor] = ACTIONS(1871), - [sym__concat] = ACTIONS(1871), - [ts_builtin_sym_end] = ACTIONS(1871), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_esac] = ACTIONS(1871), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_RPAREN] = ACTIONS(1871), - [anon_sym_SEMI_SEMI] = ACTIONS(1871), - [anon_sym_PIPE_AMP] = ACTIONS(1871), - [anon_sym_AMP_AMP] = ACTIONS(1871), - [anon_sym_PIPE_PIPE] = ACTIONS(1871), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_GT] = ACTIONS(1873), - [anon_sym_GT_GT] = ACTIONS(1871), - [anon_sym_AMP_GT] = ACTIONS(1873), - [anon_sym_AMP_GT_GT] = ACTIONS(1871), - [anon_sym_LT_AMP] = ACTIONS(1871), - [anon_sym_GT_AMP] = ACTIONS(1871), - [anon_sym_LT_LT] = ACTIONS(1873), - [anon_sym_LT_LT_DASH] = ACTIONS(1871), - [anon_sym_LT_LT_LT] = ACTIONS(1871), - [anon_sym_BQUOTE] = ACTIONS(1871), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1873), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(2145), + [anon_sym_DQUOTE] = ACTIONS(5009), + [anon_sym_DOLLAR] = ACTIONS(5011), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [1922] = { - [sym_concatenation] = STATE(2154), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2154), - [sym_regex] = ACTIONS(4963), - [anon_sym_RBRACE] = ACTIONS(4965), - [anon_sym_EQ] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4967), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4967), - [anon_sym_COLON_QMARK] = ACTIONS(4967), - [anon_sym_COLON_DASH] = ACTIONS(4967), - [anon_sym_PERCENT] = ACTIONS(4967), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_string] = STATE(2147), + [anon_sym_DASH] = ACTIONS(5013), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_DOLLAR] = ACTIONS(5013), + [sym_raw_string] = ACTIONS(5015), + [anon_sym_POUND] = ACTIONS(5013), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5017), + [anon_sym_STAR] = ACTIONS(5019), + [anon_sym_AT] = ACTIONS(5019), + [anon_sym_QMARK] = ACTIONS(5019), + [anon_sym_0] = ACTIONS(5017), + [anon_sym__] = ACTIONS(5017), }, [1923] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4965), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(2142), + [sym__simple_heredoc_body] = ACTIONS(275), + [sym__heredoc_body_beginning] = ACTIONS(275), + [sym_file_descriptor] = ACTIONS(275), + [sym__concat] = ACTIONS(5007), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_esac] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_SEMI_SEMI] = ACTIONS(275), + [anon_sym_PIPE_AMP] = ACTIONS(275), + [anon_sym_AMP_AMP] = ACTIONS(275), + [anon_sym_PIPE_PIPE] = ACTIONS(275), + [anon_sym_EQ_TILDE] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(277), + [anon_sym_GT_GT] = ACTIONS(275), + [anon_sym_AMP_GT] = ACTIONS(277), + [anon_sym_AMP_GT_GT] = ACTIONS(275), + [anon_sym_LT_AMP] = ACTIONS(275), + [anon_sym_GT_AMP] = ACTIONS(275), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(275), + [anon_sym_LT_LT_LT] = ACTIONS(275), + [sym__special_characters] = ACTIONS(275), + [anon_sym_DQUOTE] = ACTIONS(275), + [anon_sym_DOLLAR] = ACTIONS(277), + [sym_raw_string] = ACTIONS(275), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [anon_sym_BQUOTE] = ACTIONS(275), + [anon_sym_LT_LPAREN] = ACTIONS(275), + [anon_sym_GT_LPAREN] = ACTIONS(275), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(277), + [anon_sym_LF] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), }, [1924] = { - [sym_file_descriptor] = ACTIONS(1919), - [sym__concat] = ACTIONS(1919), - [ts_builtin_sym_end] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_esac] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1919), - [anon_sym_SEMI_SEMI] = ACTIONS(1919), - [anon_sym_PIPE_AMP] = ACTIONS(1919), - [anon_sym_AMP_AMP] = ACTIONS(1919), - [anon_sym_PIPE_PIPE] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1921), - [anon_sym_GT_GT] = ACTIONS(1919), - [anon_sym_AMP_GT] = ACTIONS(1921), - [anon_sym_AMP_GT_GT] = ACTIONS(1919), - [anon_sym_LT_AMP] = ACTIONS(1919), - [anon_sym_GT_AMP] = ACTIONS(1919), - [anon_sym_LT_LT] = ACTIONS(1921), - [anon_sym_LT_LT_DASH] = ACTIONS(1919), - [anon_sym_LT_LT_LT] = ACTIONS(1919), - [anon_sym_BQUOTE] = ACTIONS(1919), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1921), + [sym_subscript] = STATE(2152), + [sym_variable_name] = ACTIONS(5021), + [anon_sym_BANG] = ACTIONS(5023), + [anon_sym_DASH] = ACTIONS(5025), + [anon_sym_DOLLAR] = ACTIONS(5025), + [anon_sym_POUND] = ACTIONS(5023), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5027), + [anon_sym_STAR] = ACTIONS(5029), + [anon_sym_AT] = ACTIONS(5029), + [anon_sym_QMARK] = ACTIONS(5029), + [anon_sym_0] = ACTIONS(5027), + [anon_sym__] = ACTIONS(5027), }, [1925] = { - [sym_concatenation] = STATE(2151), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2151), - [sym_regex] = ACTIONS(4971), - [anon_sym_RBRACE] = ACTIONS(4941), - [anon_sym_EQ] = ACTIONS(4957), - [anon_sym_DASH] = ACTIONS(4957), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(4959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(4957), - [anon_sym_COLON_QMARK] = ACTIONS(4957), - [anon_sym_COLON_DASH] = ACTIONS(4957), - [anon_sym_PERCENT] = ACTIONS(4957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__terminated_statement] = STATE(2155), + [sym_redirected_statement] = STATE(2153), + [sym_for_statement] = STATE(2153), + [sym_c_style_for_statement] = STATE(2153), + [sym_while_statement] = STATE(2153), + [sym_if_statement] = STATE(2153), + [sym_case_statement] = STATE(2153), + [sym_function_definition] = STATE(2153), + [sym_compound_statement] = STATE(2153), + [sym_subshell] = STATE(2153), + [sym_pipeline] = STATE(2153), + [sym_list] = STATE(2153), + [sym_negated_command] = STATE(2153), + [sym_test_command] = STATE(2153), + [sym_declaration_command] = STATE(2153), + [sym_unset_command] = STATE(2153), + [sym_command] = STATE(2153), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(2154), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(2155), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [1926] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(4941), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__terminated_statement] = STATE(2158), + [sym_redirected_statement] = STATE(2156), + [sym_for_statement] = STATE(2156), + [sym_c_style_for_statement] = STATE(2156), + [sym_while_statement] = STATE(2156), + [sym_if_statement] = STATE(2156), + [sym_case_statement] = STATE(2156), + [sym_function_definition] = STATE(2156), + [sym_compound_statement] = STATE(2156), + [sym_subshell] = STATE(2156), + [sym_pipeline] = STATE(2156), + [sym_list] = STATE(2156), + [sym_negated_command] = STATE(2156), + [sym_test_command] = STATE(2156), + [sym_declaration_command] = STATE(2156), + [sym_unset_command] = STATE(2156), + [sym_command] = STATE(2156), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(2157), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(2158), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [1927] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(4973), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__terminated_statement] = STATE(2161), + [sym_redirected_statement] = STATE(2159), + [sym_for_statement] = STATE(2159), + [sym_c_style_for_statement] = STATE(2159), + [sym_while_statement] = STATE(2159), + [sym_if_statement] = STATE(2159), + [sym_case_statement] = STATE(2159), + [sym_function_definition] = STATE(2159), + [sym_compound_statement] = STATE(2159), + [sym_subshell] = STATE(2159), + [sym_pipeline] = STATE(2159), + [sym_list] = STATE(2159), + [sym_negated_command] = STATE(2159), + [sym_test_command] = STATE(2159), + [sym_declaration_command] = STATE(2159), + [sym_unset_command] = STATE(2159), + [sym_command] = STATE(2159), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(2160), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(2161), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [1928] = { - [sym_file_descriptor] = ACTIONS(1927), - [sym__concat] = ACTIONS(1927), - [ts_builtin_sym_end] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_esac] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_SEMI_SEMI] = ACTIONS(1927), - [anon_sym_PIPE_AMP] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1929), - [anon_sym_GT_GT] = ACTIONS(1927), - [anon_sym_AMP_GT] = ACTIONS(1929), - [anon_sym_AMP_GT_GT] = ACTIONS(1927), - [anon_sym_LT_AMP] = ACTIONS(1927), - [anon_sym_GT_AMP] = ACTIONS(1927), - [anon_sym_LT_LT] = ACTIONS(1929), - [anon_sym_LT_LT_DASH] = ACTIONS(1927), - [anon_sym_LT_LT_LT] = ACTIONS(1927), - [anon_sym_BQUOTE] = ACTIONS(1927), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1927), - [anon_sym_AMP] = ACTIONS(1929), + [aux_sym_concatenation_repeat1] = STATE(2142), + [sym__simple_heredoc_body] = ACTIONS(275), + [sym__heredoc_body_beginning] = ACTIONS(275), + [sym_file_descriptor] = ACTIONS(275), + [sym__concat] = ACTIONS(5007), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_esac] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_SEMI_SEMI] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(295), + [anon_sym_PIPE_AMP] = ACTIONS(275), + [anon_sym_AMP_AMP] = ACTIONS(275), + [anon_sym_PIPE_PIPE] = ACTIONS(275), + [anon_sym_EQ_TILDE] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(277), + [anon_sym_GT_GT] = ACTIONS(275), + [anon_sym_AMP_GT] = ACTIONS(277), + [anon_sym_AMP_GT_GT] = ACTIONS(275), + [anon_sym_LT_AMP] = ACTIONS(275), + [anon_sym_GT_AMP] = ACTIONS(275), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(275), + [anon_sym_LT_LT_LT] = ACTIONS(275), + [sym__special_characters] = ACTIONS(275), + [anon_sym_DQUOTE] = ACTIONS(275), + [anon_sym_DOLLAR] = ACTIONS(277), + [sym_raw_string] = ACTIONS(275), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [anon_sym_BQUOTE] = ACTIONS(275), + [anon_sym_LT_LPAREN] = ACTIONS(275), + [anon_sym_GT_LPAREN] = ACTIONS(275), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(277), + [anon_sym_LF] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), }, [1929] = { - [anon_sym_SEMI] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4973), - [anon_sym_SEMI_SEMI] = ACTIONS(4977), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4977), - [anon_sym_AMP] = ACTIONS(4975), + [sym_file_redirect] = STATE(2170), + [sym_heredoc_redirect] = STATE(2170), + [sym_heredoc_body] = STATE(2169), + [sym_herestring_redirect] = STATE(2170), + [aux_sym_redirected_statement_repeat1] = STATE(2170), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(5031), + [anon_sym_SEMI] = ACTIONS(5033), + [anon_sym_esac] = ACTIONS(5035), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_SEMI_SEMI] = ACTIONS(5039), + [anon_sym_PIPE_AMP] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE_PIPE] = ACTIONS(5043), + [anon_sym_LT] = ACTIONS(5045), + [anon_sym_GT] = ACTIONS(5045), + [anon_sym_GT_GT] = ACTIONS(5047), + [anon_sym_AMP_GT] = ACTIONS(5045), + [anon_sym_AMP_GT_GT] = ACTIONS(5047), + [anon_sym_LT_AMP] = ACTIONS(5047), + [anon_sym_GT_AMP] = ACTIONS(5047), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(5049), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5051), + [anon_sym_AMP] = ACTIONS(5033), }, [1930] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4973), - [anon_sym_SEMI_SEMI] = ACTIONS(4977), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(4977), - [anon_sym_AMP] = ACTIONS(4975), - }, - [1931] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(4973), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), - }, - [1932] = { - [anon_sym_SEMI] = ACTIONS(4979), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(4981), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(4973), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4981), - [anon_sym_AMP] = ACTIONS(4979), - }, - [1933] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(4979), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(4981), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(4973), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(4981), - [anon_sym_AMP] = ACTIONS(4979), - }, - [1934] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(4983), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), - }, - [1935] = { - [sym_file_descriptor] = ACTIONS(1959), - [sym__concat] = ACTIONS(1959), - [ts_builtin_sym_end] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_esac] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_SEMI_SEMI] = ACTIONS(1959), - [anon_sym_PIPE_AMP] = ACTIONS(1959), - [anon_sym_AMP_AMP] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1959), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_AMP_GT] = ACTIONS(1961), - [anon_sym_AMP_GT_GT] = ACTIONS(1959), - [anon_sym_LT_AMP] = ACTIONS(1959), - [anon_sym_GT_AMP] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1961), - [anon_sym_LT_LT_DASH] = ACTIONS(1959), - [anon_sym_LT_LT_LT] = ACTIONS(1959), - [anon_sym_BQUOTE] = ACTIONS(1959), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1961), - }, - [1936] = { - [anon_sym_SEMI] = ACTIONS(4985), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4983), - [anon_sym_SEMI_SEMI] = ACTIONS(4987), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4987), - [anon_sym_AMP] = ACTIONS(4985), - }, - [1937] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(4985), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(4983), - [anon_sym_SEMI_SEMI] = ACTIONS(4987), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(4987), - [anon_sym_AMP] = ACTIONS(4985), - }, - [1938] = { - [aux_sym_concatenation_repeat1] = STATE(1940), - [sym_file_descriptor] = ACTIONS(1088), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1090), - [anon_sym_SEMI_SEMI] = ACTIONS(1088), - [anon_sym_PIPE_AMP] = ACTIONS(1088), - [anon_sym_AMP_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1088), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(1090), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_AMP_GT] = ACTIONS(1090), - [anon_sym_AMP_GT_GT] = ACTIONS(1088), - [anon_sym_LT_AMP] = ACTIONS(1088), - [anon_sym_GT_AMP] = ACTIONS(1088), - [anon_sym_LT_LT] = ACTIONS(1090), - [anon_sym_LT_LT_DASH] = ACTIONS(1088), - [anon_sym_LT_LT_LT] = ACTIONS(1088), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), - }, - [1939] = { - [aux_sym_concatenation_repeat1] = STATE(1940), - [sym_file_descriptor] = ACTIONS(1092), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_SEMI_SEMI] = ACTIONS(1092), - [anon_sym_PIPE_AMP] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_LT] = ACTIONS(1094), - [anon_sym_GT] = ACTIONS(1094), - [anon_sym_GT_GT] = ACTIONS(1092), - [anon_sym_AMP_GT] = ACTIONS(1094), - [anon_sym_AMP_GT_GT] = ACTIONS(1092), - [anon_sym_LT_AMP] = ACTIONS(1092), - [anon_sym_GT_AMP] = ACTIONS(1092), - [anon_sym_LT_LT] = ACTIONS(1094), - [anon_sym_LT_LT_DASH] = ACTIONS(1092), - [anon_sym_LT_LT_LT] = ACTIONS(1092), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1092), - [anon_sym_AMP] = ACTIONS(1094), - }, - [1940] = { - [aux_sym_concatenation_repeat1] = STATE(2161), - [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(809), - [anon_sym_AMP_GT_GT] = ACTIONS(807), - [anon_sym_LT_AMP] = ACTIONS(807), - [anon_sym_GT_AMP] = ACTIONS(807), - [anon_sym_LT_LT] = ACTIONS(809), - [anon_sym_LT_LT_DASH] = ACTIONS(807), - [anon_sym_LT_LT_LT] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), - }, - [1941] = { - [aux_sym_concatenation_repeat1] = STATE(1943), - [sym__concat] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1090), - [anon_sym_SEMI_SEMI] = ACTIONS(1088), - [anon_sym_PIPE_AMP] = ACTIONS(1088), - [anon_sym_AMP_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1088), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), - }, - [1942] = { - [aux_sym_concatenation_repeat1] = STATE(1943), - [sym__concat] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_SEMI_SEMI] = ACTIONS(1092), - [anon_sym_PIPE_AMP] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1092), - [anon_sym_AMP] = ACTIONS(1094), - }, - [1943] = { - [aux_sym_concatenation_repeat1] = STATE(2162), - [sym__concat] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), - }, - [1944] = { - [sym__terminated_statement] = STATE(1197), - [sym_for_statement] = STATE(545), - [sym_c_style_for_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_function_definition] = STATE(545), - [sym_subshell] = STATE(545), - [sym_pipeline] = STATE(545), - [sym_list] = STATE(545), - [sym_negated_command] = STATE(545), - [sym_test_command] = STATE(545), - [sym_declaration_command] = STATE(545), - [sym_unset_command] = STATE(545), - [sym_command] = STATE(545), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(546), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(1197), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_fi] = ACTIONS(4989), - [anon_sym_elif] = ACTIONS(4989), - [anon_sym_else] = ACTIONS(4989), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), - }, - [1945] = { - [ts_builtin_sym_end] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4993), - [anon_sym_esac] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4993), - [anon_sym_RPAREN] = ACTIONS(4991), - [anon_sym_SEMI_SEMI] = ACTIONS(4991), - [anon_sym_PIPE_AMP] = ACTIONS(4991), - [anon_sym_AMP_AMP] = ACTIONS(4991), - [anon_sym_PIPE_PIPE] = ACTIONS(4991), - [anon_sym_BQUOTE] = ACTIONS(4991), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4991), - [anon_sym_AMP] = ACTIONS(4993), - }, - [1946] = { - [aux_sym_concatenation_repeat1] = STATE(1627), - [sym__concat] = ACTIONS(1214), - [anon_sym_PIPE] = ACTIONS(4995), - [anon_sym_RPAREN] = ACTIONS(4995), - [sym_comment] = ACTIONS(55), - }, - [1947] = { - [aux_sym_concatenation_repeat1] = STATE(1627), - [sym__concat] = ACTIONS(1214), - [anon_sym_PIPE] = ACTIONS(4997), - [anon_sym_RPAREN] = ACTIONS(4997), - [sym_comment] = ACTIONS(55), - }, - [1948] = { - [anon_sym_PIPE] = ACTIONS(4997), - [anon_sym_RPAREN] = ACTIONS(4997), - [sym_comment] = ACTIONS(55), - }, - [1949] = { - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(4999), - [anon_sym_PLUS_EQ] = ACTIONS(4999), - [sym_comment] = ACTIONS(55), - }, - [1950] = { - [sym__expression] = STATE(2164), - [sym_binary_expression] = STATE(2164), - [sym_unary_expression] = STATE(2164), - [sym_postfix_expression] = STATE(2164), - [sym_parenthesized_expression] = STATE(2164), - [sym_concatenation] = STATE(2164), - [sym_string] = STATE(44), - [sym_simple_expansion] = STATE(44), - [sym_string_expansion] = STATE(44), - [sym_expansion] = STATE(44), - [sym_command_substitution] = STATE(44), - [sym_process_substitution] = STATE(44), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(73), - [sym__special_characters] = ACTIONS(75), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(79), - [sym_raw_string] = ACTIONS(81), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), - [anon_sym_BQUOTE] = ACTIONS(87), - [anon_sym_LT_LPAREN] = ACTIONS(89), - [anon_sym_GT_LPAREN] = ACTIONS(89), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(91), - [sym_test_operator] = ACTIONS(93), - }, - [1951] = { - [sym__terminated_statement] = STATE(2165), - [sym_for_statement] = STATE(63), - [sym_c_style_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_if_statement] = STATE(63), - [sym_case_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_subshell] = STATE(63), - [sym_pipeline] = STATE(63), - [sym_list] = STATE(63), - [sym_negated_command] = STATE(63), - [sym_test_command] = STATE(63), - [sym_declaration_command] = STATE(63), - [sym_unset_command] = STATE(63), - [sym_command] = STATE(63), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(65), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), - }, - [1952] = { - [anon_sym_esac] = ACTIONS(5001), - [sym__special_characters] = ACTIONS(5003), - [anon_sym_DQUOTE] = ACTIONS(5003), - [anon_sym_DOLLAR] = ACTIONS(5005), - [sym_raw_string] = ACTIONS(5003), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5003), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5003), - [anon_sym_BQUOTE] = ACTIONS(5003), - [anon_sym_LT_LPAREN] = ACTIONS(5003), - [anon_sym_GT_LPAREN] = ACTIONS(5003), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5005), - }, - [1953] = { - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5007), - }, - [1954] = { - [sym_subshell] = STATE(98), - [sym_test_command] = STATE(98), - [sym_command] = STATE(98), - [sym_command_name] = STATE(1969), - [sym_variable_assignment] = STATE(1974), - [sym_subscript] = STATE(99), - [sym_file_redirect] = STATE(1974), - [sym_concatenation] = STATE(1972), - [sym_string] = STATE(1962), - [sym_simple_expansion] = STATE(1962), - [sym_string_expansion] = STATE(1962), - [sym_expansion] = STATE(1962), - [sym_command_substitution] = STATE(1962), - [sym_process_substitution] = STATE(1962), - [aux_sym_command_repeat1] = STATE(1974), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(161), - [anon_sym_LPAREN_LPAREN] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4461), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(4467), - [anon_sym_DQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [sym_raw_string] = ACTIONS(4473), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), - [anon_sym_BQUOTE] = ACTIONS(4479), - [anon_sym_LT_LPAREN] = ACTIONS(4481), - [anon_sym_GT_LPAREN] = ACTIONS(4481), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4473), - }, - [1955] = { - [sym__expression] = STATE(2167), - [sym_binary_expression] = STATE(2167), - [sym_unary_expression] = STATE(2167), - [sym_postfix_expression] = STATE(2167), - [sym_parenthesized_expression] = STATE(2167), - [sym_concatenation] = STATE(2167), - [sym_string] = STATE(105), - [sym_simple_expansion] = STATE(105), - [sym_string_expansion] = STATE(105), - [sym_expansion] = STATE(105), - [sym_command_substitution] = STATE(105), - [sym_process_substitution] = STATE(105), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [sym__special_characters] = ACTIONS(167), - [anon_sym_DQUOTE] = ACTIONS(169), - [anon_sym_DOLLAR] = ACTIONS(171), - [sym_raw_string] = ACTIONS(173), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(175), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(177), - [anon_sym_BQUOTE] = ACTIONS(179), - [anon_sym_LT_LPAREN] = ACTIONS(181), - [anon_sym_GT_LPAREN] = ACTIONS(181), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(183), - [sym_test_operator] = ACTIONS(185), - }, - [1956] = { - [sym__expression] = STATE(2168), - [sym_binary_expression] = STATE(2168), - [sym_unary_expression] = STATE(2168), - [sym_postfix_expression] = STATE(2168), - [sym_parenthesized_expression] = STATE(2168), - [sym_concatenation] = STATE(2168), - [sym_string] = STATE(113), - [sym_simple_expansion] = STATE(113), - [sym_string_expansion] = STATE(113), - [sym_expansion] = STATE(113), - [sym_command_substitution] = STATE(113), - [sym_process_substitution] = STATE(113), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(187), - [sym__special_characters] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(77), - [anon_sym_DOLLAR] = ACTIONS(79), - [sym_raw_string] = ACTIONS(191), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(83), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(85), - [anon_sym_BQUOTE] = ACTIONS(87), - [anon_sym_LT_LPAREN] = ACTIONS(89), - [anon_sym_GT_LPAREN] = ACTIONS(89), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(193), - [sym_test_operator] = ACTIONS(195), - }, - [1957] = { - [sym_variable_assignment] = STATE(2179), - [sym_subscript] = STATE(2178), - [sym_concatenation] = STATE(2179), + [sym_concatenation] = STATE(2174), [sym_string] = STATE(2173), [sym_simple_expansion] = STATE(2173), [sym_string_expansion] = STATE(2173), [sym_expansion] = STATE(2173), [sym_command_substitution] = STATE(2173), [sym_process_substitution] = STATE(2173), - [aux_sym_declaration_command_repeat1] = STATE(2179), - [sym_variable_name] = ACTIONS(5009), - [anon_sym_SEMI] = ACTIONS(201), - [anon_sym_esac] = ACTIONS(201), - [anon_sym_PIPE] = ACTIONS(201), - [anon_sym_SEMI_SEMI] = ACTIONS(199), - [anon_sym_PIPE_AMP] = ACTIONS(199), - [anon_sym_AMP_AMP] = ACTIONS(199), - [anon_sym_PIPE_PIPE] = ACTIONS(199), - [sym__special_characters] = ACTIONS(5011), - [anon_sym_DQUOTE] = ACTIONS(5013), - [anon_sym_DOLLAR] = ACTIONS(5015), - [sym_raw_string] = ACTIONS(5017), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LT_LPAREN] = ACTIONS(5025), - [anon_sym_GT_LPAREN] = ACTIONS(5025), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5027), - [sym_word] = ACTIONS(5029), - [anon_sym_LF] = ACTIONS(199), - [anon_sym_AMP] = ACTIONS(201), + [aux_sym_command_repeat2] = STATE(2174), + [sym__simple_heredoc_body] = ACTIONS(327), + [sym__heredoc_body_beginning] = ACTIONS(327), + [sym_file_descriptor] = ACTIONS(327), + [anon_sym_SEMI] = ACTIONS(329), + [anon_sym_esac] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_SEMI_SEMI] = ACTIONS(327), + [anon_sym_PIPE_AMP] = ACTIONS(327), + [anon_sym_AMP_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(327), + [anon_sym_EQ_TILDE] = ACTIONS(5053), + [anon_sym_EQ_EQ] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(327), + [anon_sym_AMP_GT] = ACTIONS(329), + [anon_sym_AMP_GT_GT] = ACTIONS(327), + [anon_sym_LT_AMP] = ACTIONS(327), + [anon_sym_GT_AMP] = ACTIONS(327), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_LT_LT_DASH] = ACTIONS(327), + [anon_sym_LT_LT_LT] = ACTIONS(327), + [sym__special_characters] = ACTIONS(5055), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_DOLLAR] = ACTIONS(4434), + [sym_raw_string] = ACTIONS(5057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4440), + [anon_sym_BQUOTE] = ACTIONS(4442), + [anon_sym_LT_LPAREN] = ACTIONS(4444), + [anon_sym_GT_LPAREN] = ACTIONS(4444), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5059), + [anon_sym_LF] = ACTIONS(327), + [anon_sym_AMP] = ACTIONS(329), + }, + [1931] = { + [sym_file_redirect] = STATE(2170), + [sym_heredoc_redirect] = STATE(2170), + [sym_heredoc_body] = STATE(2169), + [sym_herestring_redirect] = STATE(2170), + [aux_sym_redirected_statement_repeat1] = STATE(2170), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5033), + [anon_sym_esac] = ACTIONS(4959), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_SEMI_SEMI] = ACTIONS(5039), + [anon_sym_PIPE_AMP] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE_PIPE] = ACTIONS(5043), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(5049), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5051), + [anon_sym_AMP] = ACTIONS(5033), + }, + [1932] = { + [anon_sym_EQ] = ACTIONS(4957), + [anon_sym_PLUS_EQ] = ACTIONS(4957), + [sym_comment] = ACTIONS(57), + }, + [1933] = { + [sym__simple_heredoc_body] = ACTIONS(275), + [sym__heredoc_body_beginning] = ACTIONS(275), + [sym_file_descriptor] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_esac] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_SEMI_SEMI] = ACTIONS(275), + [anon_sym_PIPE_AMP] = ACTIONS(275), + [anon_sym_AMP_AMP] = ACTIONS(275), + [anon_sym_PIPE_PIPE] = ACTIONS(275), + [anon_sym_EQ_TILDE] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(277), + [anon_sym_GT_GT] = ACTIONS(275), + [anon_sym_AMP_GT] = ACTIONS(277), + [anon_sym_AMP_GT_GT] = ACTIONS(275), + [anon_sym_LT_AMP] = ACTIONS(275), + [anon_sym_GT_AMP] = ACTIONS(275), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_LT_LT_DASH] = ACTIONS(275), + [anon_sym_LT_LT_LT] = ACTIONS(275), + [sym__special_characters] = ACTIONS(275), + [anon_sym_DQUOTE] = ACTIONS(275), + [anon_sym_DOLLAR] = ACTIONS(277), + [sym_raw_string] = ACTIONS(275), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), + [anon_sym_BQUOTE] = ACTIONS(275), + [anon_sym_LT_LPAREN] = ACTIONS(275), + [anon_sym_GT_LPAREN] = ACTIONS(275), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(277), + [anon_sym_LF] = ACTIONS(275), + [anon_sym_AMP] = ACTIONS(277), + }, + [1934] = { + [sym__terminated_statement] = STATE(2178), + [sym_redirected_statement] = STATE(2176), + [sym_for_statement] = STATE(2176), + [sym_c_style_for_statement] = STATE(2176), + [sym_while_statement] = STATE(2176), + [sym_if_statement] = STATE(2176), + [sym_case_statement] = STATE(2176), + [sym_function_definition] = STATE(2176), + [sym_compound_statement] = STATE(2176), + [sym_subshell] = STATE(2176), + [sym_pipeline] = STATE(2176), + [sym_list] = STATE(2176), + [sym_negated_command] = STATE(2176), + [sym_test_command] = STATE(2176), + [sym_declaration_command] = STATE(2176), + [sym_unset_command] = STATE(2176), + [sym_command] = STATE(2176), + [sym_command_name] = STATE(1930), + [sym_variable_assignment] = STATE(2177), + [sym_subscript] = STATE(1932), + [sym_file_redirect] = STATE(1935), + [sym_concatenation] = STATE(1933), + [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), + [aux_sym__statements_repeat1] = STATE(2178), + [aux_sym_command_repeat1] = STATE(1935), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4418), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_esac] = ACTIONS(4959), + [anon_sym_SEMI_SEMI] = ACTIONS(5061), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(4426), + [anon_sym_typeset] = ACTIONS(4426), + [anon_sym_export] = ACTIONS(4426), + [anon_sym_readonly] = ACTIONS(4426), + [anon_sym_local] = ACTIONS(4426), + [anon_sym_unset] = ACTIONS(4428), + [anon_sym_unsetenv] = ACTIONS(4428), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(4430), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_DOLLAR] = ACTIONS(4434), + [sym_raw_string] = ACTIONS(4436), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4440), + [anon_sym_BQUOTE] = ACTIONS(4442), + [anon_sym_LT_LPAREN] = ACTIONS(4444), + [anon_sym_GT_LPAREN] = ACTIONS(4444), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4446), + }, + [1935] = { + [sym_command_name] = STATE(2179), + [sym_variable_assignment] = STATE(189), + [sym_subscript] = STATE(94), + [sym_file_redirect] = STATE(189), + [sym_concatenation] = STATE(1933), + [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), + [aux_sym_command_repeat1] = STATE(189), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(145), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(5063), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_DOLLAR] = ACTIONS(4434), + [sym_raw_string] = ACTIONS(4436), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4440), + [anon_sym_BQUOTE] = ACTIONS(4442), + [anon_sym_LT_LPAREN] = ACTIONS(4444), + [anon_sym_GT_LPAREN] = ACTIONS(4444), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4436), + }, + [1936] = { + [sym__terminated_statement] = STATE(2180), + [sym_redirected_statement] = STATE(2176), + [sym_for_statement] = STATE(2176), + [sym_c_style_for_statement] = STATE(2176), + [sym_while_statement] = STATE(2176), + [sym_if_statement] = STATE(2176), + [sym_case_statement] = STATE(2176), + [sym_function_definition] = STATE(2176), + [sym_compound_statement] = STATE(2176), + [sym_subshell] = STATE(2176), + [sym_pipeline] = STATE(2176), + [sym_list] = STATE(2176), + [sym_negated_command] = STATE(2176), + [sym_test_command] = STATE(2176), + [sym_declaration_command] = STATE(2176), + [sym_unset_command] = STATE(2176), + [sym_command] = STATE(2176), + [sym_command_name] = STATE(1930), + [sym_variable_assignment] = STATE(2177), + [sym_subscript] = STATE(1932), + [sym_file_redirect] = STATE(1935), + [sym_concatenation] = STATE(1933), + [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), + [aux_sym__statements_repeat1] = STATE(2180), + [aux_sym_command_repeat1] = STATE(1935), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4418), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_esac] = ACTIONS(4959), + [anon_sym_SEMI_SEMI] = ACTIONS(5061), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(4426), + [anon_sym_typeset] = ACTIONS(4426), + [anon_sym_export] = ACTIONS(4426), + [anon_sym_readonly] = ACTIONS(4426), + [anon_sym_local] = ACTIONS(4426), + [anon_sym_unset] = ACTIONS(4428), + [anon_sym_unsetenv] = ACTIONS(4428), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(4430), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_DOLLAR] = ACTIONS(4434), + [sym_raw_string] = ACTIONS(4436), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4440), + [anon_sym_BQUOTE] = ACTIONS(4442), + [anon_sym_LT_LPAREN] = ACTIONS(4444), + [anon_sym_GT_LPAREN] = ACTIONS(4444), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4446), + }, + [1937] = { + [aux_sym_case_item_repeat1] = STATE(1937), + [anon_sym_PIPE] = ACTIONS(5065), + [anon_sym_RPAREN] = ACTIONS(4955), + [sym_comment] = ACTIONS(57), + }, + [1938] = { + [aux_sym_concatenation_repeat1] = STATE(1938), + [sym__concat] = ACTIONS(3483), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_RPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + }, + [1939] = { + [anon_sym_esac] = ACTIONS(5068), + [sym__special_characters] = ACTIONS(5070), + [anon_sym_DQUOTE] = ACTIONS(5070), + [anon_sym_DOLLAR] = ACTIONS(5072), + [sym_raw_string] = ACTIONS(5070), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5070), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5070), + [anon_sym_BQUOTE] = ACTIONS(5070), + [anon_sym_LT_LPAREN] = ACTIONS(5070), + [anon_sym_GT_LPAREN] = ACTIONS(5070), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5072), + }, + [1940] = { + [sym_file_redirect] = STATE(2170), + [sym_heredoc_redirect] = STATE(2170), + [sym_heredoc_body] = STATE(2169), + [sym_herestring_redirect] = STATE(2170), + [aux_sym_redirected_statement_repeat1] = STATE(2170), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(5031), + [anon_sym_SEMI] = ACTIONS(5033), + [anon_sym_esac] = ACTIONS(5074), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_SEMI_SEMI] = ACTIONS(5076), + [anon_sym_PIPE_AMP] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE_PIPE] = ACTIONS(5043), + [anon_sym_LT] = ACTIONS(5045), + [anon_sym_GT] = ACTIONS(5045), + [anon_sym_GT_GT] = ACTIONS(5047), + [anon_sym_AMP_GT] = ACTIONS(5045), + [anon_sym_AMP_GT_GT] = ACTIONS(5047), + [anon_sym_LT_AMP] = ACTIONS(5047), + [anon_sym_GT_AMP] = ACTIONS(5047), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(5049), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5051), + [anon_sym_AMP] = ACTIONS(5033), + }, + [1941] = { + [sym_file_redirect] = STATE(2170), + [sym_heredoc_redirect] = STATE(2170), + [sym_heredoc_body] = STATE(2169), + [sym_herestring_redirect] = STATE(2170), + [aux_sym_redirected_statement_repeat1] = STATE(2170), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5033), + [anon_sym_esac] = ACTIONS(5068), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_SEMI_SEMI] = ACTIONS(5076), + [anon_sym_PIPE_AMP] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE_PIPE] = ACTIONS(5043), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(5049), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5051), + [anon_sym_AMP] = ACTIONS(5033), + }, + [1942] = { + [sym__terminated_statement] = STATE(2178), + [sym_redirected_statement] = STATE(2183), + [sym_for_statement] = STATE(2183), + [sym_c_style_for_statement] = STATE(2183), + [sym_while_statement] = STATE(2183), + [sym_if_statement] = STATE(2183), + [sym_case_statement] = STATE(2183), + [sym_function_definition] = STATE(2183), + [sym_compound_statement] = STATE(2183), + [sym_subshell] = STATE(2183), + [sym_pipeline] = STATE(2183), + [sym_list] = STATE(2183), + [sym_negated_command] = STATE(2183), + [sym_test_command] = STATE(2183), + [sym_declaration_command] = STATE(2183), + [sym_unset_command] = STATE(2183), + [sym_command] = STATE(2183), + [sym_command_name] = STATE(1930), + [sym_variable_assignment] = STATE(2184), + [sym_subscript] = STATE(1932), + [sym_file_redirect] = STATE(1935), + [sym_concatenation] = STATE(1933), + [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), + [aux_sym__statements_repeat1] = STATE(2178), + [aux_sym_command_repeat1] = STATE(1935), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4418), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_esac] = ACTIONS(5068), + [anon_sym_SEMI_SEMI] = ACTIONS(5078), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(4426), + [anon_sym_typeset] = ACTIONS(4426), + [anon_sym_export] = ACTIONS(4426), + [anon_sym_readonly] = ACTIONS(4426), + [anon_sym_local] = ACTIONS(4426), + [anon_sym_unset] = ACTIONS(4428), + [anon_sym_unsetenv] = ACTIONS(4428), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(4430), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_DOLLAR] = ACTIONS(4434), + [sym_raw_string] = ACTIONS(4436), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4440), + [anon_sym_BQUOTE] = ACTIONS(4442), + [anon_sym_LT_LPAREN] = ACTIONS(4444), + [anon_sym_GT_LPAREN] = ACTIONS(4444), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4446), + }, + [1943] = { + [sym__terminated_statement] = STATE(2185), + [sym_redirected_statement] = STATE(2183), + [sym_for_statement] = STATE(2183), + [sym_c_style_for_statement] = STATE(2183), + [sym_while_statement] = STATE(2183), + [sym_if_statement] = STATE(2183), + [sym_case_statement] = STATE(2183), + [sym_function_definition] = STATE(2183), + [sym_compound_statement] = STATE(2183), + [sym_subshell] = STATE(2183), + [sym_pipeline] = STATE(2183), + [sym_list] = STATE(2183), + [sym_negated_command] = STATE(2183), + [sym_test_command] = STATE(2183), + [sym_declaration_command] = STATE(2183), + [sym_unset_command] = STATE(2183), + [sym_command] = STATE(2183), + [sym_command_name] = STATE(1930), + [sym_variable_assignment] = STATE(2184), + [sym_subscript] = STATE(1932), + [sym_file_redirect] = STATE(1935), + [sym_concatenation] = STATE(1933), + [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), + [aux_sym__statements_repeat1] = STATE(2185), + [aux_sym_command_repeat1] = STATE(1935), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4418), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_esac] = ACTIONS(5068), + [anon_sym_SEMI_SEMI] = ACTIONS(5078), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(4426), + [anon_sym_typeset] = ACTIONS(4426), + [anon_sym_export] = ACTIONS(4426), + [anon_sym_readonly] = ACTIONS(4426), + [anon_sym_local] = ACTIONS(4426), + [anon_sym_unset] = ACTIONS(4428), + [anon_sym_unsetenv] = ACTIONS(4428), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(4430), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_DOLLAR] = ACTIONS(4434), + [sym_raw_string] = ACTIONS(4436), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4440), + [anon_sym_BQUOTE] = ACTIONS(4442), + [anon_sym_LT_LPAREN] = ACTIONS(4444), + [anon_sym_GT_LPAREN] = ACTIONS(4444), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4446), + }, + [1944] = { + [sym__simple_heredoc_body] = ACTIONS(5080), + [sym__heredoc_body_beginning] = ACTIONS(5080), + [sym_file_descriptor] = ACTIONS(5080), + [ts_builtin_sym_end] = ACTIONS(5080), + [anon_sym_SEMI] = ACTIONS(5082), + [anon_sym_esac] = ACTIONS(5080), + [anon_sym_PIPE] = ACTIONS(5082), + [anon_sym_RPAREN] = ACTIONS(5080), + [anon_sym_SEMI_SEMI] = ACTIONS(5080), + [anon_sym_PIPE_AMP] = ACTIONS(5080), + [anon_sym_AMP_AMP] = ACTIONS(5080), + [anon_sym_PIPE_PIPE] = ACTIONS(5080), + [anon_sym_LT] = ACTIONS(5082), + [anon_sym_GT] = ACTIONS(5082), + [anon_sym_GT_GT] = ACTIONS(5080), + [anon_sym_AMP_GT] = ACTIONS(5082), + [anon_sym_AMP_GT_GT] = ACTIONS(5080), + [anon_sym_LT_AMP] = ACTIONS(5080), + [anon_sym_GT_AMP] = ACTIONS(5080), + [anon_sym_LT_LT] = ACTIONS(5082), + [anon_sym_LT_LT_DASH] = ACTIONS(5080), + [anon_sym_LT_LT_LT] = ACTIONS(5080), + [anon_sym_BQUOTE] = ACTIONS(5080), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5080), + [anon_sym_AMP] = ACTIONS(5082), + }, + [1945] = { + [aux_sym_case_item_repeat1] = STATE(2187), + [aux_sym_concatenation_repeat1] = STATE(1599), + [sym__concat] = ACTIONS(1191), + [anon_sym_PIPE] = ACTIONS(3617), + [anon_sym_RPAREN] = ACTIONS(5084), + [sym_comment] = ACTIONS(57), + }, + [1946] = { + [aux_sym_case_item_repeat1] = STATE(2189), + [aux_sym_concatenation_repeat1] = STATE(1599), + [sym__concat] = ACTIONS(1191), + [anon_sym_PIPE] = ACTIONS(3617), + [anon_sym_RPAREN] = ACTIONS(5086), + [sym_comment] = ACTIONS(57), + }, + [1947] = { + [aux_sym_case_item_repeat1] = STATE(2189), + [anon_sym_PIPE] = ACTIONS(3617), + [anon_sym_RPAREN] = ACTIONS(5086), + [sym_comment] = ACTIONS(57), + }, + [1948] = { + [anon_sym_esac] = ACTIONS(5088), + [sym_comment] = ACTIONS(57), + }, + [1949] = { + [sym__simple_heredoc_body] = ACTIONS(5090), + [sym__heredoc_body_beginning] = ACTIONS(5090), + [sym_file_descriptor] = ACTIONS(5090), + [ts_builtin_sym_end] = ACTIONS(5090), + [anon_sym_SEMI] = ACTIONS(5092), + [anon_sym_esac] = ACTIONS(5090), + [anon_sym_PIPE] = ACTIONS(5092), + [anon_sym_RPAREN] = ACTIONS(5090), + [anon_sym_SEMI_SEMI] = ACTIONS(5090), + [anon_sym_PIPE_AMP] = ACTIONS(5090), + [anon_sym_AMP_AMP] = ACTIONS(5090), + [anon_sym_PIPE_PIPE] = ACTIONS(5090), + [anon_sym_LT] = ACTIONS(5092), + [anon_sym_GT] = ACTIONS(5092), + [anon_sym_GT_GT] = ACTIONS(5090), + [anon_sym_AMP_GT] = ACTIONS(5092), + [anon_sym_AMP_GT_GT] = ACTIONS(5090), + [anon_sym_LT_AMP] = ACTIONS(5090), + [anon_sym_GT_AMP] = ACTIONS(5090), + [anon_sym_LT_LT] = ACTIONS(5092), + [anon_sym_LT_LT_DASH] = ACTIONS(5090), + [anon_sym_LT_LT_LT] = ACTIONS(5090), + [anon_sym_BQUOTE] = ACTIONS(5090), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5090), + [anon_sym_AMP] = ACTIONS(5092), + }, + [1950] = { + [anon_sym_esac] = ACTIONS(5094), + [sym_comment] = ACTIONS(57), + }, + [1951] = { + [sym__concat] = ACTIONS(4687), + [anon_sym_in] = ACTIONS(4687), + [anon_sym_SEMI] = ACTIONS(4689), + [anon_sym_SEMI_SEMI] = ACTIONS(4687), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4687), + [anon_sym_AMP] = ACTIONS(4687), + }, + [1952] = { + [sym__concat] = ACTIONS(4691), + [anon_sym_in] = ACTIONS(4691), + [anon_sym_SEMI] = ACTIONS(4693), + [anon_sym_SEMI_SEMI] = ACTIONS(4691), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4691), + [anon_sym_AMP] = ACTIONS(4691), + }, + [1953] = { + [sym__concat] = ACTIONS(4695), + [anon_sym_in] = ACTIONS(4695), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym_SEMI_SEMI] = ACTIONS(4695), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4695), + [anon_sym_AMP] = ACTIONS(4695), + }, + [1954] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5096), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [1955] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5098), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [1956] = { + [sym__concat] = ACTIONS(4731), + [anon_sym_in] = ACTIONS(4731), + [anon_sym_SEMI] = ACTIONS(4733), + [anon_sym_SEMI_SEMI] = ACTIONS(4731), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4731), + [anon_sym_AMP] = ACTIONS(4731), + }, + [1957] = { + [sym__concat] = ACTIONS(4751), + [anon_sym_in] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4753), + [anon_sym_SEMI_SEMI] = ACTIONS(4751), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4751), + [anon_sym_AMP] = ACTIONS(4751), }, [1958] = { - [sym_concatenation] = STATE(2188), - [sym_string] = STATE(2183), - [sym_simple_expansion] = STATE(2183), - [sym_string_expansion] = STATE(2183), - [sym_expansion] = STATE(2183), - [sym_command_substitution] = STATE(2183), - [sym_process_substitution] = STATE(2183), - [aux_sym_unset_command_repeat1] = STATE(2188), - [anon_sym_SEMI] = ACTIONS(225), - [anon_sym_esac] = ACTIONS(225), - [anon_sym_PIPE] = ACTIONS(225), - [anon_sym_SEMI_SEMI] = ACTIONS(223), - [anon_sym_PIPE_AMP] = ACTIONS(223), - [anon_sym_AMP_AMP] = ACTIONS(223), - [anon_sym_PIPE_PIPE] = ACTIONS(223), - [sym__special_characters] = ACTIONS(5031), - [anon_sym_DQUOTE] = ACTIONS(5033), - [anon_sym_DOLLAR] = ACTIONS(5035), - [sym_raw_string] = ACTIONS(5037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5041), - [anon_sym_BQUOTE] = ACTIONS(5043), - [anon_sym_LT_LPAREN] = ACTIONS(5045), - [anon_sym_GT_LPAREN] = ACTIONS(5045), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5047), - [sym_word] = ACTIONS(5049), - [anon_sym_LF] = ACTIONS(223), - [anon_sym_AMP] = ACTIONS(225), + [sym__concat] = ACTIONS(4755), + [anon_sym_in] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4757), + [anon_sym_SEMI_SEMI] = ACTIONS(4755), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4755), + [anon_sym_AMP] = ACTIONS(4755), }, [1959] = { - [aux_sym_concatenation_repeat1] = STATE(2190), - [sym__simple_heredoc_body] = ACTIONS(263), - [sym__heredoc_body_beginning] = ACTIONS(263), - [sym_file_descriptor] = ACTIONS(263), - [sym__concat] = ACTIONS(5051), - [anon_sym_SEMI] = ACTIONS(267), - [anon_sym_esac] = ACTIONS(267), - [anon_sym_PIPE] = ACTIONS(267), - [anon_sym_SEMI_SEMI] = ACTIONS(263), - [anon_sym_PIPE_AMP] = ACTIONS(263), - [anon_sym_AMP_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(263), - [anon_sym_EQ_TILDE] = ACTIONS(267), - [anon_sym_EQ_EQ] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_GT_GT] = ACTIONS(263), - [anon_sym_AMP_GT] = ACTIONS(267), - [anon_sym_AMP_GT_GT] = ACTIONS(263), - [anon_sym_LT_AMP] = ACTIONS(263), - [anon_sym_GT_AMP] = ACTIONS(263), - [anon_sym_LT_LT] = ACTIONS(267), - [anon_sym_LT_LT_DASH] = ACTIONS(263), - [anon_sym_LT_LT_LT] = ACTIONS(263), - [sym__special_characters] = ACTIONS(263), - [anon_sym_DQUOTE] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(267), - [sym_raw_string] = ACTIONS(263), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(263), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(263), - [anon_sym_BQUOTE] = ACTIONS(263), - [anon_sym_LT_LPAREN] = ACTIONS(263), - [anon_sym_GT_LPAREN] = ACTIONS(263), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(267), - [anon_sym_LF] = ACTIONS(263), - [anon_sym_AMP] = ACTIONS(267), + [sym__concat] = ACTIONS(4687), + [anon_sym_AMP_AMP] = ACTIONS(4687), + [anon_sym_PIPE_PIPE] = ACTIONS(4687), + [anon_sym_RBRACK] = ACTIONS(4687), + [anon_sym_EQ_TILDE] = ACTIONS(4687), + [anon_sym_EQ_EQ] = ACTIONS(4687), + [anon_sym_EQ] = ACTIONS(4689), + [anon_sym_PLUS_EQ] = ACTIONS(4687), + [anon_sym_LT] = ACTIONS(4689), + [anon_sym_GT] = ACTIONS(4689), + [anon_sym_BANG_EQ] = ACTIONS(4687), + [anon_sym_PLUS] = ACTIONS(4689), + [anon_sym_DASH] = ACTIONS(4689), + [anon_sym_DASH_EQ] = ACTIONS(4687), + [anon_sym_LT_EQ] = ACTIONS(4687), + [anon_sym_GT_EQ] = ACTIONS(4687), + [anon_sym_PLUS_PLUS] = ACTIONS(4687), + [anon_sym_DASH_DASH] = ACTIONS(4687), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4687), }, [1960] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(2193), - [anon_sym_DQUOTE] = ACTIONS(5053), - [anon_sym_DOLLAR] = ACTIONS(5055), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym__concat] = ACTIONS(4691), + [anon_sym_AMP_AMP] = ACTIONS(4691), + [anon_sym_PIPE_PIPE] = ACTIONS(4691), + [anon_sym_RBRACK] = ACTIONS(4691), + [anon_sym_EQ_TILDE] = ACTIONS(4691), + [anon_sym_EQ_EQ] = ACTIONS(4691), + [anon_sym_EQ] = ACTIONS(4693), + [anon_sym_PLUS_EQ] = ACTIONS(4691), + [anon_sym_LT] = ACTIONS(4693), + [anon_sym_GT] = ACTIONS(4693), + [anon_sym_BANG_EQ] = ACTIONS(4691), + [anon_sym_PLUS] = ACTIONS(4693), + [anon_sym_DASH] = ACTIONS(4693), + [anon_sym_DASH_EQ] = ACTIONS(4691), + [anon_sym_LT_EQ] = ACTIONS(4691), + [anon_sym_GT_EQ] = ACTIONS(4691), + [anon_sym_PLUS_PLUS] = ACTIONS(4691), + [anon_sym_DASH_DASH] = ACTIONS(4691), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4691), }, [1961] = { - [sym_string] = STATE(2195), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_DQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(5057), - [sym_raw_string] = ACTIONS(5059), - [anon_sym_POUND] = ACTIONS(5057), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5063), - [anon_sym_AT] = ACTIONS(5063), - [anon_sym_QMARK] = ACTIONS(5063), - [anon_sym_0] = ACTIONS(5061), - [anon_sym__] = ACTIONS(5061), + [sym__concat] = ACTIONS(4695), + [anon_sym_AMP_AMP] = ACTIONS(4695), + [anon_sym_PIPE_PIPE] = ACTIONS(4695), + [anon_sym_RBRACK] = ACTIONS(4695), + [anon_sym_EQ_TILDE] = ACTIONS(4695), + [anon_sym_EQ_EQ] = ACTIONS(4695), + [anon_sym_EQ] = ACTIONS(4697), + [anon_sym_PLUS_EQ] = ACTIONS(4695), + [anon_sym_LT] = ACTIONS(4697), + [anon_sym_GT] = ACTIONS(4697), + [anon_sym_BANG_EQ] = ACTIONS(4695), + [anon_sym_PLUS] = ACTIONS(4697), + [anon_sym_DASH] = ACTIONS(4697), + [anon_sym_DASH_EQ] = ACTIONS(4695), + [anon_sym_LT_EQ] = ACTIONS(4695), + [anon_sym_GT_EQ] = ACTIONS(4695), + [anon_sym_PLUS_PLUS] = ACTIONS(4695), + [anon_sym_DASH_DASH] = ACTIONS(4695), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4695), }, [1962] = { - [aux_sym_concatenation_repeat1] = STATE(2190), - [sym__simple_heredoc_body] = ACTIONS(291), - [sym__heredoc_body_beginning] = ACTIONS(291), - [sym_file_descriptor] = ACTIONS(291), - [sym__concat] = ACTIONS(5051), - [anon_sym_SEMI] = ACTIONS(293), - [anon_sym_esac] = ACTIONS(293), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_SEMI_SEMI] = ACTIONS(291), - [anon_sym_PIPE_AMP] = ACTIONS(291), - [anon_sym_AMP_AMP] = ACTIONS(291), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_EQ_TILDE] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_GT_GT] = ACTIONS(291), - [anon_sym_AMP_GT] = ACTIONS(293), - [anon_sym_AMP_GT_GT] = ACTIONS(291), - [anon_sym_LT_AMP] = ACTIONS(291), - [anon_sym_GT_AMP] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_LT_LT_DASH] = ACTIONS(291), - [anon_sym_LT_LT_LT] = ACTIONS(291), - [sym__special_characters] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(291), - [anon_sym_DOLLAR] = ACTIONS(293), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(291), - [anon_sym_LT_LPAREN] = ACTIONS(291), - [anon_sym_GT_LPAREN] = ACTIONS(291), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(293), - [anon_sym_LF] = ACTIONS(291), - [anon_sym_AMP] = ACTIONS(293), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5100), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1963] = { - [sym_subscript] = STATE(2200), - [sym_variable_name] = ACTIONS(5065), - [anon_sym_BANG] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_DOLLAR] = ACTIONS(5069), - [anon_sym_POUND] = ACTIONS(5067), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5073), - [anon_sym_AT] = ACTIONS(5073), - [anon_sym_QMARK] = ACTIONS(5073), - [anon_sym_0] = ACTIONS(5071), - [anon_sym__] = ACTIONS(5071), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5102), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1964] = { - [sym__terminated_statement] = STATE(2203), - [sym_for_statement] = STATE(2201), - [sym_c_style_for_statement] = STATE(2201), - [sym_while_statement] = STATE(2201), - [sym_if_statement] = STATE(2201), - [sym_case_statement] = STATE(2201), - [sym_function_definition] = STATE(2201), - [sym_subshell] = STATE(2201), - [sym_pipeline] = STATE(2201), - [sym_list] = STATE(2201), - [sym_negated_command] = STATE(2201), - [sym_test_command] = STATE(2201), - [sym_declaration_command] = STATE(2201), - [sym_unset_command] = STATE(2201), - [sym_command] = STATE(2201), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(2202), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(2203), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym__concat] = ACTIONS(4731), + [anon_sym_AMP_AMP] = ACTIONS(4731), + [anon_sym_PIPE_PIPE] = ACTIONS(4731), + [anon_sym_RBRACK] = ACTIONS(4731), + [anon_sym_EQ_TILDE] = ACTIONS(4731), + [anon_sym_EQ_EQ] = ACTIONS(4731), + [anon_sym_EQ] = ACTIONS(4733), + [anon_sym_PLUS_EQ] = ACTIONS(4731), + [anon_sym_LT] = ACTIONS(4733), + [anon_sym_GT] = ACTIONS(4733), + [anon_sym_BANG_EQ] = ACTIONS(4731), + [anon_sym_PLUS] = ACTIONS(4733), + [anon_sym_DASH] = ACTIONS(4733), + [anon_sym_DASH_EQ] = ACTIONS(4731), + [anon_sym_LT_EQ] = ACTIONS(4731), + [anon_sym_GT_EQ] = ACTIONS(4731), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4731), }, [1965] = { - [sym__terminated_statement] = STATE(2206), - [sym_for_statement] = STATE(2204), - [sym_c_style_for_statement] = STATE(2204), - [sym_while_statement] = STATE(2204), - [sym_if_statement] = STATE(2204), - [sym_case_statement] = STATE(2204), - [sym_function_definition] = STATE(2204), - [sym_subshell] = STATE(2204), - [sym_pipeline] = STATE(2204), - [sym_list] = STATE(2204), - [sym_negated_command] = STATE(2204), - [sym_test_command] = STATE(2204), - [sym_declaration_command] = STATE(2204), - [sym_unset_command] = STATE(2204), - [sym_command] = STATE(2204), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(2205), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(2206), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym__concat] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [anon_sym_RBRACK] = ACTIONS(4751), + [anon_sym_EQ_TILDE] = ACTIONS(4751), + [anon_sym_EQ_EQ] = ACTIONS(4751), + [anon_sym_EQ] = ACTIONS(4753), + [anon_sym_PLUS_EQ] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_BANG_EQ] = ACTIONS(4751), + [anon_sym_PLUS] = ACTIONS(4753), + [anon_sym_DASH] = ACTIONS(4753), + [anon_sym_DASH_EQ] = ACTIONS(4751), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_PLUS_PLUS] = ACTIONS(4751), + [anon_sym_DASH_DASH] = ACTIONS(4751), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4751), }, [1966] = { - [sym__terminated_statement] = STATE(2209), - [sym_for_statement] = STATE(2207), - [sym_c_style_for_statement] = STATE(2207), - [sym_while_statement] = STATE(2207), - [sym_if_statement] = STATE(2207), - [sym_case_statement] = STATE(2207), - [sym_function_definition] = STATE(2207), - [sym_subshell] = STATE(2207), - [sym_pipeline] = STATE(2207), - [sym_list] = STATE(2207), - [sym_negated_command] = STATE(2207), - [sym_test_command] = STATE(2207), - [sym_declaration_command] = STATE(2207), - [sym_unset_command] = STATE(2207), - [sym_command] = STATE(2207), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(2208), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(2209), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym__concat] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4755), + [anon_sym_PIPE_PIPE] = ACTIONS(4755), + [anon_sym_RBRACK] = ACTIONS(4755), + [anon_sym_EQ_TILDE] = ACTIONS(4755), + [anon_sym_EQ_EQ] = ACTIONS(4755), + [anon_sym_EQ] = ACTIONS(4757), + [anon_sym_PLUS_EQ] = ACTIONS(4755), + [anon_sym_LT] = ACTIONS(4757), + [anon_sym_GT] = ACTIONS(4757), + [anon_sym_BANG_EQ] = ACTIONS(4755), + [anon_sym_PLUS] = ACTIONS(4757), + [anon_sym_DASH] = ACTIONS(4757), + [anon_sym_DASH_EQ] = ACTIONS(4755), + [anon_sym_LT_EQ] = ACTIONS(4755), + [anon_sym_GT_EQ] = ACTIONS(4755), + [anon_sym_PLUS_PLUS] = ACTIONS(4755), + [anon_sym_DASH_DASH] = ACTIONS(4755), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4755), }, [1967] = { - [aux_sym_concatenation_repeat1] = STATE(2190), - [sym__simple_heredoc_body] = ACTIONS(291), - [sym__heredoc_body_beginning] = ACTIONS(291), - [sym_file_descriptor] = ACTIONS(291), - [sym__concat] = ACTIONS(5051), - [anon_sym_SEMI] = ACTIONS(293), - [anon_sym_esac] = ACTIONS(293), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_SEMI_SEMI] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_PIPE_AMP] = ACTIONS(291), - [anon_sym_AMP_AMP] = ACTIONS(291), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_EQ_TILDE] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_GT_GT] = ACTIONS(291), - [anon_sym_AMP_GT] = ACTIONS(293), - [anon_sym_AMP_GT_GT] = ACTIONS(291), - [anon_sym_LT_AMP] = ACTIONS(291), - [anon_sym_GT_AMP] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_LT_LT_DASH] = ACTIONS(291), - [anon_sym_LT_LT_LT] = ACTIONS(291), - [sym__special_characters] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(291), - [anon_sym_DOLLAR] = ACTIONS(293), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(291), - [anon_sym_LT_LPAREN] = ACTIONS(291), - [anon_sym_GT_LPAREN] = ACTIONS(291), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(293), - [anon_sym_LF] = ACTIONS(291), - [anon_sym_AMP] = ACTIONS(293), + [sym__simple_heredoc_body] = ACTIONS(4687), + [sym__heredoc_body_beginning] = ACTIONS(4687), + [sym_file_descriptor] = ACTIONS(4687), + [sym__concat] = ACTIONS(4687), + [sym_variable_name] = ACTIONS(4687), + [ts_builtin_sym_end] = ACTIONS(4687), + [anon_sym_SEMI] = ACTIONS(4689), + [anon_sym_PIPE] = ACTIONS(4689), + [anon_sym_RPAREN] = ACTIONS(4687), + [anon_sym_SEMI_SEMI] = ACTIONS(4687), + [anon_sym_PIPE_AMP] = ACTIONS(4687), + [anon_sym_AMP_AMP] = ACTIONS(4687), + [anon_sym_PIPE_PIPE] = ACTIONS(4687), + [anon_sym_LT] = ACTIONS(4689), + [anon_sym_GT] = ACTIONS(4689), + [anon_sym_GT_GT] = ACTIONS(4687), + [anon_sym_AMP_GT] = ACTIONS(4689), + [anon_sym_AMP_GT_GT] = ACTIONS(4687), + [anon_sym_LT_AMP] = ACTIONS(4687), + [anon_sym_GT_AMP] = ACTIONS(4687), + [anon_sym_LT_LT] = ACTIONS(4689), + [anon_sym_LT_LT_DASH] = ACTIONS(4687), + [anon_sym_LT_LT_LT] = ACTIONS(4687), + [sym__special_characters] = ACTIONS(4687), + [anon_sym_DQUOTE] = ACTIONS(4687), + [anon_sym_DOLLAR] = ACTIONS(4689), + [sym_raw_string] = ACTIONS(4687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4687), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4687), + [anon_sym_BQUOTE] = ACTIONS(4687), + [anon_sym_LT_LPAREN] = ACTIONS(4687), + [anon_sym_GT_LPAREN] = ACTIONS(4687), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4689), + [sym_word] = ACTIONS(4689), + [anon_sym_LF] = ACTIONS(4687), + [anon_sym_AMP] = ACTIONS(4689), }, [1968] = { - [anon_sym_SEMI] = ACTIONS(5077), - [anon_sym_esac] = ACTIONS(5079), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_SEMI_SEMI] = ACTIONS(5083), - [anon_sym_PIPE_AMP] = ACTIONS(5085), - [anon_sym_AMP_AMP] = ACTIONS(5087), - [anon_sym_PIPE_PIPE] = ACTIONS(5087), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5089), - [anon_sym_AMP] = ACTIONS(5077), + [sym__simple_heredoc_body] = ACTIONS(4691), + [sym__heredoc_body_beginning] = ACTIONS(4691), + [sym_file_descriptor] = ACTIONS(4691), + [sym__concat] = ACTIONS(4691), + [sym_variable_name] = ACTIONS(4691), + [ts_builtin_sym_end] = ACTIONS(4691), + [anon_sym_SEMI] = ACTIONS(4693), + [anon_sym_PIPE] = ACTIONS(4693), + [anon_sym_RPAREN] = ACTIONS(4691), + [anon_sym_SEMI_SEMI] = ACTIONS(4691), + [anon_sym_PIPE_AMP] = ACTIONS(4691), + [anon_sym_AMP_AMP] = ACTIONS(4691), + [anon_sym_PIPE_PIPE] = ACTIONS(4691), + [anon_sym_LT] = ACTIONS(4693), + [anon_sym_GT] = ACTIONS(4693), + [anon_sym_GT_GT] = ACTIONS(4691), + [anon_sym_AMP_GT] = ACTIONS(4693), + [anon_sym_AMP_GT_GT] = ACTIONS(4691), + [anon_sym_LT_AMP] = ACTIONS(4691), + [anon_sym_GT_AMP] = ACTIONS(4691), + [anon_sym_LT_LT] = ACTIONS(4693), + [anon_sym_LT_LT_DASH] = ACTIONS(4691), + [anon_sym_LT_LT_LT] = ACTIONS(4691), + [sym__special_characters] = ACTIONS(4691), + [anon_sym_DQUOTE] = ACTIONS(4691), + [anon_sym_DOLLAR] = ACTIONS(4693), + [sym_raw_string] = ACTIONS(4691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4691), + [anon_sym_BQUOTE] = ACTIONS(4691), + [anon_sym_LT_LPAREN] = ACTIONS(4691), + [anon_sym_GT_LPAREN] = ACTIONS(4691), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4693), + [sym_word] = ACTIONS(4693), + [anon_sym_LF] = ACTIONS(4691), + [anon_sym_AMP] = ACTIONS(4693), }, [1969] = { - [sym_file_redirect] = STATE(2221), - [sym_heredoc_redirect] = STATE(2221), - [sym_heredoc_body] = STATE(193), - [sym_herestring_redirect] = STATE(2221), - [sym_concatenation] = STATE(2222), - [sym_string] = STATE(2220), - [sym_simple_expansion] = STATE(2220), - [sym_string_expansion] = STATE(2220), - [sym_expansion] = STATE(2220), - [sym_command_substitution] = STATE(2220), - [sym_process_substitution] = STATE(2220), - [aux_sym_while_statement_repeat1] = STATE(2221), - [aux_sym_command_repeat2] = STATE(2222), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(347), - [anon_sym_esac] = ACTIONS(347), - [anon_sym_PIPE] = ACTIONS(347), - [anon_sym_SEMI_SEMI] = ACTIONS(345), - [anon_sym_PIPE_AMP] = ACTIONS(345), - [anon_sym_AMP_AMP] = ACTIONS(345), - [anon_sym_PIPE_PIPE] = ACTIONS(345), - [anon_sym_EQ_TILDE] = ACTIONS(5093), - [anon_sym_EQ_EQ] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5095), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_GT_GT] = ACTIONS(5097), - [anon_sym_AMP_GT] = ACTIONS(5095), - [anon_sym_AMP_GT_GT] = ACTIONS(5097), - [anon_sym_LT_AMP] = ACTIONS(5097), - [anon_sym_GT_AMP] = ACTIONS(5097), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(5099), - [sym__special_characters] = ACTIONS(5101), - [anon_sym_DQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [sym_raw_string] = ACTIONS(5103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), - [anon_sym_BQUOTE] = ACTIONS(4479), - [anon_sym_LT_LPAREN] = ACTIONS(4481), - [anon_sym_GT_LPAREN] = ACTIONS(4481), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5105), - [anon_sym_LF] = ACTIONS(345), - [anon_sym_AMP] = ACTIONS(347), + [sym__simple_heredoc_body] = ACTIONS(4695), + [sym__heredoc_body_beginning] = ACTIONS(4695), + [sym_file_descriptor] = ACTIONS(4695), + [sym__concat] = ACTIONS(4695), + [sym_variable_name] = ACTIONS(4695), + [ts_builtin_sym_end] = ACTIONS(4695), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym_PIPE] = ACTIONS(4697), + [anon_sym_RPAREN] = ACTIONS(4695), + [anon_sym_SEMI_SEMI] = ACTIONS(4695), + [anon_sym_PIPE_AMP] = ACTIONS(4695), + [anon_sym_AMP_AMP] = ACTIONS(4695), + [anon_sym_PIPE_PIPE] = ACTIONS(4695), + [anon_sym_LT] = ACTIONS(4697), + [anon_sym_GT] = ACTIONS(4697), + [anon_sym_GT_GT] = ACTIONS(4695), + [anon_sym_AMP_GT] = ACTIONS(4697), + [anon_sym_AMP_GT_GT] = ACTIONS(4695), + [anon_sym_LT_AMP] = ACTIONS(4695), + [anon_sym_GT_AMP] = ACTIONS(4695), + [anon_sym_LT_LT] = ACTIONS(4697), + [anon_sym_LT_LT_DASH] = ACTIONS(4695), + [anon_sym_LT_LT_LT] = ACTIONS(4695), + [sym__special_characters] = ACTIONS(4695), + [anon_sym_DQUOTE] = ACTIONS(4695), + [anon_sym_DOLLAR] = ACTIONS(4697), + [sym_raw_string] = ACTIONS(4695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4695), + [anon_sym_BQUOTE] = ACTIONS(4695), + [anon_sym_LT_LPAREN] = ACTIONS(4695), + [anon_sym_GT_LPAREN] = ACTIONS(4695), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4697), + [sym_word] = ACTIONS(4697), + [anon_sym_LF] = ACTIONS(4695), + [anon_sym_AMP] = ACTIONS(4697), }, [1970] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(5077), - [anon_sym_esac] = ACTIONS(5001), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_SEMI_SEMI] = ACTIONS(5083), - [anon_sym_PIPE_AMP] = ACTIONS(5085), - [anon_sym_AMP_AMP] = ACTIONS(5087), - [anon_sym_PIPE_PIPE] = ACTIONS(5087), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(5089), - [anon_sym_AMP] = ACTIONS(5077), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5104), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1971] = { - [anon_sym_EQ] = ACTIONS(4999), - [anon_sym_PLUS_EQ] = ACTIONS(4999), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5106), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1972] = { - [sym__simple_heredoc_body] = ACTIONS(291), - [sym__heredoc_body_beginning] = ACTIONS(291), - [sym_file_descriptor] = ACTIONS(291), - [anon_sym_SEMI] = ACTIONS(293), - [anon_sym_esac] = ACTIONS(293), - [anon_sym_PIPE] = ACTIONS(293), - [anon_sym_SEMI_SEMI] = ACTIONS(291), - [anon_sym_PIPE_AMP] = ACTIONS(291), - [anon_sym_AMP_AMP] = ACTIONS(291), - [anon_sym_PIPE_PIPE] = ACTIONS(291), - [anon_sym_EQ_TILDE] = ACTIONS(293), - [anon_sym_EQ_EQ] = ACTIONS(293), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_GT_GT] = ACTIONS(291), - [anon_sym_AMP_GT] = ACTIONS(293), - [anon_sym_AMP_GT_GT] = ACTIONS(291), - [anon_sym_LT_AMP] = ACTIONS(291), - [anon_sym_GT_AMP] = ACTIONS(291), - [anon_sym_LT_LT] = ACTIONS(293), - [anon_sym_LT_LT_DASH] = ACTIONS(291), - [anon_sym_LT_LT_LT] = ACTIONS(291), - [sym__special_characters] = ACTIONS(291), - [anon_sym_DQUOTE] = ACTIONS(291), - [anon_sym_DOLLAR] = ACTIONS(293), - [sym_raw_string] = ACTIONS(291), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(291), - [anon_sym_BQUOTE] = ACTIONS(291), - [anon_sym_LT_LPAREN] = ACTIONS(291), - [anon_sym_GT_LPAREN] = ACTIONS(291), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(293), - [anon_sym_LF] = ACTIONS(291), - [anon_sym_AMP] = ACTIONS(293), + [sym__simple_heredoc_body] = ACTIONS(4731), + [sym__heredoc_body_beginning] = ACTIONS(4731), + [sym_file_descriptor] = ACTIONS(4731), + [sym__concat] = ACTIONS(4731), + [sym_variable_name] = ACTIONS(4731), + [ts_builtin_sym_end] = ACTIONS(4731), + [anon_sym_SEMI] = ACTIONS(4733), + [anon_sym_PIPE] = ACTIONS(4733), + [anon_sym_RPAREN] = ACTIONS(4731), + [anon_sym_SEMI_SEMI] = ACTIONS(4731), + [anon_sym_PIPE_AMP] = ACTIONS(4731), + [anon_sym_AMP_AMP] = ACTIONS(4731), + [anon_sym_PIPE_PIPE] = ACTIONS(4731), + [anon_sym_LT] = ACTIONS(4733), + [anon_sym_GT] = ACTIONS(4733), + [anon_sym_GT_GT] = ACTIONS(4731), + [anon_sym_AMP_GT] = ACTIONS(4733), + [anon_sym_AMP_GT_GT] = ACTIONS(4731), + [anon_sym_LT_AMP] = ACTIONS(4731), + [anon_sym_GT_AMP] = ACTIONS(4731), + [anon_sym_LT_LT] = ACTIONS(4733), + [anon_sym_LT_LT_DASH] = ACTIONS(4731), + [anon_sym_LT_LT_LT] = ACTIONS(4731), + [sym__special_characters] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4731), + [anon_sym_DOLLAR] = ACTIONS(4733), + [sym_raw_string] = ACTIONS(4731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4731), + [anon_sym_BQUOTE] = ACTIONS(4731), + [anon_sym_LT_LPAREN] = ACTIONS(4731), + [anon_sym_GT_LPAREN] = ACTIONS(4731), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4733), + [sym_word] = ACTIONS(4733), + [anon_sym_LF] = ACTIONS(4731), + [anon_sym_AMP] = ACTIONS(4733), }, [1973] = { - [sym__terminated_statement] = STATE(2226), - [sym_for_statement] = STATE(2224), - [sym_c_style_for_statement] = STATE(2224), - [sym_while_statement] = STATE(2224), - [sym_if_statement] = STATE(2224), - [sym_case_statement] = STATE(2224), - [sym_function_definition] = STATE(2224), - [sym_subshell] = STATE(2224), - [sym_pipeline] = STATE(2224), - [sym_list] = STATE(2224), - [sym_negated_command] = STATE(2224), - [sym_test_command] = STATE(2224), - [sym_declaration_command] = STATE(2224), - [sym_unset_command] = STATE(2224), - [sym_command] = STATE(2224), - [sym_command_name] = STATE(1969), - [sym_variable_assignment] = STATE(2225), - [sym_subscript] = STATE(1971), - [sym_file_redirect] = STATE(1974), - [sym_concatenation] = STATE(1972), - [sym_string] = STATE(1962), - [sym_simple_expansion] = STATE(1962), - [sym_string_expansion] = STATE(1962), - [sym_expansion] = STATE(1962), - [sym_command_substitution] = STATE(1962), - [sym_process_substitution] = STATE(1962), - [aux_sym__statements_repeat1] = STATE(2226), - [aux_sym_command_repeat1] = STATE(1974), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4445), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(4447), - [anon_sym_while] = ACTIONS(4449), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_esac] = ACTIONS(5001), - [anon_sym_SEMI_SEMI] = ACTIONS(5107), - [anon_sym_function] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4461), - [anon_sym_declare] = ACTIONS(4463), - [anon_sym_typeset] = ACTIONS(4463), - [anon_sym_export] = ACTIONS(4463), - [anon_sym_readonly] = ACTIONS(4463), - [anon_sym_local] = ACTIONS(4463), - [anon_sym_unset] = ACTIONS(4465), - [anon_sym_unsetenv] = ACTIONS(4465), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(4467), - [anon_sym_DQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [sym_raw_string] = ACTIONS(4473), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), - [anon_sym_BQUOTE] = ACTIONS(4479), - [anon_sym_LT_LPAREN] = ACTIONS(4481), - [anon_sym_GT_LPAREN] = ACTIONS(4481), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4483), + [sym__simple_heredoc_body] = ACTIONS(4751), + [sym__heredoc_body_beginning] = ACTIONS(4751), + [sym_file_descriptor] = ACTIONS(4751), + [sym__concat] = ACTIONS(4751), + [sym_variable_name] = ACTIONS(4751), + [ts_builtin_sym_end] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4753), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_SEMI_SEMI] = ACTIONS(4751), + [anon_sym_PIPE_AMP] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_GT_GT] = ACTIONS(4751), + [anon_sym_AMP_GT] = ACTIONS(4753), + [anon_sym_AMP_GT_GT] = ACTIONS(4751), + [anon_sym_LT_AMP] = ACTIONS(4751), + [anon_sym_GT_AMP] = ACTIONS(4751), + [anon_sym_LT_LT] = ACTIONS(4753), + [anon_sym_LT_LT_DASH] = ACTIONS(4751), + [anon_sym_LT_LT_LT] = ACTIONS(4751), + [sym__special_characters] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4753), + [sym_raw_string] = ACTIONS(4751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4751), + [anon_sym_BQUOTE] = ACTIONS(4751), + [anon_sym_LT_LPAREN] = ACTIONS(4751), + [anon_sym_GT_LPAREN] = ACTIONS(4751), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4753), + [sym_word] = ACTIONS(4753), + [anon_sym_LF] = ACTIONS(4751), + [anon_sym_AMP] = ACTIONS(4753), }, [1974] = { - [sym_command_name] = STATE(2227), - [sym_variable_assignment] = STATE(200), - [sym_subscript] = STATE(99), - [sym_file_redirect] = STATE(200), - [sym_concatenation] = STATE(1972), - [sym_string] = STATE(1962), - [sym_simple_expansion] = STATE(1962), - [sym_string_expansion] = STATE(1962), - [sym_expansion] = STATE(1962), - [sym_command_substitution] = STATE(1962), - [sym_process_substitution] = STATE(1962), - [aux_sym_command_repeat1] = STATE(200), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(161), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(5109), - [anon_sym_DQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [sym_raw_string] = ACTIONS(4473), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), - [anon_sym_BQUOTE] = ACTIONS(4479), - [anon_sym_LT_LPAREN] = ACTIONS(4481), - [anon_sym_GT_LPAREN] = ACTIONS(4481), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4473), + [sym__simple_heredoc_body] = ACTIONS(4755), + [sym__heredoc_body_beginning] = ACTIONS(4755), + [sym_file_descriptor] = ACTIONS(4755), + [sym__concat] = ACTIONS(4755), + [sym_variable_name] = ACTIONS(4755), + [ts_builtin_sym_end] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4757), + [anon_sym_PIPE] = ACTIONS(4757), + [anon_sym_RPAREN] = ACTIONS(4755), + [anon_sym_SEMI_SEMI] = ACTIONS(4755), + [anon_sym_PIPE_AMP] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4755), + [anon_sym_PIPE_PIPE] = ACTIONS(4755), + [anon_sym_LT] = ACTIONS(4757), + [anon_sym_GT] = ACTIONS(4757), + [anon_sym_GT_GT] = ACTIONS(4755), + [anon_sym_AMP_GT] = ACTIONS(4757), + [anon_sym_AMP_GT_GT] = ACTIONS(4755), + [anon_sym_LT_AMP] = ACTIONS(4755), + [anon_sym_GT_AMP] = ACTIONS(4755), + [anon_sym_LT_LT] = ACTIONS(4757), + [anon_sym_LT_LT_DASH] = ACTIONS(4755), + [anon_sym_LT_LT_LT] = ACTIONS(4755), + [sym__special_characters] = ACTIONS(4755), + [anon_sym_DQUOTE] = ACTIONS(4755), + [anon_sym_DOLLAR] = ACTIONS(4757), + [sym_raw_string] = ACTIONS(4755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4755), + [anon_sym_BQUOTE] = ACTIONS(4755), + [anon_sym_LT_LPAREN] = ACTIONS(4755), + [anon_sym_GT_LPAREN] = ACTIONS(4755), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4757), + [sym_word] = ACTIONS(4757), + [anon_sym_LF] = ACTIONS(4755), + [anon_sym_AMP] = ACTIONS(4757), }, [1975] = { - [sym__terminated_statement] = STATE(2228), - [sym_for_statement] = STATE(2224), - [sym_c_style_for_statement] = STATE(2224), - [sym_while_statement] = STATE(2224), - [sym_if_statement] = STATE(2224), - [sym_case_statement] = STATE(2224), - [sym_function_definition] = STATE(2224), - [sym_subshell] = STATE(2224), - [sym_pipeline] = STATE(2224), - [sym_list] = STATE(2224), - [sym_negated_command] = STATE(2224), - [sym_test_command] = STATE(2224), - [sym_declaration_command] = STATE(2224), - [sym_unset_command] = STATE(2224), - [sym_command] = STATE(2224), - [sym_command_name] = STATE(1969), - [sym_variable_assignment] = STATE(2225), - [sym_subscript] = STATE(1971), - [sym_file_redirect] = STATE(1974), - [sym_concatenation] = STATE(1972), - [sym_string] = STATE(1962), - [sym_simple_expansion] = STATE(1962), - [sym_string_expansion] = STATE(1962), - [sym_expansion] = STATE(1962), - [sym_command_substitution] = STATE(1962), - [sym_process_substitution] = STATE(1962), - [aux_sym__statements_repeat1] = STATE(2228), - [aux_sym_command_repeat1] = STATE(1974), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4445), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(4447), - [anon_sym_while] = ACTIONS(4449), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_esac] = ACTIONS(5001), - [anon_sym_SEMI_SEMI] = ACTIONS(5107), - [anon_sym_function] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4461), - [anon_sym_declare] = ACTIONS(4463), - [anon_sym_typeset] = ACTIONS(4463), - [anon_sym_export] = ACTIONS(4463), - [anon_sym_readonly] = ACTIONS(4463), - [anon_sym_local] = ACTIONS(4463), - [anon_sym_unset] = ACTIONS(4465), - [anon_sym_unsetenv] = ACTIONS(4465), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(4467), - [anon_sym_DQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [sym_raw_string] = ACTIONS(4473), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), - [anon_sym_BQUOTE] = ACTIONS(4479), - [anon_sym_LT_LPAREN] = ACTIONS(4481), - [anon_sym_GT_LPAREN] = ACTIONS(4481), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4483), + [sym__simple_heredoc_body] = ACTIONS(4687), + [sym__heredoc_body_beginning] = ACTIONS(4687), + [sym_file_descriptor] = ACTIONS(4687), + [sym__concat] = ACTIONS(4687), + [ts_builtin_sym_end] = ACTIONS(4687), + [anon_sym_SEMI] = ACTIONS(4689), + [anon_sym_PIPE] = ACTIONS(4689), + [anon_sym_RPAREN] = ACTIONS(4687), + [anon_sym_SEMI_SEMI] = ACTIONS(4687), + [anon_sym_PIPE_AMP] = ACTIONS(4687), + [anon_sym_AMP_AMP] = ACTIONS(4687), + [anon_sym_PIPE_PIPE] = ACTIONS(4687), + [anon_sym_LT] = ACTIONS(4689), + [anon_sym_GT] = ACTIONS(4689), + [anon_sym_GT_GT] = ACTIONS(4687), + [anon_sym_AMP_GT] = ACTIONS(4689), + [anon_sym_AMP_GT_GT] = ACTIONS(4687), + [anon_sym_LT_AMP] = ACTIONS(4687), + [anon_sym_GT_AMP] = ACTIONS(4687), + [anon_sym_LT_LT] = ACTIONS(4689), + [anon_sym_LT_LT_DASH] = ACTIONS(4687), + [anon_sym_LT_LT_LT] = ACTIONS(4687), + [sym__special_characters] = ACTIONS(4687), + [anon_sym_DQUOTE] = ACTIONS(4687), + [anon_sym_DOLLAR] = ACTIONS(4689), + [sym_raw_string] = ACTIONS(4687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4687), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4687), + [anon_sym_BQUOTE] = ACTIONS(4687), + [anon_sym_LT_LPAREN] = ACTIONS(4687), + [anon_sym_GT_LPAREN] = ACTIONS(4687), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4689), + [sym_word] = ACTIONS(4689), + [anon_sym_LF] = ACTIONS(4687), + [anon_sym_AMP] = ACTIONS(4689), }, [1976] = { - [aux_sym_case_item_repeat1] = STATE(1976), - [anon_sym_PIPE] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(4997), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(4691), + [sym__heredoc_body_beginning] = ACTIONS(4691), + [sym_file_descriptor] = ACTIONS(4691), + [sym__concat] = ACTIONS(4691), + [ts_builtin_sym_end] = ACTIONS(4691), + [anon_sym_SEMI] = ACTIONS(4693), + [anon_sym_PIPE] = ACTIONS(4693), + [anon_sym_RPAREN] = ACTIONS(4691), + [anon_sym_SEMI_SEMI] = ACTIONS(4691), + [anon_sym_PIPE_AMP] = ACTIONS(4691), + [anon_sym_AMP_AMP] = ACTIONS(4691), + [anon_sym_PIPE_PIPE] = ACTIONS(4691), + [anon_sym_LT] = ACTIONS(4693), + [anon_sym_GT] = ACTIONS(4693), + [anon_sym_GT_GT] = ACTIONS(4691), + [anon_sym_AMP_GT] = ACTIONS(4693), + [anon_sym_AMP_GT_GT] = ACTIONS(4691), + [anon_sym_LT_AMP] = ACTIONS(4691), + [anon_sym_GT_AMP] = ACTIONS(4691), + [anon_sym_LT_LT] = ACTIONS(4693), + [anon_sym_LT_LT_DASH] = ACTIONS(4691), + [anon_sym_LT_LT_LT] = ACTIONS(4691), + [sym__special_characters] = ACTIONS(4691), + [anon_sym_DQUOTE] = ACTIONS(4691), + [anon_sym_DOLLAR] = ACTIONS(4693), + [sym_raw_string] = ACTIONS(4691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4691), + [anon_sym_BQUOTE] = ACTIONS(4691), + [anon_sym_LT_LPAREN] = ACTIONS(4691), + [anon_sym_GT_LPAREN] = ACTIONS(4691), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4693), + [sym_word] = ACTIONS(4693), + [anon_sym_LF] = ACTIONS(4691), + [anon_sym_AMP] = ACTIONS(4693), }, [1977] = { - [aux_sym_concatenation_repeat1] = STATE(1977), - [sym__concat] = ACTIONS(3490), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_RPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(4695), + [sym__heredoc_body_beginning] = ACTIONS(4695), + [sym_file_descriptor] = ACTIONS(4695), + [sym__concat] = ACTIONS(4695), + [ts_builtin_sym_end] = ACTIONS(4695), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym_PIPE] = ACTIONS(4697), + [anon_sym_RPAREN] = ACTIONS(4695), + [anon_sym_SEMI_SEMI] = ACTIONS(4695), + [anon_sym_PIPE_AMP] = ACTIONS(4695), + [anon_sym_AMP_AMP] = ACTIONS(4695), + [anon_sym_PIPE_PIPE] = ACTIONS(4695), + [anon_sym_LT] = ACTIONS(4697), + [anon_sym_GT] = ACTIONS(4697), + [anon_sym_GT_GT] = ACTIONS(4695), + [anon_sym_AMP_GT] = ACTIONS(4697), + [anon_sym_AMP_GT_GT] = ACTIONS(4695), + [anon_sym_LT_AMP] = ACTIONS(4695), + [anon_sym_GT_AMP] = ACTIONS(4695), + [anon_sym_LT_LT] = ACTIONS(4697), + [anon_sym_LT_LT_DASH] = ACTIONS(4695), + [anon_sym_LT_LT_LT] = ACTIONS(4695), + [sym__special_characters] = ACTIONS(4695), + [anon_sym_DQUOTE] = ACTIONS(4695), + [anon_sym_DOLLAR] = ACTIONS(4697), + [sym_raw_string] = ACTIONS(4695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4695), + [anon_sym_BQUOTE] = ACTIONS(4695), + [anon_sym_LT_LPAREN] = ACTIONS(4695), + [anon_sym_GT_LPAREN] = ACTIONS(4695), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4697), + [sym_word] = ACTIONS(4697), + [anon_sym_LF] = ACTIONS(4695), + [anon_sym_AMP] = ACTIONS(4697), }, [1978] = { - [anon_sym_esac] = ACTIONS(5114), - [sym__special_characters] = ACTIONS(5116), - [anon_sym_DQUOTE] = ACTIONS(5116), - [anon_sym_DOLLAR] = ACTIONS(5118), - [sym_raw_string] = ACTIONS(5116), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5116), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5116), - [anon_sym_BQUOTE] = ACTIONS(5116), - [anon_sym_LT_LPAREN] = ACTIONS(5116), - [anon_sym_GT_LPAREN] = ACTIONS(5116), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5118), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5108), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1979] = { - [anon_sym_SEMI] = ACTIONS(5077), - [anon_sym_esac] = ACTIONS(5120), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_SEMI_SEMI] = ACTIONS(5122), - [anon_sym_PIPE_AMP] = ACTIONS(5085), - [anon_sym_AMP_AMP] = ACTIONS(5087), - [anon_sym_PIPE_PIPE] = ACTIONS(5087), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5089), - [anon_sym_AMP] = ACTIONS(5077), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5110), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1980] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(5077), - [anon_sym_esac] = ACTIONS(5114), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_SEMI_SEMI] = ACTIONS(5122), - [anon_sym_PIPE_AMP] = ACTIONS(5085), - [anon_sym_AMP_AMP] = ACTIONS(5087), - [anon_sym_PIPE_PIPE] = ACTIONS(5087), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(5089), - [anon_sym_AMP] = ACTIONS(5077), + [sym__simple_heredoc_body] = ACTIONS(4731), + [sym__heredoc_body_beginning] = ACTIONS(4731), + [sym_file_descriptor] = ACTIONS(4731), + [sym__concat] = ACTIONS(4731), + [ts_builtin_sym_end] = ACTIONS(4731), + [anon_sym_SEMI] = ACTIONS(4733), + [anon_sym_PIPE] = ACTIONS(4733), + [anon_sym_RPAREN] = ACTIONS(4731), + [anon_sym_SEMI_SEMI] = ACTIONS(4731), + [anon_sym_PIPE_AMP] = ACTIONS(4731), + [anon_sym_AMP_AMP] = ACTIONS(4731), + [anon_sym_PIPE_PIPE] = ACTIONS(4731), + [anon_sym_LT] = ACTIONS(4733), + [anon_sym_GT] = ACTIONS(4733), + [anon_sym_GT_GT] = ACTIONS(4731), + [anon_sym_AMP_GT] = ACTIONS(4733), + [anon_sym_AMP_GT_GT] = ACTIONS(4731), + [anon_sym_LT_AMP] = ACTIONS(4731), + [anon_sym_GT_AMP] = ACTIONS(4731), + [anon_sym_LT_LT] = ACTIONS(4733), + [anon_sym_LT_LT_DASH] = ACTIONS(4731), + [anon_sym_LT_LT_LT] = ACTIONS(4731), + [sym__special_characters] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4731), + [anon_sym_DOLLAR] = ACTIONS(4733), + [sym_raw_string] = ACTIONS(4731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4731), + [anon_sym_BQUOTE] = ACTIONS(4731), + [anon_sym_LT_LPAREN] = ACTIONS(4731), + [anon_sym_GT_LPAREN] = ACTIONS(4731), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4733), + [sym_word] = ACTIONS(4733), + [anon_sym_LF] = ACTIONS(4731), + [anon_sym_AMP] = ACTIONS(4733), }, [1981] = { - [sym__terminated_statement] = STATE(2226), - [sym_for_statement] = STATE(2231), - [sym_c_style_for_statement] = STATE(2231), - [sym_while_statement] = STATE(2231), - [sym_if_statement] = STATE(2231), - [sym_case_statement] = STATE(2231), - [sym_function_definition] = STATE(2231), - [sym_subshell] = STATE(2231), - [sym_pipeline] = STATE(2231), - [sym_list] = STATE(2231), - [sym_negated_command] = STATE(2231), - [sym_test_command] = STATE(2231), - [sym_declaration_command] = STATE(2231), - [sym_unset_command] = STATE(2231), - [sym_command] = STATE(2231), - [sym_command_name] = STATE(1969), - [sym_variable_assignment] = STATE(2232), - [sym_subscript] = STATE(1971), - [sym_file_redirect] = STATE(1974), - [sym_concatenation] = STATE(1972), - [sym_string] = STATE(1962), - [sym_simple_expansion] = STATE(1962), - [sym_string_expansion] = STATE(1962), - [sym_expansion] = STATE(1962), - [sym_command_substitution] = STATE(1962), - [sym_process_substitution] = STATE(1962), - [aux_sym__statements_repeat1] = STATE(2226), - [aux_sym_command_repeat1] = STATE(1974), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4445), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(4447), - [anon_sym_while] = ACTIONS(4449), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_esac] = ACTIONS(5114), - [anon_sym_SEMI_SEMI] = ACTIONS(5124), - [anon_sym_function] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4461), - [anon_sym_declare] = ACTIONS(4463), - [anon_sym_typeset] = ACTIONS(4463), - [anon_sym_export] = ACTIONS(4463), - [anon_sym_readonly] = ACTIONS(4463), - [anon_sym_local] = ACTIONS(4463), - [anon_sym_unset] = ACTIONS(4465), - [anon_sym_unsetenv] = ACTIONS(4465), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(4467), - [anon_sym_DQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [sym_raw_string] = ACTIONS(4473), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), - [anon_sym_BQUOTE] = ACTIONS(4479), - [anon_sym_LT_LPAREN] = ACTIONS(4481), - [anon_sym_GT_LPAREN] = ACTIONS(4481), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4483), + [sym__simple_heredoc_body] = ACTIONS(4751), + [sym__heredoc_body_beginning] = ACTIONS(4751), + [sym_file_descriptor] = ACTIONS(4751), + [sym__concat] = ACTIONS(4751), + [ts_builtin_sym_end] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4753), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_SEMI_SEMI] = ACTIONS(4751), + [anon_sym_PIPE_AMP] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_GT_GT] = ACTIONS(4751), + [anon_sym_AMP_GT] = ACTIONS(4753), + [anon_sym_AMP_GT_GT] = ACTIONS(4751), + [anon_sym_LT_AMP] = ACTIONS(4751), + [anon_sym_GT_AMP] = ACTIONS(4751), + [anon_sym_LT_LT] = ACTIONS(4753), + [anon_sym_LT_LT_DASH] = ACTIONS(4751), + [anon_sym_LT_LT_LT] = ACTIONS(4751), + [sym__special_characters] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4753), + [sym_raw_string] = ACTIONS(4751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4751), + [anon_sym_BQUOTE] = ACTIONS(4751), + [anon_sym_LT_LPAREN] = ACTIONS(4751), + [anon_sym_GT_LPAREN] = ACTIONS(4751), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4753), + [sym_word] = ACTIONS(4753), + [anon_sym_LF] = ACTIONS(4751), + [anon_sym_AMP] = ACTIONS(4753), }, [1982] = { - [sym__terminated_statement] = STATE(2233), - [sym_for_statement] = STATE(2231), - [sym_c_style_for_statement] = STATE(2231), - [sym_while_statement] = STATE(2231), - [sym_if_statement] = STATE(2231), - [sym_case_statement] = STATE(2231), - [sym_function_definition] = STATE(2231), - [sym_subshell] = STATE(2231), - [sym_pipeline] = STATE(2231), - [sym_list] = STATE(2231), - [sym_negated_command] = STATE(2231), - [sym_test_command] = STATE(2231), - [sym_declaration_command] = STATE(2231), - [sym_unset_command] = STATE(2231), - [sym_command] = STATE(2231), - [sym_command_name] = STATE(1969), - [sym_variable_assignment] = STATE(2232), - [sym_subscript] = STATE(1971), - [sym_file_redirect] = STATE(1974), - [sym_concatenation] = STATE(1972), - [sym_string] = STATE(1962), - [sym_simple_expansion] = STATE(1962), - [sym_string_expansion] = STATE(1962), - [sym_expansion] = STATE(1962), - [sym_command_substitution] = STATE(1962), - [sym_process_substitution] = STATE(1962), - [aux_sym__statements_repeat1] = STATE(2233), - [aux_sym_command_repeat1] = STATE(1974), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4445), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(4447), - [anon_sym_while] = ACTIONS(4449), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_esac] = ACTIONS(5114), - [anon_sym_SEMI_SEMI] = ACTIONS(5124), - [anon_sym_function] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4461), - [anon_sym_declare] = ACTIONS(4463), - [anon_sym_typeset] = ACTIONS(4463), - [anon_sym_export] = ACTIONS(4463), - [anon_sym_readonly] = ACTIONS(4463), - [anon_sym_local] = ACTIONS(4463), - [anon_sym_unset] = ACTIONS(4465), - [anon_sym_unsetenv] = ACTIONS(4465), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(4467), - [anon_sym_DQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [sym_raw_string] = ACTIONS(4473), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), - [anon_sym_BQUOTE] = ACTIONS(4479), - [anon_sym_LT_LPAREN] = ACTIONS(4481), - [anon_sym_GT_LPAREN] = ACTIONS(4481), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4483), + [sym__simple_heredoc_body] = ACTIONS(4755), + [sym__heredoc_body_beginning] = ACTIONS(4755), + [sym_file_descriptor] = ACTIONS(4755), + [sym__concat] = ACTIONS(4755), + [ts_builtin_sym_end] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4757), + [anon_sym_PIPE] = ACTIONS(4757), + [anon_sym_RPAREN] = ACTIONS(4755), + [anon_sym_SEMI_SEMI] = ACTIONS(4755), + [anon_sym_PIPE_AMP] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4755), + [anon_sym_PIPE_PIPE] = ACTIONS(4755), + [anon_sym_LT] = ACTIONS(4757), + [anon_sym_GT] = ACTIONS(4757), + [anon_sym_GT_GT] = ACTIONS(4755), + [anon_sym_AMP_GT] = ACTIONS(4757), + [anon_sym_AMP_GT_GT] = ACTIONS(4755), + [anon_sym_LT_AMP] = ACTIONS(4755), + [anon_sym_GT_AMP] = ACTIONS(4755), + [anon_sym_LT_LT] = ACTIONS(4757), + [anon_sym_LT_LT_DASH] = ACTIONS(4755), + [anon_sym_LT_LT_LT] = ACTIONS(4755), + [sym__special_characters] = ACTIONS(4755), + [anon_sym_DQUOTE] = ACTIONS(4755), + [anon_sym_DOLLAR] = ACTIONS(4757), + [sym_raw_string] = ACTIONS(4755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4755), + [anon_sym_BQUOTE] = ACTIONS(4755), + [anon_sym_LT_LPAREN] = ACTIONS(4755), + [anon_sym_GT_LPAREN] = ACTIONS(4755), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4757), + [sym_word] = ACTIONS(4757), + [anon_sym_LF] = ACTIONS(4755), + [anon_sym_AMP] = ACTIONS(4757), }, [1983] = { - [ts_builtin_sym_end] = ACTIONS(5126), - [anon_sym_SEMI] = ACTIONS(5128), - [anon_sym_esac] = ACTIONS(5126), - [anon_sym_PIPE] = ACTIONS(5128), - [anon_sym_RPAREN] = ACTIONS(5126), - [anon_sym_SEMI_SEMI] = ACTIONS(5126), - [anon_sym_PIPE_AMP] = ACTIONS(5126), - [anon_sym_AMP_AMP] = ACTIONS(5126), - [anon_sym_PIPE_PIPE] = ACTIONS(5126), - [anon_sym_BQUOTE] = ACTIONS(5126), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5126), - [anon_sym_AMP] = ACTIONS(5128), + [sym_file_descriptor] = ACTIONS(4687), + [sym__concat] = ACTIONS(4687), + [sym_variable_name] = ACTIONS(4687), + [anon_sym_LT] = ACTIONS(4689), + [anon_sym_GT] = ACTIONS(4689), + [anon_sym_GT_GT] = ACTIONS(4687), + [anon_sym_AMP_GT] = ACTIONS(4689), + [anon_sym_AMP_GT_GT] = ACTIONS(4687), + [anon_sym_LT_AMP] = ACTIONS(4687), + [anon_sym_GT_AMP] = ACTIONS(4687), + [sym__special_characters] = ACTIONS(4687), + [anon_sym_DQUOTE] = ACTIONS(4687), + [anon_sym_DOLLAR] = ACTIONS(4689), + [sym_raw_string] = ACTIONS(4687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4687), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4687), + [anon_sym_BQUOTE] = ACTIONS(4687), + [anon_sym_LT_LPAREN] = ACTIONS(4687), + [anon_sym_GT_LPAREN] = ACTIONS(4687), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4687), }, [1984] = { - [aux_sym_case_item_repeat1] = STATE(2235), - [aux_sym_concatenation_repeat1] = STATE(1627), - [sym__concat] = ACTIONS(1214), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_RPAREN] = ACTIONS(5130), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(4691), + [sym__concat] = ACTIONS(4691), + [sym_variable_name] = ACTIONS(4691), + [anon_sym_LT] = ACTIONS(4693), + [anon_sym_GT] = ACTIONS(4693), + [anon_sym_GT_GT] = ACTIONS(4691), + [anon_sym_AMP_GT] = ACTIONS(4693), + [anon_sym_AMP_GT_GT] = ACTIONS(4691), + [anon_sym_LT_AMP] = ACTIONS(4691), + [anon_sym_GT_AMP] = ACTIONS(4691), + [sym__special_characters] = ACTIONS(4691), + [anon_sym_DQUOTE] = ACTIONS(4691), + [anon_sym_DOLLAR] = ACTIONS(4693), + [sym_raw_string] = ACTIONS(4691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4691), + [anon_sym_BQUOTE] = ACTIONS(4691), + [anon_sym_LT_LPAREN] = ACTIONS(4691), + [anon_sym_GT_LPAREN] = ACTIONS(4691), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4691), }, [1985] = { - [aux_sym_case_item_repeat1] = STATE(2237), - [aux_sym_concatenation_repeat1] = STATE(1627), - [sym__concat] = ACTIONS(1214), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_RPAREN] = ACTIONS(5132), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(4695), + [sym__concat] = ACTIONS(4695), + [sym_variable_name] = ACTIONS(4695), + [anon_sym_LT] = ACTIONS(4697), + [anon_sym_GT] = ACTIONS(4697), + [anon_sym_GT_GT] = ACTIONS(4695), + [anon_sym_AMP_GT] = ACTIONS(4697), + [anon_sym_AMP_GT_GT] = ACTIONS(4695), + [anon_sym_LT_AMP] = ACTIONS(4695), + [anon_sym_GT_AMP] = ACTIONS(4695), + [sym__special_characters] = ACTIONS(4695), + [anon_sym_DQUOTE] = ACTIONS(4695), + [anon_sym_DOLLAR] = ACTIONS(4697), + [sym_raw_string] = ACTIONS(4695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4695), + [anon_sym_BQUOTE] = ACTIONS(4695), + [anon_sym_LT_LPAREN] = ACTIONS(4695), + [anon_sym_GT_LPAREN] = ACTIONS(4695), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4695), }, [1986] = { - [aux_sym_case_item_repeat1] = STATE(2237), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_RPAREN] = ACTIONS(5132), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5112), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1987] = { - [anon_sym_esac] = ACTIONS(5134), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5114), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1988] = { - [ts_builtin_sym_end] = ACTIONS(5136), - [anon_sym_SEMI] = ACTIONS(5138), - [anon_sym_esac] = ACTIONS(5136), - [anon_sym_PIPE] = ACTIONS(5138), - [anon_sym_RPAREN] = ACTIONS(5136), - [anon_sym_SEMI_SEMI] = ACTIONS(5136), - [anon_sym_PIPE_AMP] = ACTIONS(5136), - [anon_sym_AMP_AMP] = ACTIONS(5136), - [anon_sym_PIPE_PIPE] = ACTIONS(5136), - [anon_sym_BQUOTE] = ACTIONS(5136), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5138), + [sym_file_descriptor] = ACTIONS(4731), + [sym__concat] = ACTIONS(4731), + [sym_variable_name] = ACTIONS(4731), + [anon_sym_LT] = ACTIONS(4733), + [anon_sym_GT] = ACTIONS(4733), + [anon_sym_GT_GT] = ACTIONS(4731), + [anon_sym_AMP_GT] = ACTIONS(4733), + [anon_sym_AMP_GT_GT] = ACTIONS(4731), + [anon_sym_LT_AMP] = ACTIONS(4731), + [anon_sym_GT_AMP] = ACTIONS(4731), + [sym__special_characters] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4731), + [anon_sym_DOLLAR] = ACTIONS(4733), + [sym_raw_string] = ACTIONS(4731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4731), + [anon_sym_BQUOTE] = ACTIONS(4731), + [anon_sym_LT_LPAREN] = ACTIONS(4731), + [anon_sym_GT_LPAREN] = ACTIONS(4731), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4731), }, [1989] = { - [anon_sym_esac] = ACTIONS(5140), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(4751), + [sym__concat] = ACTIONS(4751), + [sym_variable_name] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_GT_GT] = ACTIONS(4751), + [anon_sym_AMP_GT] = ACTIONS(4753), + [anon_sym_AMP_GT_GT] = ACTIONS(4751), + [anon_sym_LT_AMP] = ACTIONS(4751), + [anon_sym_GT_AMP] = ACTIONS(4751), + [sym__special_characters] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4753), + [sym_raw_string] = ACTIONS(4751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4751), + [anon_sym_BQUOTE] = ACTIONS(4751), + [anon_sym_LT_LPAREN] = ACTIONS(4751), + [anon_sym_GT_LPAREN] = ACTIONS(4751), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4751), }, [1990] = { - [sym__concat] = ACTIONS(4710), - [anon_sym_in] = ACTIONS(4710), - [anon_sym_SEMI] = ACTIONS(4712), - [anon_sym_SEMI_SEMI] = ACTIONS(4710), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4710), - [anon_sym_AMP] = ACTIONS(4710), + [sym_file_descriptor] = ACTIONS(4755), + [sym__concat] = ACTIONS(4755), + [sym_variable_name] = ACTIONS(4755), + [anon_sym_LT] = ACTIONS(4757), + [anon_sym_GT] = ACTIONS(4757), + [anon_sym_GT_GT] = ACTIONS(4755), + [anon_sym_AMP_GT] = ACTIONS(4757), + [anon_sym_AMP_GT_GT] = ACTIONS(4755), + [anon_sym_LT_AMP] = ACTIONS(4755), + [anon_sym_GT_AMP] = ACTIONS(4755), + [sym__special_characters] = ACTIONS(4755), + [anon_sym_DQUOTE] = ACTIONS(4755), + [anon_sym_DOLLAR] = ACTIONS(4757), + [sym_raw_string] = ACTIONS(4755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4755), + [anon_sym_BQUOTE] = ACTIONS(4755), + [anon_sym_LT_LPAREN] = ACTIONS(4755), + [anon_sym_GT_LPAREN] = ACTIONS(4755), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4755), }, [1991] = { - [sym__concat] = ACTIONS(4714), - [anon_sym_in] = ACTIONS(4714), - [anon_sym_SEMI] = ACTIONS(4716), - [anon_sym_SEMI_SEMI] = ACTIONS(4714), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4714), - [anon_sym_AMP] = ACTIONS(4714), + [sym__concat] = ACTIONS(4687), + [anon_sym_DQUOTE] = ACTIONS(4689), + [anon_sym_DOLLAR] = ACTIONS(4689), + [sym__string_content] = ACTIONS(4687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4689), + [anon_sym_BQUOTE] = ACTIONS(4689), + [sym_comment] = ACTIONS(265), }, [1992] = { - [sym__concat] = ACTIONS(4718), - [anon_sym_in] = ACTIONS(4718), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_SEMI_SEMI] = ACTIONS(4718), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4718), + [sym__concat] = ACTIONS(4691), + [anon_sym_DQUOTE] = ACTIONS(4693), + [anon_sym_DOLLAR] = ACTIONS(4693), + [sym__string_content] = ACTIONS(4691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4693), + [anon_sym_BQUOTE] = ACTIONS(4693), + [sym_comment] = ACTIONS(265), }, [1993] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5142), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(4695), + [anon_sym_DQUOTE] = ACTIONS(4697), + [anon_sym_DOLLAR] = ACTIONS(4697), + [sym__string_content] = ACTIONS(4695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4697), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4697), + [anon_sym_BQUOTE] = ACTIONS(4697), + [sym_comment] = ACTIONS(265), }, [1994] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5144), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5116), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1995] = { - [sym__concat] = ACTIONS(4754), - [anon_sym_in] = ACTIONS(4754), - [anon_sym_SEMI] = ACTIONS(4756), - [anon_sym_SEMI_SEMI] = ACTIONS(4754), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5118), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [1996] = { - [aux_sym_concatenation_repeat1] = STATE(1996), - [sym__concat] = ACTIONS(2807), - [ts_builtin_sym_end] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym__concat] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4733), + [anon_sym_DOLLAR] = ACTIONS(4733), + [sym__string_content] = ACTIONS(4731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4733), + [anon_sym_BQUOTE] = ACTIONS(4733), + [sym_comment] = ACTIONS(265), }, [1997] = { - [aux_sym_concatenation_repeat1] = STATE(1999), - [sym_file_descriptor] = ACTIONS(1088), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1090), - [anon_sym_RPAREN] = ACTIONS(1088), - [anon_sym_SEMI_SEMI] = ACTIONS(1088), - [anon_sym_PIPE_AMP] = ACTIONS(1088), - [anon_sym_AMP_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1088), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(1090), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_AMP_GT] = ACTIONS(1090), - [anon_sym_AMP_GT_GT] = ACTIONS(1088), - [anon_sym_LT_AMP] = ACTIONS(1088), - [anon_sym_GT_AMP] = ACTIONS(1088), - [anon_sym_LT_LT] = ACTIONS(1090), - [anon_sym_LT_LT_DASH] = ACTIONS(1088), - [anon_sym_LT_LT_LT] = ACTIONS(1088), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), + [sym__concat] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4753), + [anon_sym_DOLLAR] = ACTIONS(4753), + [sym__string_content] = ACTIONS(4751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4753), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4753), + [anon_sym_BQUOTE] = ACTIONS(4753), + [sym_comment] = ACTIONS(265), }, [1998] = { - [aux_sym_concatenation_repeat1] = STATE(1999), - [sym_file_descriptor] = ACTIONS(1092), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_RPAREN] = ACTIONS(1092), - [anon_sym_SEMI_SEMI] = ACTIONS(1092), - [anon_sym_PIPE_AMP] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_LT] = ACTIONS(1094), - [anon_sym_GT] = ACTIONS(1094), - [anon_sym_GT_GT] = ACTIONS(1092), - [anon_sym_AMP_GT] = ACTIONS(1094), - [anon_sym_AMP_GT_GT] = ACTIONS(1092), - [anon_sym_LT_AMP] = ACTIONS(1092), - [anon_sym_GT_AMP] = ACTIONS(1092), - [anon_sym_LT_LT] = ACTIONS(1094), - [anon_sym_LT_LT_DASH] = ACTIONS(1092), - [anon_sym_LT_LT_LT] = ACTIONS(1092), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1092), - [anon_sym_AMP] = ACTIONS(1094), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(5120), + [anon_sym_DASH] = ACTIONS(5120), + [sym__special_characters] = ACTIONS(5120), + [anon_sym_DQUOTE] = ACTIONS(4108), + [anon_sym_DOLLAR] = ACTIONS(5120), + [sym_raw_string] = ACTIONS(4108), + [anon_sym_POUND] = ACTIONS(4108), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4108), + [anon_sym_SLASH] = ACTIONS(4108), + [anon_sym_COLON] = ACTIONS(5120), + [anon_sym_COLON_QMARK] = ACTIONS(5120), + [anon_sym_COLON_DASH] = ACTIONS(5120), + [anon_sym_PERCENT] = ACTIONS(5120), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4108), + [anon_sym_BQUOTE] = ACTIONS(4108), + [anon_sym_LT_LPAREN] = ACTIONS(4108), + [anon_sym_GT_LPAREN] = ACTIONS(4108), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(5120), }, [1999] = { - [aux_sym_concatenation_repeat1] = STATE(2242), - [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(809), - [anon_sym_AMP_GT_GT] = ACTIONS(807), - [anon_sym_LT_AMP] = ACTIONS(807), - [anon_sym_GT_AMP] = ACTIONS(807), - [anon_sym_LT_LT] = ACTIONS(809), - [anon_sym_LT_LT_DASH] = ACTIONS(807), - [anon_sym_LT_LT_LT] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_EQ] = ACTIONS(5122), + [anon_sym_DASH] = ACTIONS(5122), + [sym__special_characters] = ACTIONS(5122), + [anon_sym_DQUOTE] = ACTIONS(4110), + [anon_sym_DOLLAR] = ACTIONS(5122), + [sym_raw_string] = ACTIONS(4110), + [anon_sym_POUND] = ACTIONS(4110), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4110), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(5122), + [anon_sym_COLON_QMARK] = ACTIONS(5122), + [anon_sym_COLON_DASH] = ACTIONS(5122), + [anon_sym_PERCENT] = ACTIONS(5122), + [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(265), + [sym_word] = ACTIONS(5122), }, [2000] = { - [aux_sym_concatenation_repeat1] = STATE(2002), - [sym__concat] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1090), - [anon_sym_RPAREN] = ACTIONS(1088), - [anon_sym_SEMI_SEMI] = ACTIONS(1088), - [anon_sym_PIPE_AMP] = ACTIONS(1088), - [anon_sym_AMP_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1088), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), + [sym__concat] = ACTIONS(2930), + [anon_sym_RBRACE] = ACTIONS(2930), + [sym_comment] = ACTIONS(57), }, [2001] = { - [aux_sym_concatenation_repeat1] = STATE(2002), - [sym__concat] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_RPAREN] = ACTIONS(1092), - [anon_sym_SEMI_SEMI] = ACTIONS(1092), - [anon_sym_PIPE_AMP] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1092), - [anon_sym_AMP] = ACTIONS(1094), + [sym__concat] = ACTIONS(2944), + [anon_sym_RBRACE] = ACTIONS(2944), + [sym_comment] = ACTIONS(57), }, [2002] = { - [aux_sym_concatenation_repeat1] = STATE(2243), - [sym__concat] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(5124), + [sym_comment] = ACTIONS(57), }, [2003] = { - [sym__concat] = ACTIONS(4710), - [anon_sym_AMP_AMP] = ACTIONS(4710), - [anon_sym_PIPE_PIPE] = ACTIONS(4710), - [anon_sym_RBRACK] = ACTIONS(4710), - [anon_sym_EQ_TILDE] = ACTIONS(4710), - [anon_sym_EQ_EQ] = ACTIONS(4710), - [anon_sym_EQ] = ACTIONS(4712), - [anon_sym_PLUS_EQ] = ACTIONS(4710), - [anon_sym_LT] = ACTIONS(4712), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_BANG_EQ] = ACTIONS(4710), - [anon_sym_PLUS] = ACTIONS(4712), - [anon_sym_DASH] = ACTIONS(4712), - [anon_sym_DASH_EQ] = ACTIONS(4710), - [anon_sym_LT_EQ] = ACTIONS(4710), - [anon_sym_GT_EQ] = ACTIONS(4710), - [anon_sym_PLUS_PLUS] = ACTIONS(4710), - [anon_sym_DASH_DASH] = ACTIONS(4710), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4710), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(5126), + [sym_comment] = ACTIONS(57), }, [2004] = { - [sym__concat] = ACTIONS(4714), - [anon_sym_AMP_AMP] = ACTIONS(4714), - [anon_sym_PIPE_PIPE] = ACTIONS(4714), - [anon_sym_RBRACK] = ACTIONS(4714), - [anon_sym_EQ_TILDE] = ACTIONS(4714), - [anon_sym_EQ_EQ] = ACTIONS(4714), - [anon_sym_EQ] = ACTIONS(4716), - [anon_sym_PLUS_EQ] = ACTIONS(4714), - [anon_sym_LT] = ACTIONS(4716), - [anon_sym_GT] = ACTIONS(4716), - [anon_sym_BANG_EQ] = ACTIONS(4714), - [anon_sym_PLUS] = ACTIONS(4716), - [anon_sym_DASH] = ACTIONS(4716), - [anon_sym_DASH_EQ] = ACTIONS(4714), - [anon_sym_LT_EQ] = ACTIONS(4714), - [anon_sym_GT_EQ] = ACTIONS(4714), - [anon_sym_PLUS_PLUS] = ACTIONS(4714), - [anon_sym_DASH_DASH] = ACTIONS(4714), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4714), + [anon_sym_RBRACE] = ACTIONS(5126), + [sym_comment] = ACTIONS(57), }, [2005] = { - [sym__concat] = ACTIONS(4718), - [anon_sym_AMP_AMP] = ACTIONS(4718), - [anon_sym_PIPE_PIPE] = ACTIONS(4718), - [anon_sym_RBRACK] = ACTIONS(4718), - [anon_sym_EQ_TILDE] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4718), - [anon_sym_EQ] = ACTIONS(4720), - [anon_sym_PLUS_EQ] = ACTIONS(4718), - [anon_sym_LT] = ACTIONS(4720), - [anon_sym_GT] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4718), - [anon_sym_PLUS] = ACTIONS(4720), - [anon_sym_DASH] = ACTIONS(4720), - [anon_sym_DASH_EQ] = ACTIONS(4718), - [anon_sym_LT_EQ] = ACTIONS(4718), - [anon_sym_GT_EQ] = ACTIONS(4718), - [anon_sym_PLUS_PLUS] = ACTIONS(4718), - [anon_sym_DASH_DASH] = ACTIONS(4718), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4718), + [sym_concatenation] = STATE(2208), + [sym_string] = STATE(2207), + [sym_simple_expansion] = STATE(2207), + [sym_string_expansion] = STATE(2207), + [sym_expansion] = STATE(2207), + [sym_command_substitution] = STATE(2207), + [sym_process_substitution] = STATE(2207), + [anon_sym_RBRACE] = ACTIONS(5126), + [sym__special_characters] = ACTIONS(5128), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(5130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5130), }, [2006] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5146), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(2980), + [anon_sym_RBRACE] = ACTIONS(2980), + [sym_comment] = ACTIONS(57), }, [2007] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5148), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(2211), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2211), + [sym_regex] = ACTIONS(5132), + [anon_sym_RBRACE] = ACTIONS(5134), + [anon_sym_EQ] = ACTIONS(5136), + [anon_sym_DASH] = ACTIONS(5136), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5138), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(5136), + [anon_sym_COLON_QMARK] = ACTIONS(5136), + [anon_sym_COLON_DASH] = ACTIONS(5136), + [anon_sym_PERCENT] = ACTIONS(5136), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2008] = { - [sym__concat] = ACTIONS(4754), - [anon_sym_AMP_AMP] = ACTIONS(4754), - [anon_sym_PIPE_PIPE] = ACTIONS(4754), - [anon_sym_RBRACK] = ACTIONS(4754), - [anon_sym_EQ_TILDE] = ACTIONS(4754), - [anon_sym_EQ_EQ] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4756), - [anon_sym_PLUS_EQ] = ACTIONS(4754), - [anon_sym_LT] = ACTIONS(4756), - [anon_sym_GT] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4754), - [anon_sym_PLUS] = ACTIONS(4756), - [anon_sym_DASH] = ACTIONS(4756), - [anon_sym_DASH_EQ] = ACTIONS(4754), - [anon_sym_LT_EQ] = ACTIONS(4754), - [anon_sym_GT_EQ] = ACTIONS(4754), - [anon_sym_PLUS_PLUS] = ACTIONS(4754), - [anon_sym_DASH_DASH] = ACTIONS(4754), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4754), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5134), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2009] = { - [sym__concat] = ACTIONS(4710), - [sym_variable_name] = ACTIONS(4710), - [ts_builtin_sym_end] = ACTIONS(4710), - [anon_sym_SEMI] = ACTIONS(4712), - [anon_sym_PIPE] = ACTIONS(4712), - [anon_sym_RPAREN] = ACTIONS(4710), - [anon_sym_SEMI_SEMI] = ACTIONS(4710), - [anon_sym_PIPE_AMP] = ACTIONS(4710), - [anon_sym_AMP_AMP] = ACTIONS(4710), - [anon_sym_PIPE_PIPE] = ACTIONS(4710), - [sym__special_characters] = ACTIONS(4710), - [anon_sym_DQUOTE] = ACTIONS(4710), - [anon_sym_DOLLAR] = ACTIONS(4712), - [sym_raw_string] = ACTIONS(4710), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), - [anon_sym_BQUOTE] = ACTIONS(4710), - [anon_sym_LT_LPAREN] = ACTIONS(4710), - [anon_sym_GT_LPAREN] = ACTIONS(4710), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4712), - [sym_word] = ACTIONS(4712), - [anon_sym_LF] = ACTIONS(4710), - [anon_sym_AMP] = ACTIONS(4712), + [sym_concatenation] = STATE(2213), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2213), + [sym_regex] = ACTIONS(5140), + [anon_sym_RBRACE] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(5142), + [anon_sym_DASH] = ACTIONS(5142), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(5142), + [anon_sym_COLON_QMARK] = ACTIONS(5142), + [anon_sym_COLON_DASH] = ACTIONS(5142), + [anon_sym_PERCENT] = ACTIONS(5142), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2010] = { - [sym__concat] = ACTIONS(4714), - [sym_variable_name] = ACTIONS(4714), - [ts_builtin_sym_end] = ACTIONS(4714), - [anon_sym_SEMI] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4716), - [anon_sym_RPAREN] = ACTIONS(4714), - [anon_sym_SEMI_SEMI] = ACTIONS(4714), - [anon_sym_PIPE_AMP] = ACTIONS(4714), - [anon_sym_AMP_AMP] = ACTIONS(4714), - [anon_sym_PIPE_PIPE] = ACTIONS(4714), - [sym__special_characters] = ACTIONS(4714), - [anon_sym_DQUOTE] = ACTIONS(4714), - [anon_sym_DOLLAR] = ACTIONS(4716), - [sym_raw_string] = ACTIONS(4714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), - [anon_sym_BQUOTE] = ACTIONS(4714), - [anon_sym_LT_LPAREN] = ACTIONS(4714), - [anon_sym_GT_LPAREN] = ACTIONS(4714), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4716), - [sym_word] = ACTIONS(4716), - [anon_sym_LF] = ACTIONS(4714), - [anon_sym_AMP] = ACTIONS(4716), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2011] = { - [sym__concat] = ACTIONS(4718), - [sym_variable_name] = ACTIONS(4718), - [ts_builtin_sym_end] = ACTIONS(4718), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_RPAREN] = ACTIONS(4718), - [anon_sym_SEMI_SEMI] = ACTIONS(4718), - [anon_sym_PIPE_AMP] = ACTIONS(4718), - [anon_sym_AMP_AMP] = ACTIONS(4718), - [anon_sym_PIPE_PIPE] = ACTIONS(4718), - [sym__special_characters] = ACTIONS(4718), - [anon_sym_DQUOTE] = ACTIONS(4718), - [anon_sym_DOLLAR] = ACTIONS(4720), - [sym_raw_string] = ACTIONS(4718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), - [anon_sym_BQUOTE] = ACTIONS(4718), - [anon_sym_LT_LPAREN] = ACTIONS(4718), - [anon_sym_GT_LPAREN] = ACTIONS(4718), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4720), - [sym_word] = ACTIONS(4720), - [anon_sym_LF] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), + [sym_concatenation] = STATE(2215), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2215), + [anon_sym_RBRACE] = ACTIONS(5146), + [anon_sym_EQ] = ACTIONS(5148), + [anon_sym_DASH] = ACTIONS(5148), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5150), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(5148), + [anon_sym_COLON_QMARK] = ACTIONS(5148), + [anon_sym_COLON_DASH] = ACTIONS(5148), + [anon_sym_PERCENT] = ACTIONS(5148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2012] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5150), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(3036), + [anon_sym_RBRACE] = ACTIONS(3036), + [sym_comment] = ACTIONS(57), }, [2013] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5152), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5146), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2014] = { - [sym__concat] = ACTIONS(4754), - [sym_variable_name] = ACTIONS(4754), - [ts_builtin_sym_end] = ACTIONS(4754), - [anon_sym_SEMI] = ACTIONS(4756), - [anon_sym_PIPE] = ACTIONS(4756), - [anon_sym_RPAREN] = ACTIONS(4754), - [anon_sym_SEMI_SEMI] = ACTIONS(4754), - [anon_sym_PIPE_AMP] = ACTIONS(4754), - [anon_sym_AMP_AMP] = ACTIONS(4754), - [anon_sym_PIPE_PIPE] = ACTIONS(4754), - [sym__special_characters] = ACTIONS(4754), - [anon_sym_DQUOTE] = ACTIONS(4754), - [anon_sym_DOLLAR] = ACTIONS(4756), - [sym_raw_string] = ACTIONS(4754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), - [anon_sym_BQUOTE] = ACTIONS(4754), - [anon_sym_LT_LPAREN] = ACTIONS(4754), - [anon_sym_GT_LPAREN] = ACTIONS(4754), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4756), - [sym_word] = ACTIONS(4756), - [anon_sym_LF] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4756), + [sym_concatenation] = STATE(2213), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2213), + [anon_sym_RBRACE] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(5142), + [anon_sym_DASH] = ACTIONS(5142), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(5142), + [anon_sym_COLON_QMARK] = ACTIONS(5142), + [anon_sym_COLON_DASH] = ACTIONS(5142), + [anon_sym_PERCENT] = ACTIONS(5142), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2015] = { - [sym__concat] = ACTIONS(4710), - [ts_builtin_sym_end] = ACTIONS(4710), - [anon_sym_SEMI] = ACTIONS(4712), - [anon_sym_PIPE] = ACTIONS(4712), - [anon_sym_RPAREN] = ACTIONS(4710), - [anon_sym_SEMI_SEMI] = ACTIONS(4710), - [anon_sym_PIPE_AMP] = ACTIONS(4710), - [anon_sym_AMP_AMP] = ACTIONS(4710), - [anon_sym_PIPE_PIPE] = ACTIONS(4710), - [sym__special_characters] = ACTIONS(4710), - [anon_sym_DQUOTE] = ACTIONS(4710), - [anon_sym_DOLLAR] = ACTIONS(4712), - [sym_raw_string] = ACTIONS(4710), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), - [anon_sym_BQUOTE] = ACTIONS(4710), - [anon_sym_LT_LPAREN] = ACTIONS(4710), - [anon_sym_GT_LPAREN] = ACTIONS(4710), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4712), - [sym_word] = ACTIONS(4712), - [anon_sym_LF] = ACTIONS(4710), - [anon_sym_AMP] = ACTIONS(4712), + [sym__concat] = ACTIONS(3091), + [anon_sym_RBRACE] = ACTIONS(3091), + [sym_comment] = ACTIONS(57), }, [2016] = { - [sym__concat] = ACTIONS(4714), - [ts_builtin_sym_end] = ACTIONS(4714), - [anon_sym_SEMI] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4716), - [anon_sym_RPAREN] = ACTIONS(4714), - [anon_sym_SEMI_SEMI] = ACTIONS(4714), - [anon_sym_PIPE_AMP] = ACTIONS(4714), - [anon_sym_AMP_AMP] = ACTIONS(4714), - [anon_sym_PIPE_PIPE] = ACTIONS(4714), - [sym__special_characters] = ACTIONS(4714), - [anon_sym_DQUOTE] = ACTIONS(4714), - [anon_sym_DOLLAR] = ACTIONS(4716), - [sym_raw_string] = ACTIONS(4714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), - [anon_sym_BQUOTE] = ACTIONS(4714), - [anon_sym_LT_LPAREN] = ACTIONS(4714), - [anon_sym_GT_LPAREN] = ACTIONS(4714), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4716), - [sym_word] = ACTIONS(4716), - [anon_sym_LF] = ACTIONS(4714), - [anon_sym_AMP] = ACTIONS(4716), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(5152), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [2017] = { - [sym__concat] = ACTIONS(4718), - [ts_builtin_sym_end] = ACTIONS(4718), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_RPAREN] = ACTIONS(4718), - [anon_sym_SEMI_SEMI] = ACTIONS(4718), - [anon_sym_PIPE_AMP] = ACTIONS(4718), - [anon_sym_AMP_AMP] = ACTIONS(4718), - [anon_sym_PIPE_PIPE] = ACTIONS(4718), - [sym__special_characters] = ACTIONS(4718), - [anon_sym_DQUOTE] = ACTIONS(4718), - [anon_sym_DOLLAR] = ACTIONS(4720), - [sym_raw_string] = ACTIONS(4718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), - [anon_sym_BQUOTE] = ACTIONS(4718), - [anon_sym_LT_LPAREN] = ACTIONS(4718), - [anon_sym_GT_LPAREN] = ACTIONS(4718), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4720), - [sym_word] = ACTIONS(4720), - [anon_sym_LF] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(5152), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2018] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5154), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(5154), + [anon_sym_RPAREN] = ACTIONS(5152), + [anon_sym_SEMI_SEMI] = ACTIONS(5156), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5156), + [anon_sym_AMP] = ACTIONS(5156), }, [2019] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5156), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(5152), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [2020] = { - [sym__concat] = ACTIONS(4754), - [ts_builtin_sym_end] = ACTIONS(4754), - [anon_sym_SEMI] = ACTIONS(4756), - [anon_sym_PIPE] = ACTIONS(4756), - [anon_sym_RPAREN] = ACTIONS(4754), - [anon_sym_SEMI_SEMI] = ACTIONS(4754), - [anon_sym_PIPE_AMP] = ACTIONS(4754), - [anon_sym_AMP_AMP] = ACTIONS(4754), - [anon_sym_PIPE_PIPE] = ACTIONS(4754), - [sym__special_characters] = ACTIONS(4754), - [anon_sym_DQUOTE] = ACTIONS(4754), - [anon_sym_DOLLAR] = ACTIONS(4756), - [sym_raw_string] = ACTIONS(4754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), - [anon_sym_BQUOTE] = ACTIONS(4754), - [anon_sym_LT_LPAREN] = ACTIONS(4754), - [anon_sym_GT_LPAREN] = ACTIONS(4754), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4756), - [sym_word] = ACTIONS(4756), - [anon_sym_LF] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4756), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(5152), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2021] = { - [sym_file_descriptor] = ACTIONS(4710), - [sym__concat] = ACTIONS(4710), - [sym_variable_name] = ACTIONS(4710), - [anon_sym_LT] = ACTIONS(4712), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_GT_GT] = ACTIONS(4710), - [anon_sym_AMP_GT] = ACTIONS(4712), - [anon_sym_AMP_GT_GT] = ACTIONS(4710), - [anon_sym_LT_AMP] = ACTIONS(4710), - [anon_sym_GT_AMP] = ACTIONS(4710), - [sym__special_characters] = ACTIONS(4710), - [anon_sym_DQUOTE] = ACTIONS(4710), - [anon_sym_DOLLAR] = ACTIONS(4712), - [sym_raw_string] = ACTIONS(4710), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), - [anon_sym_BQUOTE] = ACTIONS(4710), - [anon_sym_LT_LPAREN] = ACTIONS(4710), - [anon_sym_GT_LPAREN] = ACTIONS(4710), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(5158), + [anon_sym_SEMI_SEMI] = ACTIONS(5160), + [anon_sym_BQUOTE] = ACTIONS(5152), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5160), + [anon_sym_AMP] = ACTIONS(5160), }, [2022] = { - [sym_file_descriptor] = ACTIONS(4714), - [sym__concat] = ACTIONS(4714), - [sym_variable_name] = ACTIONS(4714), - [anon_sym_LT] = ACTIONS(4716), - [anon_sym_GT] = ACTIONS(4716), - [anon_sym_GT_GT] = ACTIONS(4714), - [anon_sym_AMP_GT] = ACTIONS(4716), - [anon_sym_AMP_GT_GT] = ACTIONS(4714), - [anon_sym_LT_AMP] = ACTIONS(4714), - [anon_sym_GT_AMP] = ACTIONS(4714), - [sym__special_characters] = ACTIONS(4714), - [anon_sym_DQUOTE] = ACTIONS(4714), - [anon_sym_DOLLAR] = ACTIONS(4716), - [sym_raw_string] = ACTIONS(4714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), - [anon_sym_BQUOTE] = ACTIONS(4714), - [anon_sym_LT_LPAREN] = ACTIONS(4714), - [anon_sym_GT_LPAREN] = ACTIONS(4714), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4714), + [sym__concat] = ACTIONS(3121), + [anon_sym_RBRACE] = ACTIONS(3121), + [sym_comment] = ACTIONS(57), }, [2023] = { - [sym_file_descriptor] = ACTIONS(4718), - [sym__concat] = ACTIONS(4718), - [sym_variable_name] = ACTIONS(4718), - [anon_sym_LT] = ACTIONS(4720), - [anon_sym_GT] = ACTIONS(4720), - [anon_sym_GT_GT] = ACTIONS(4718), - [anon_sym_AMP_GT] = ACTIONS(4720), - [anon_sym_AMP_GT_GT] = ACTIONS(4718), - [anon_sym_LT_AMP] = ACTIONS(4718), - [anon_sym_GT_AMP] = ACTIONS(4718), - [sym__special_characters] = ACTIONS(4718), - [anon_sym_DQUOTE] = ACTIONS(4718), - [anon_sym_DOLLAR] = ACTIONS(4720), - [sym_raw_string] = ACTIONS(4718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), - [anon_sym_BQUOTE] = ACTIONS(4718), - [anon_sym_LT_LPAREN] = ACTIONS(4718), - [anon_sym_GT_LPAREN] = ACTIONS(4718), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4718), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(5162), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [2024] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5158), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(5162), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2025] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5160), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(5164), + [anon_sym_RPAREN] = ACTIONS(5162), + [anon_sym_SEMI_SEMI] = ACTIONS(5166), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5166), + [anon_sym_AMP] = ACTIONS(5166), }, [2026] = { - [sym_file_descriptor] = ACTIONS(4754), - [sym__concat] = ACTIONS(4754), - [sym_variable_name] = ACTIONS(4754), - [anon_sym_LT] = ACTIONS(4756), - [anon_sym_GT] = ACTIONS(4756), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_AMP_GT] = ACTIONS(4756), - [anon_sym_AMP_GT_GT] = ACTIONS(4754), - [anon_sym_LT_AMP] = ACTIONS(4754), - [anon_sym_GT_AMP] = ACTIONS(4754), - [sym__special_characters] = ACTIONS(4754), - [anon_sym_DQUOTE] = ACTIONS(4754), - [anon_sym_DOLLAR] = ACTIONS(4756), - [sym_raw_string] = ACTIONS(4754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), - [anon_sym_BQUOTE] = ACTIONS(4754), - [anon_sym_LT_LPAREN] = ACTIONS(4754), - [anon_sym_GT_LPAREN] = ACTIONS(4754), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4754), + [sym__simple_heredoc_body] = ACTIONS(5168), + [sym__heredoc_body_beginning] = ACTIONS(5168), + [sym_file_descriptor] = ACTIONS(5168), + [sym__concat] = ACTIONS(5168), + [ts_builtin_sym_end] = ACTIONS(5168), + [anon_sym_SEMI] = ACTIONS(5170), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_RPAREN] = ACTIONS(5168), + [anon_sym_SEMI_SEMI] = ACTIONS(5168), + [anon_sym_PIPE_AMP] = ACTIONS(5168), + [anon_sym_AMP_AMP] = ACTIONS(5168), + [anon_sym_PIPE_PIPE] = ACTIONS(5168), + [anon_sym_EQ_TILDE] = ACTIONS(5170), + [anon_sym_EQ_EQ] = ACTIONS(5170), + [anon_sym_LT] = ACTIONS(5170), + [anon_sym_GT] = ACTIONS(5170), + [anon_sym_GT_GT] = ACTIONS(5168), + [anon_sym_AMP_GT] = ACTIONS(5170), + [anon_sym_AMP_GT_GT] = ACTIONS(5168), + [anon_sym_LT_AMP] = ACTIONS(5168), + [anon_sym_GT_AMP] = ACTIONS(5168), + [anon_sym_LT_LT] = ACTIONS(5170), + [anon_sym_LT_LT_DASH] = ACTIONS(5168), + [anon_sym_LT_LT_LT] = ACTIONS(5168), + [sym__special_characters] = ACTIONS(5168), + [anon_sym_DQUOTE] = ACTIONS(5168), + [anon_sym_DOLLAR] = ACTIONS(5170), + [sym_raw_string] = ACTIONS(5168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5168), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5168), + [anon_sym_BQUOTE] = ACTIONS(5168), + [anon_sym_LT_LPAREN] = ACTIONS(5168), + [anon_sym_GT_LPAREN] = ACTIONS(5168), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5170), + [anon_sym_LF] = ACTIONS(5168), + [anon_sym_AMP] = ACTIONS(5170), }, [2027] = { - [sym__concat] = ACTIONS(4710), - [anon_sym_DQUOTE] = ACTIONS(4712), - [anon_sym_DOLLAR] = ACTIONS(4712), - [sym__string_content] = ACTIONS(4710), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4712), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4712), - [anon_sym_BQUOTE] = ACTIONS(4712), - [sym_comment] = ACTIONS(281), + [sym__simple_heredoc_body] = ACTIONS(5172), + [sym__heredoc_body_beginning] = ACTIONS(5172), + [sym_file_descriptor] = ACTIONS(5172), + [sym__concat] = ACTIONS(5172), + [ts_builtin_sym_end] = ACTIONS(5172), + [anon_sym_SEMI] = ACTIONS(5174), + [anon_sym_PIPE] = ACTIONS(5174), + [anon_sym_RPAREN] = ACTIONS(5172), + [anon_sym_SEMI_SEMI] = ACTIONS(5172), + [anon_sym_PIPE_AMP] = ACTIONS(5172), + [anon_sym_AMP_AMP] = ACTIONS(5172), + [anon_sym_PIPE_PIPE] = ACTIONS(5172), + [anon_sym_EQ_TILDE] = ACTIONS(5174), + [anon_sym_EQ_EQ] = ACTIONS(5174), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_GT_GT] = ACTIONS(5172), + [anon_sym_AMP_GT] = ACTIONS(5174), + [anon_sym_AMP_GT_GT] = ACTIONS(5172), + [anon_sym_LT_AMP] = ACTIONS(5172), + [anon_sym_GT_AMP] = ACTIONS(5172), + [anon_sym_LT_LT] = ACTIONS(5174), + [anon_sym_LT_LT_DASH] = ACTIONS(5172), + [anon_sym_LT_LT_LT] = ACTIONS(5172), + [sym__special_characters] = ACTIONS(5172), + [anon_sym_DQUOTE] = ACTIONS(5172), + [anon_sym_DOLLAR] = ACTIONS(5174), + [sym_raw_string] = ACTIONS(5172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5172), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5172), + [anon_sym_BQUOTE] = ACTIONS(5172), + [anon_sym_LT_LPAREN] = ACTIONS(5172), + [anon_sym_GT_LPAREN] = ACTIONS(5172), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5174), + [anon_sym_LF] = ACTIONS(5172), + [anon_sym_AMP] = ACTIONS(5174), }, [2028] = { - [sym__concat] = ACTIONS(4714), - [anon_sym_DQUOTE] = ACTIONS(4716), - [anon_sym_DOLLAR] = ACTIONS(4716), - [sym__string_content] = ACTIONS(4714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4716), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4716), - [anon_sym_BQUOTE] = ACTIONS(4716), - [sym_comment] = ACTIONS(281), + [sym__concat] = ACTIONS(3921), + [anon_sym_RBRACE] = ACTIONS(3921), + [anon_sym_EQ] = ACTIONS(3923), + [anon_sym_DASH] = ACTIONS(3923), + [sym__special_characters] = ACTIONS(3923), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_DOLLAR] = ACTIONS(3923), + [sym_raw_string] = ACTIONS(3921), + [anon_sym_POUND] = ACTIONS(3921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3921), + [anon_sym_COLON] = ACTIONS(3923), + [anon_sym_COLON_QMARK] = ACTIONS(3923), + [anon_sym_COLON_DASH] = ACTIONS(3923), + [anon_sym_PERCENT] = ACTIONS(3923), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3921), + [anon_sym_BQUOTE] = ACTIONS(3921), + [anon_sym_LT_LPAREN] = ACTIONS(3921), + [anon_sym_GT_LPAREN] = ACTIONS(3921), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(3923), }, [2029] = { - [sym__concat] = ACTIONS(4718), - [anon_sym_DQUOTE] = ACTIONS(4720), - [anon_sym_DOLLAR] = ACTIONS(4720), - [sym__string_content] = ACTIONS(4718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4720), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4720), - [anon_sym_BQUOTE] = ACTIONS(4720), - [sym_comment] = ACTIONS(281), + [sym__concat] = ACTIONS(3929), + [anon_sym_RBRACE] = ACTIONS(3929), + [anon_sym_EQ] = ACTIONS(3931), + [anon_sym_DASH] = ACTIONS(3931), + [sym__special_characters] = ACTIONS(3931), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_DOLLAR] = ACTIONS(3931), + [sym_raw_string] = ACTIONS(3929), + [anon_sym_POUND] = ACTIONS(3929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3929), + [anon_sym_COLON] = ACTIONS(3931), + [anon_sym_COLON_QMARK] = ACTIONS(3931), + [anon_sym_COLON_DASH] = ACTIONS(3931), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3929), + [anon_sym_BQUOTE] = ACTIONS(3929), + [anon_sym_LT_LPAREN] = ACTIONS(3929), + [anon_sym_GT_LPAREN] = ACTIONS(3929), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(3931), }, [2030] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5162), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(5176), + [sym_comment] = ACTIONS(57), }, [2031] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5164), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(5178), + [sym_comment] = ACTIONS(57), }, [2032] = { - [sym__concat] = ACTIONS(4754), - [anon_sym_DQUOTE] = ACTIONS(4756), - [anon_sym_DOLLAR] = ACTIONS(4756), - [sym__string_content] = ACTIONS(4754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4756), - [anon_sym_BQUOTE] = ACTIONS(4756), - [sym_comment] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(5178), + [sym_comment] = ACTIONS(57), }, [2033] = { - [anon_sym_RBRACE] = ACTIONS(4129), - [anon_sym_EQ] = ACTIONS(5166), - [anon_sym_DASH] = ACTIONS(5166), - [sym__special_characters] = ACTIONS(5166), - [anon_sym_DQUOTE] = ACTIONS(4129), - [anon_sym_DOLLAR] = ACTIONS(5166), - [sym_raw_string] = ACTIONS(4129), - [anon_sym_POUND] = ACTIONS(4129), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4129), - [anon_sym_SLASH] = ACTIONS(4129), - [anon_sym_COLON] = ACTIONS(5166), - [anon_sym_COLON_QMARK] = ACTIONS(5166), - [anon_sym_COLON_DASH] = ACTIONS(5166), - [anon_sym_PERCENT] = ACTIONS(5166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4129), - [anon_sym_BQUOTE] = ACTIONS(4129), - [anon_sym_LT_LPAREN] = ACTIONS(4129), - [anon_sym_GT_LPAREN] = ACTIONS(4129), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(5166), - }, - [2034] = { - [anon_sym_RBRACE] = ACTIONS(4131), - [anon_sym_EQ] = ACTIONS(5168), - [anon_sym_DASH] = ACTIONS(5168), - [sym__special_characters] = ACTIONS(5168), - [anon_sym_DQUOTE] = ACTIONS(4131), - [anon_sym_DOLLAR] = ACTIONS(5168), - [sym_raw_string] = ACTIONS(4131), - [anon_sym_POUND] = ACTIONS(4131), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4131), - [anon_sym_SLASH] = ACTIONS(4131), - [anon_sym_COLON] = ACTIONS(5168), - [anon_sym_COLON_QMARK] = ACTIONS(5168), - [anon_sym_COLON_DASH] = ACTIONS(5168), - [anon_sym_PERCENT] = ACTIONS(5168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4131), - [anon_sym_BQUOTE] = ACTIONS(4131), - [anon_sym_LT_LPAREN] = ACTIONS(4131), - [anon_sym_GT_LPAREN] = ACTIONS(4131), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(5168), - }, - [2035] = { - [sym__concat] = ACTIONS(2959), - [anon_sym_RBRACE] = ACTIONS(2959), - [sym_comment] = ACTIONS(55), - }, - [2036] = { - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(2973), - [sym_comment] = ACTIONS(55), - }, - [2037] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(5170), - [sym_comment] = ACTIONS(55), - }, - [2038] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(5172), - [sym_comment] = ACTIONS(55), - }, - [2039] = { - [anon_sym_RBRACE] = ACTIONS(5172), - [sym_comment] = ACTIONS(55), - }, - [2040] = { - [sym_concatenation] = STATE(2258), - [sym_string] = STATE(2257), - [sym_simple_expansion] = STATE(2257), - [sym_string_expansion] = STATE(2257), - [sym_expansion] = STATE(2257), - [sym_command_substitution] = STATE(2257), - [sym_process_substitution] = STATE(2257), - [anon_sym_RBRACE] = ACTIONS(5172), - [sym__special_characters] = ACTIONS(5174), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(5176), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5176), - }, - [2041] = { - [sym__concat] = ACTIONS(3009), - [anon_sym_RBRACE] = ACTIONS(3009), - [sym_comment] = ACTIONS(55), - }, - [2042] = { - [sym_concatenation] = STATE(2261), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2261), - [sym_regex] = ACTIONS(5178), + [sym_concatenation] = STATE(2224), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2224), [anon_sym_RBRACE] = ACTIONS(5180), [anon_sym_EQ] = ACTIONS(5182), [anon_sym_DASH] = ACTIONS(5182), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), [anon_sym_POUND] = ACTIONS(5184), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), [anon_sym_COLON] = ACTIONS(5182), [anon_sym_COLON_QMARK] = ACTIONS(5182), [anon_sym_COLON_DASH] = ACTIONS(5182), [anon_sym_PERCENT] = ACTIONS(5182), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2034] = { + [sym__concat] = ACTIONS(3985), + [anon_sym_RBRACE] = ACTIONS(3985), + [anon_sym_EQ] = ACTIONS(3987), + [anon_sym_DASH] = ACTIONS(3987), + [sym__special_characters] = ACTIONS(3987), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_POUND] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_COLON] = ACTIONS(3987), + [anon_sym_COLON_QMARK] = ACTIONS(3987), + [anon_sym_COLON_DASH] = ACTIONS(3987), + [anon_sym_PERCENT] = ACTIONS(3987), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(3987), + }, + [2035] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5180), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2036] = { + [sym_concatenation] = STATE(2225), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2225), + [anon_sym_RBRACE] = ACTIONS(5178), + [anon_sym_EQ] = ACTIONS(5186), + [anon_sym_DASH] = ACTIONS(5186), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(5186), + [anon_sym_COLON_QMARK] = ACTIONS(5186), + [anon_sym_COLON_DASH] = ACTIONS(5186), + [anon_sym_PERCENT] = ACTIONS(5186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2037] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5178), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2038] = { + [sym__concat] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [anon_sym_EQ] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [sym__special_characters] = ACTIONS(4032), + [anon_sym_DQUOTE] = ACTIONS(4030), + [anon_sym_DOLLAR] = ACTIONS(4032), + [sym_raw_string] = ACTIONS(4030), + [anon_sym_POUND] = ACTIONS(4030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4030), + [anon_sym_COLON] = ACTIONS(4032), + [anon_sym_COLON_QMARK] = ACTIONS(4032), + [anon_sym_COLON_DASH] = ACTIONS(4032), + [anon_sym_PERCENT] = ACTIONS(4032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4030), + [anon_sym_BQUOTE] = ACTIONS(4030), + [anon_sym_LT_LPAREN] = ACTIONS(4030), + [anon_sym_GT_LPAREN] = ACTIONS(4030), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(4032), + }, + [2039] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5190), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2040] = { + [sym__concat] = ACTIONS(4064), + [anon_sym_RBRACE] = ACTIONS(4064), + [anon_sym_EQ] = ACTIONS(4066), + [anon_sym_DASH] = ACTIONS(4066), + [sym__special_characters] = ACTIONS(4066), + [anon_sym_DQUOTE] = ACTIONS(4064), + [anon_sym_DOLLAR] = ACTIONS(4066), + [sym_raw_string] = ACTIONS(4064), + [anon_sym_POUND] = ACTIONS(4064), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4064), + [anon_sym_COLON] = ACTIONS(4066), + [anon_sym_COLON_QMARK] = ACTIONS(4066), + [anon_sym_COLON_DASH] = ACTIONS(4066), + [anon_sym_PERCENT] = ACTIONS(4066), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4064), + [anon_sym_BQUOTE] = ACTIONS(4064), + [anon_sym_LT_LPAREN] = ACTIONS(4064), + [anon_sym_GT_LPAREN] = ACTIONS(4064), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(4066), + }, + [2041] = { + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(5192), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), + }, + [2042] = { + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(5192), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [2043] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5180), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(4070), + [anon_sym_RBRACE] = ACTIONS(4070), + [anon_sym_EQ] = ACTIONS(4072), + [anon_sym_DASH] = ACTIONS(4072), + [sym__special_characters] = ACTIONS(4072), + [anon_sym_DQUOTE] = ACTIONS(4070), + [anon_sym_DOLLAR] = ACTIONS(4072), + [sym_raw_string] = ACTIONS(4070), + [anon_sym_POUND] = ACTIONS(4070), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4070), + [anon_sym_COLON] = ACTIONS(4072), + [anon_sym_COLON_QMARK] = ACTIONS(4072), + [anon_sym_COLON_DASH] = ACTIONS(4072), + [anon_sym_PERCENT] = ACTIONS(4072), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4070), + [anon_sym_BQUOTE] = ACTIONS(4070), + [anon_sym_LT_LPAREN] = ACTIONS(4070), + [anon_sym_GT_LPAREN] = ACTIONS(4070), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(4072), }, [2044] = { - [sym_concatenation] = STATE(2263), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2263), - [sym_regex] = ACTIONS(5186), - [anon_sym_RBRACE] = ACTIONS(5172), - [anon_sym_EQ] = ACTIONS(5188), - [anon_sym_DASH] = ACTIONS(5188), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(5188), - [anon_sym_COLON_QMARK] = ACTIONS(5188), - [anon_sym_COLON_DASH] = ACTIONS(5188), - [anon_sym_PERCENT] = ACTIONS(5188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(5194), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [2045] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5172), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__heredoc_body_middle] = ACTIONS(3921), + [sym__heredoc_body_end] = ACTIONS(3921), + [anon_sym_DOLLAR] = ACTIONS(3923), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3921), + [sym_comment] = ACTIONS(57), }, [2046] = { - [sym_concatenation] = STATE(2265), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2265), - [anon_sym_RBRACE] = ACTIONS(5192), - [anon_sym_EQ] = ACTIONS(5194), - [anon_sym_DASH] = ACTIONS(5194), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(5194), - [anon_sym_COLON_QMARK] = ACTIONS(5194), - [anon_sym_COLON_DASH] = ACTIONS(5194), - [anon_sym_PERCENT] = ACTIONS(5194), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__heredoc_body_middle] = ACTIONS(3929), + [sym__heredoc_body_end] = ACTIONS(3929), + [anon_sym_DOLLAR] = ACTIONS(3931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3929), + [sym_comment] = ACTIONS(57), }, [2047] = { - [sym__concat] = ACTIONS(3065), - [anon_sym_RBRACE] = ACTIONS(3065), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(5196), + [sym_comment] = ACTIONS(57), }, [2048] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5192), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(5198), + [sym_comment] = ACTIONS(57), }, [2049] = { - [sym_concatenation] = STATE(2263), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2263), - [anon_sym_RBRACE] = ACTIONS(5172), - [anon_sym_EQ] = ACTIONS(5188), - [anon_sym_DASH] = ACTIONS(5188), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(5188), - [anon_sym_COLON_QMARK] = ACTIONS(5188), - [anon_sym_COLON_DASH] = ACTIONS(5188), - [anon_sym_PERCENT] = ACTIONS(5188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(5198), + [sym_comment] = ACTIONS(57), }, [2050] = { - [sym__concat] = ACTIONS(3120), - [anon_sym_RBRACE] = ACTIONS(3120), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(2232), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2232), + [anon_sym_RBRACE] = ACTIONS(5200), + [anon_sym_EQ] = ACTIONS(5202), + [anon_sym_DASH] = ACTIONS(5202), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(5202), + [anon_sym_COLON_QMARK] = ACTIONS(5202), + [anon_sym_COLON_DASH] = ACTIONS(5202), + [anon_sym_PERCENT] = ACTIONS(5202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2051] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(5198), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__heredoc_body_middle] = ACTIONS(3985), + [sym__heredoc_body_end] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [sym_comment] = ACTIONS(57), }, [2052] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(5198), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5200), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2053] = { - [sym__concat] = ACTIONS(3158), - [anon_sym_RBRACE] = ACTIONS(3158), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(2233), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2233), + [anon_sym_RBRACE] = ACTIONS(5198), + [anon_sym_EQ] = ACTIONS(5206), + [anon_sym_DASH] = ACTIONS(5206), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5208), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(5206), + [anon_sym_COLON_QMARK] = ACTIONS(5206), + [anon_sym_COLON_DASH] = ACTIONS(5206), + [anon_sym_PERCENT] = ACTIONS(5206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2054] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(5200), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5198), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2055] = { - [sym__simple_heredoc_body] = ACTIONS(5202), - [sym__heredoc_body_beginning] = ACTIONS(5202), - [sym_file_descriptor] = ACTIONS(5202), - [sym__concat] = ACTIONS(5202), - [ts_builtin_sym_end] = ACTIONS(5202), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5202), - [anon_sym_SEMI_SEMI] = ACTIONS(5202), - [anon_sym_PIPE_AMP] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_PIPE_PIPE] = ACTIONS(5202), - [anon_sym_EQ_TILDE] = ACTIONS(5204), - [anon_sym_EQ_EQ] = ACTIONS(5204), - [anon_sym_LT] = ACTIONS(5204), - [anon_sym_GT] = ACTIONS(5204), - [anon_sym_GT_GT] = ACTIONS(5202), - [anon_sym_AMP_GT] = ACTIONS(5204), - [anon_sym_AMP_GT_GT] = ACTIONS(5202), - [anon_sym_LT_AMP] = ACTIONS(5202), - [anon_sym_GT_AMP] = ACTIONS(5202), - [anon_sym_LT_LT] = ACTIONS(5204), - [anon_sym_LT_LT_DASH] = ACTIONS(5202), - [anon_sym_LT_LT_LT] = ACTIONS(5202), - [sym__special_characters] = ACTIONS(5202), - [anon_sym_DQUOTE] = ACTIONS(5202), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), - [anon_sym_BQUOTE] = ACTIONS(5202), - [anon_sym_LT_LPAREN] = ACTIONS(5202), - [anon_sym_GT_LPAREN] = ACTIONS(5202), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5204), - [anon_sym_LF] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5204), + [sym__heredoc_body_middle] = ACTIONS(4030), + [sym__heredoc_body_end] = ACTIONS(4030), + [anon_sym_DOLLAR] = ACTIONS(4032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4030), + [sym_comment] = ACTIONS(57), }, [2056] = { - [sym__simple_heredoc_body] = ACTIONS(5206), - [sym__heredoc_body_beginning] = ACTIONS(5206), - [sym_file_descriptor] = ACTIONS(5206), - [sym__concat] = ACTIONS(5206), - [ts_builtin_sym_end] = ACTIONS(5206), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_RPAREN] = ACTIONS(5206), - [anon_sym_SEMI_SEMI] = ACTIONS(5206), - [anon_sym_PIPE_AMP] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [anon_sym_EQ_TILDE] = ACTIONS(5208), - [anon_sym_EQ_EQ] = ACTIONS(5208), - [anon_sym_LT] = ACTIONS(5208), - [anon_sym_GT] = ACTIONS(5208), - [anon_sym_GT_GT] = ACTIONS(5206), - [anon_sym_AMP_GT] = ACTIONS(5208), - [anon_sym_AMP_GT_GT] = ACTIONS(5206), - [anon_sym_LT_AMP] = ACTIONS(5206), - [anon_sym_GT_AMP] = ACTIONS(5206), - [anon_sym_LT_LT] = ACTIONS(5208), - [anon_sym_LT_LT_DASH] = ACTIONS(5206), - [anon_sym_LT_LT_LT] = ACTIONS(5206), - [sym__special_characters] = ACTIONS(5206), - [anon_sym_DQUOTE] = ACTIONS(5206), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), - [anon_sym_BQUOTE] = ACTIONS(5206), - [anon_sym_LT_LPAREN] = ACTIONS(5206), - [anon_sym_GT_LPAREN] = ACTIONS(5206), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5208), - [anon_sym_LF] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5208), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5210), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2057] = { - [sym__concat] = ACTIONS(3934), - [anon_sym_RBRACE] = ACTIONS(3934), - [anon_sym_EQ] = ACTIONS(3936), - [anon_sym_DASH] = ACTIONS(3936), - [sym__special_characters] = ACTIONS(3936), - [anon_sym_DQUOTE] = ACTIONS(3934), - [anon_sym_DOLLAR] = ACTIONS(3936), - [sym_raw_string] = ACTIONS(3934), - [anon_sym_POUND] = ACTIONS(3934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), - [anon_sym_COLON] = ACTIONS(3936), - [anon_sym_COLON_QMARK] = ACTIONS(3936), - [anon_sym_COLON_DASH] = ACTIONS(3936), - [anon_sym_PERCENT] = ACTIONS(3936), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), - [anon_sym_BQUOTE] = ACTIONS(3934), - [anon_sym_LT_LPAREN] = ACTIONS(3934), - [anon_sym_GT_LPAREN] = ACTIONS(3934), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(3936), + [sym__concat] = ACTIONS(3921), + [anon_sym_RPAREN] = ACTIONS(3921), + [sym__special_characters] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_DOLLAR] = ACTIONS(3923), + [sym_raw_string] = ACTIONS(3921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3921), + [anon_sym_BQUOTE] = ACTIONS(3921), + [anon_sym_LT_LPAREN] = ACTIONS(3921), + [anon_sym_GT_LPAREN] = ACTIONS(3921), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3921), }, [2058] = { - [sym__concat] = ACTIONS(3942), - [anon_sym_RBRACE] = ACTIONS(3942), - [anon_sym_EQ] = ACTIONS(3944), - [anon_sym_DASH] = ACTIONS(3944), - [sym__special_characters] = ACTIONS(3944), - [anon_sym_DQUOTE] = ACTIONS(3942), - [anon_sym_DOLLAR] = ACTIONS(3944), - [sym_raw_string] = ACTIONS(3942), - [anon_sym_POUND] = ACTIONS(3942), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), - [anon_sym_COLON] = ACTIONS(3944), - [anon_sym_COLON_QMARK] = ACTIONS(3944), - [anon_sym_COLON_DASH] = ACTIONS(3944), - [anon_sym_PERCENT] = ACTIONS(3944), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), - [anon_sym_BQUOTE] = ACTIONS(3942), - [anon_sym_LT_LPAREN] = ACTIONS(3942), - [anon_sym_GT_LPAREN] = ACTIONS(3942), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(3944), + [sym__concat] = ACTIONS(3929), + [anon_sym_RPAREN] = ACTIONS(3929), + [sym__special_characters] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_DOLLAR] = ACTIONS(3931), + [sym_raw_string] = ACTIONS(3929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3929), + [anon_sym_BQUOTE] = ACTIONS(3929), + [anon_sym_LT_LPAREN] = ACTIONS(3929), + [anon_sym_GT_LPAREN] = ACTIONS(3929), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3929), }, [2059] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(5210), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(5212), + [sym_comment] = ACTIONS(57), }, [2060] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(5212), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(5214), + [sym_comment] = ACTIONS(57), }, [2061] = { - [anon_sym_RBRACE] = ACTIONS(5212), - [sym_comment] = ACTIONS(55), + [anon_sym_RBRACE] = ACTIONS(5214), + [sym_comment] = ACTIONS(57), }, [2062] = { - [sym_concatenation] = STATE(2271), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2271), - [anon_sym_RBRACE] = ACTIONS(5214), - [anon_sym_EQ] = ACTIONS(5216), - [anon_sym_DASH] = ACTIONS(5216), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5218), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(5216), - [anon_sym_COLON_QMARK] = ACTIONS(5216), - [anon_sym_COLON_DASH] = ACTIONS(5216), - [anon_sym_PERCENT] = ACTIONS(5216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(2238), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2238), + [anon_sym_RBRACE] = ACTIONS(5216), + [anon_sym_EQ] = ACTIONS(5218), + [anon_sym_DASH] = ACTIONS(5218), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5220), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(5218), + [anon_sym_COLON_QMARK] = ACTIONS(5218), + [anon_sym_COLON_DASH] = ACTIONS(5218), + [anon_sym_PERCENT] = ACTIONS(5218), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2063] = { - [sym__concat] = ACTIONS(3998), - [anon_sym_RBRACE] = ACTIONS(3998), - [anon_sym_EQ] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(4000), - [sym__special_characters] = ACTIONS(4000), - [anon_sym_DQUOTE] = ACTIONS(3998), - [anon_sym_DOLLAR] = ACTIONS(4000), - [sym_raw_string] = ACTIONS(3998), - [anon_sym_POUND] = ACTIONS(3998), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), - [anon_sym_COLON] = ACTIONS(4000), - [anon_sym_COLON_QMARK] = ACTIONS(4000), - [anon_sym_COLON_DASH] = ACTIONS(4000), - [anon_sym_PERCENT] = ACTIONS(4000), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), - [anon_sym_BQUOTE] = ACTIONS(3998), - [anon_sym_LT_LPAREN] = ACTIONS(3998), - [anon_sym_GT_LPAREN] = ACTIONS(3998), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(4000), + [sym__concat] = ACTIONS(3985), + [anon_sym_RPAREN] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3985), }, [2064] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5214), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5216), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2065] = { - [sym_concatenation] = STATE(2272), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2272), - [anon_sym_RBRACE] = ACTIONS(5212), - [anon_sym_EQ] = ACTIONS(5220), - [anon_sym_DASH] = ACTIONS(5220), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(5220), - [anon_sym_COLON_QMARK] = ACTIONS(5220), - [anon_sym_COLON_DASH] = ACTIONS(5220), - [anon_sym_PERCENT] = ACTIONS(5220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(2239), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2239), + [anon_sym_RBRACE] = ACTIONS(5214), + [anon_sym_EQ] = ACTIONS(5222), + [anon_sym_DASH] = ACTIONS(5222), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5224), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(5222), + [anon_sym_COLON_QMARK] = ACTIONS(5222), + [anon_sym_COLON_DASH] = ACTIONS(5222), + [anon_sym_PERCENT] = ACTIONS(5222), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2066] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5212), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5214), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2067] = { - [sym__concat] = ACTIONS(4043), - [anon_sym_RBRACE] = ACTIONS(4043), - [anon_sym_EQ] = ACTIONS(4045), - [anon_sym_DASH] = ACTIONS(4045), - [sym__special_characters] = ACTIONS(4045), - [anon_sym_DQUOTE] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(4045), - [sym_raw_string] = ACTIONS(4043), - [anon_sym_POUND] = ACTIONS(4043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), - [anon_sym_COLON] = ACTIONS(4045), - [anon_sym_COLON_QMARK] = ACTIONS(4045), - [anon_sym_COLON_DASH] = ACTIONS(4045), - [anon_sym_PERCENT] = ACTIONS(4045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), - [anon_sym_BQUOTE] = ACTIONS(4043), - [anon_sym_LT_LPAREN] = ACTIONS(4043), - [anon_sym_GT_LPAREN] = ACTIONS(4043), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(4045), + [sym__concat] = ACTIONS(4030), + [anon_sym_RPAREN] = ACTIONS(4030), + [sym__special_characters] = ACTIONS(4030), + [anon_sym_DQUOTE] = ACTIONS(4030), + [anon_sym_DOLLAR] = ACTIONS(4032), + [sym_raw_string] = ACTIONS(4030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4030), + [anon_sym_BQUOTE] = ACTIONS(4030), + [anon_sym_LT_LPAREN] = ACTIONS(4030), + [anon_sym_GT_LPAREN] = ACTIONS(4030), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4030), }, [2068] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5224), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5226), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2069] = { - [sym__concat] = ACTIONS(4065), - [anon_sym_RBRACE] = ACTIONS(4065), - [anon_sym_EQ] = ACTIONS(4067), - [anon_sym_DASH] = ACTIONS(4067), - [sym__special_characters] = ACTIONS(4067), - [anon_sym_DQUOTE] = ACTIONS(4065), - [anon_sym_DOLLAR] = ACTIONS(4067), - [sym_raw_string] = ACTIONS(4065), - [anon_sym_POUND] = ACTIONS(4065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), - [anon_sym_COLON] = ACTIONS(4067), - [anon_sym_COLON_QMARK] = ACTIONS(4067), - [anon_sym_COLON_DASH] = ACTIONS(4067), - [anon_sym_PERCENT] = ACTIONS(4067), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), - [anon_sym_BQUOTE] = ACTIONS(4065), - [anon_sym_LT_LPAREN] = ACTIONS(4065), - [anon_sym_GT_LPAREN] = ACTIONS(4065), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(4067), + [sym__concat] = ACTIONS(4064), + [anon_sym_RPAREN] = ACTIONS(4064), + [sym__special_characters] = ACTIONS(4064), + [anon_sym_DQUOTE] = ACTIONS(4064), + [anon_sym_DOLLAR] = ACTIONS(4066), + [sym_raw_string] = ACTIONS(4064), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4064), + [anon_sym_BQUOTE] = ACTIONS(4064), + [anon_sym_LT_LPAREN] = ACTIONS(4064), + [anon_sym_GT_LPAREN] = ACTIONS(4064), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4064), }, [2070] = { - [sym__concat] = ACTIONS(4089), - [anon_sym_RBRACE] = ACTIONS(4089), - [anon_sym_EQ] = ACTIONS(4091), - [anon_sym_DASH] = ACTIONS(4091), - [sym__special_characters] = ACTIONS(4091), - [anon_sym_DQUOTE] = ACTIONS(4089), - [anon_sym_DOLLAR] = ACTIONS(4091), - [sym_raw_string] = ACTIONS(4089), - [anon_sym_POUND] = ACTIONS(4089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), - [anon_sym_COLON] = ACTIONS(4091), - [anon_sym_COLON_QMARK] = ACTIONS(4091), - [anon_sym_COLON_DASH] = ACTIONS(4091), - [anon_sym_PERCENT] = ACTIONS(4091), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), - [anon_sym_BQUOTE] = ACTIONS(4089), - [anon_sym_LT_LPAREN] = ACTIONS(4089), - [anon_sym_GT_LPAREN] = ACTIONS(4089), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(4091), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(5228), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [2071] = { - [aux_sym_concatenation_repeat1] = STATE(2073), - [sym_file_descriptor] = ACTIONS(1088), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1090), - [anon_sym_SEMI_SEMI] = ACTIONS(1088), - [anon_sym_PIPE_AMP] = ACTIONS(1088), - [anon_sym_AMP_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1088), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(1090), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_AMP_GT] = ACTIONS(1090), - [anon_sym_AMP_GT_GT] = ACTIONS(1088), - [anon_sym_LT_AMP] = ACTIONS(1088), - [anon_sym_GT_AMP] = ACTIONS(1088), - [anon_sym_LT_LT] = ACTIONS(1090), - [anon_sym_LT_LT_DASH] = ACTIONS(1088), - [anon_sym_LT_LT_LT] = ACTIONS(1088), - [anon_sym_BQUOTE] = ACTIONS(1088), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(5228), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [2072] = { - [aux_sym_concatenation_repeat1] = STATE(2073), - [sym_file_descriptor] = ACTIONS(1092), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_SEMI_SEMI] = ACTIONS(1092), - [anon_sym_PIPE_AMP] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_LT] = ACTIONS(1094), - [anon_sym_GT] = ACTIONS(1094), - [anon_sym_GT_GT] = ACTIONS(1092), - [anon_sym_AMP_GT] = ACTIONS(1094), - [anon_sym_AMP_GT_GT] = ACTIONS(1092), - [anon_sym_LT_AMP] = ACTIONS(1092), - [anon_sym_GT_AMP] = ACTIONS(1092), - [anon_sym_LT_LT] = ACTIONS(1094), - [anon_sym_LT_LT_DASH] = ACTIONS(1092), - [anon_sym_LT_LT_LT] = ACTIONS(1092), - [anon_sym_BQUOTE] = ACTIONS(1092), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1092), - [anon_sym_AMP] = ACTIONS(1094), + [sym__concat] = ACTIONS(4070), + [anon_sym_RPAREN] = ACTIONS(4070), + [sym__special_characters] = ACTIONS(4070), + [anon_sym_DQUOTE] = ACTIONS(4070), + [anon_sym_DOLLAR] = ACTIONS(4072), + [sym_raw_string] = ACTIONS(4070), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4070), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4070), + [anon_sym_BQUOTE] = ACTIONS(4070), + [anon_sym_LT_LPAREN] = ACTIONS(4070), + [anon_sym_GT_LPAREN] = ACTIONS(4070), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4070), }, [2073] = { - [aux_sym_concatenation_repeat1] = STATE(2274), - [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(809), - [anon_sym_AMP_GT_GT] = ACTIONS(807), - [anon_sym_LT_AMP] = ACTIONS(807), - [anon_sym_GT_AMP] = ACTIONS(807), - [anon_sym_LT_LT] = ACTIONS(809), - [anon_sym_LT_LT_DASH] = ACTIONS(807), - [anon_sym_LT_LT_LT] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(5230), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [2074] = { - [aux_sym_concatenation_repeat1] = STATE(2076), - [sym__concat] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1090), - [anon_sym_SEMI_SEMI] = ACTIONS(1088), - [anon_sym_PIPE_AMP] = ACTIONS(1088), - [anon_sym_AMP_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1088), - [anon_sym_BQUOTE] = ACTIONS(1088), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), + [sym__simple_heredoc_body] = ACTIONS(4687), + [sym__heredoc_body_beginning] = ACTIONS(4687), + [sym_file_descriptor] = ACTIONS(4687), + [sym__concat] = ACTIONS(4687), + [sym_variable_name] = ACTIONS(4687), + [ts_builtin_sym_end] = ACTIONS(4687), + [anon_sym_SEMI] = ACTIONS(4689), + [anon_sym_PIPE] = ACTIONS(4689), + [anon_sym_RPAREN] = ACTIONS(4687), + [anon_sym_SEMI_SEMI] = ACTIONS(4687), + [anon_sym_PIPE_AMP] = ACTIONS(4687), + [anon_sym_AMP_AMP] = ACTIONS(4687), + [anon_sym_PIPE_PIPE] = ACTIONS(4687), + [anon_sym_LT] = ACTIONS(4689), + [anon_sym_GT] = ACTIONS(4689), + [anon_sym_GT_GT] = ACTIONS(4687), + [anon_sym_AMP_GT] = ACTIONS(4689), + [anon_sym_AMP_GT_GT] = ACTIONS(4687), + [anon_sym_LT_AMP] = ACTIONS(4687), + [anon_sym_GT_AMP] = ACTIONS(4687), + [anon_sym_LT_LT] = ACTIONS(4689), + [anon_sym_LT_LT_DASH] = ACTIONS(4687), + [anon_sym_LT_LT_LT] = ACTIONS(4687), + [sym__special_characters] = ACTIONS(4687), + [anon_sym_DQUOTE] = ACTIONS(4687), + [anon_sym_DOLLAR] = ACTIONS(4689), + [sym_raw_string] = ACTIONS(4687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4687), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4687), + [anon_sym_BQUOTE] = ACTIONS(4687), + [anon_sym_LT_LPAREN] = ACTIONS(4687), + [anon_sym_GT_LPAREN] = ACTIONS(4687), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4689), + [anon_sym_LF] = ACTIONS(4687), + [anon_sym_AMP] = ACTIONS(4689), }, [2075] = { - [aux_sym_concatenation_repeat1] = STATE(2076), - [sym__concat] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_SEMI_SEMI] = ACTIONS(1092), - [anon_sym_PIPE_AMP] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_BQUOTE] = ACTIONS(1092), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1092), - [anon_sym_AMP] = ACTIONS(1094), + [sym__simple_heredoc_body] = ACTIONS(4691), + [sym__heredoc_body_beginning] = ACTIONS(4691), + [sym_file_descriptor] = ACTIONS(4691), + [sym__concat] = ACTIONS(4691), + [sym_variable_name] = ACTIONS(4691), + [ts_builtin_sym_end] = ACTIONS(4691), + [anon_sym_SEMI] = ACTIONS(4693), + [anon_sym_PIPE] = ACTIONS(4693), + [anon_sym_RPAREN] = ACTIONS(4691), + [anon_sym_SEMI_SEMI] = ACTIONS(4691), + [anon_sym_PIPE_AMP] = ACTIONS(4691), + [anon_sym_AMP_AMP] = ACTIONS(4691), + [anon_sym_PIPE_PIPE] = ACTIONS(4691), + [anon_sym_LT] = ACTIONS(4693), + [anon_sym_GT] = ACTIONS(4693), + [anon_sym_GT_GT] = ACTIONS(4691), + [anon_sym_AMP_GT] = ACTIONS(4693), + [anon_sym_AMP_GT_GT] = ACTIONS(4691), + [anon_sym_LT_AMP] = ACTIONS(4691), + [anon_sym_GT_AMP] = ACTIONS(4691), + [anon_sym_LT_LT] = ACTIONS(4693), + [anon_sym_LT_LT_DASH] = ACTIONS(4691), + [anon_sym_LT_LT_LT] = ACTIONS(4691), + [sym__special_characters] = ACTIONS(4691), + [anon_sym_DQUOTE] = ACTIONS(4691), + [anon_sym_DOLLAR] = ACTIONS(4693), + [sym_raw_string] = ACTIONS(4691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4691), + [anon_sym_BQUOTE] = ACTIONS(4691), + [anon_sym_LT_LPAREN] = ACTIONS(4691), + [anon_sym_GT_LPAREN] = ACTIONS(4691), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4693), + [anon_sym_LF] = ACTIONS(4691), + [anon_sym_AMP] = ACTIONS(4693), }, [2076] = { - [aux_sym_concatenation_repeat1] = STATE(2275), - [sym__concat] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), + [sym__simple_heredoc_body] = ACTIONS(4695), + [sym__heredoc_body_beginning] = ACTIONS(4695), + [sym_file_descriptor] = ACTIONS(4695), + [sym__concat] = ACTIONS(4695), + [sym_variable_name] = ACTIONS(4695), + [ts_builtin_sym_end] = ACTIONS(4695), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym_PIPE] = ACTIONS(4697), + [anon_sym_RPAREN] = ACTIONS(4695), + [anon_sym_SEMI_SEMI] = ACTIONS(4695), + [anon_sym_PIPE_AMP] = ACTIONS(4695), + [anon_sym_AMP_AMP] = ACTIONS(4695), + [anon_sym_PIPE_PIPE] = ACTIONS(4695), + [anon_sym_LT] = ACTIONS(4697), + [anon_sym_GT] = ACTIONS(4697), + [anon_sym_GT_GT] = ACTIONS(4695), + [anon_sym_AMP_GT] = ACTIONS(4697), + [anon_sym_AMP_GT_GT] = ACTIONS(4695), + [anon_sym_LT_AMP] = ACTIONS(4695), + [anon_sym_GT_AMP] = ACTIONS(4695), + [anon_sym_LT_LT] = ACTIONS(4697), + [anon_sym_LT_LT_DASH] = ACTIONS(4695), + [anon_sym_LT_LT_LT] = ACTIONS(4695), + [sym__special_characters] = ACTIONS(4695), + [anon_sym_DQUOTE] = ACTIONS(4695), + [anon_sym_DOLLAR] = ACTIONS(4697), + [sym_raw_string] = ACTIONS(4695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4695), + [anon_sym_BQUOTE] = ACTIONS(4695), + [anon_sym_LT_LPAREN] = ACTIONS(4695), + [anon_sym_GT_LPAREN] = ACTIONS(4695), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4697), + [anon_sym_LF] = ACTIONS(4695), + [anon_sym_AMP] = ACTIONS(4697), }, [2077] = { - [sym__heredoc_body_middle] = ACTIONS(3934), - [sym__heredoc_body_end] = ACTIONS(3934), - [anon_sym_DOLLAR] = ACTIONS(3936), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5232), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2078] = { - [sym__heredoc_body_middle] = ACTIONS(3942), - [sym__heredoc_body_end] = ACTIONS(3942), - [anon_sym_DOLLAR] = ACTIONS(3944), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5234), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2079] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(5226), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(4731), + [sym__heredoc_body_beginning] = ACTIONS(4731), + [sym_file_descriptor] = ACTIONS(4731), + [sym__concat] = ACTIONS(4731), + [sym_variable_name] = ACTIONS(4731), + [ts_builtin_sym_end] = ACTIONS(4731), + [anon_sym_SEMI] = ACTIONS(4733), + [anon_sym_PIPE] = ACTIONS(4733), + [anon_sym_RPAREN] = ACTIONS(4731), + [anon_sym_SEMI_SEMI] = ACTIONS(4731), + [anon_sym_PIPE_AMP] = ACTIONS(4731), + [anon_sym_AMP_AMP] = ACTIONS(4731), + [anon_sym_PIPE_PIPE] = ACTIONS(4731), + [anon_sym_LT] = ACTIONS(4733), + [anon_sym_GT] = ACTIONS(4733), + [anon_sym_GT_GT] = ACTIONS(4731), + [anon_sym_AMP_GT] = ACTIONS(4733), + [anon_sym_AMP_GT_GT] = ACTIONS(4731), + [anon_sym_LT_AMP] = ACTIONS(4731), + [anon_sym_GT_AMP] = ACTIONS(4731), + [anon_sym_LT_LT] = ACTIONS(4733), + [anon_sym_LT_LT_DASH] = ACTIONS(4731), + [anon_sym_LT_LT_LT] = ACTIONS(4731), + [sym__special_characters] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4731), + [anon_sym_DOLLAR] = ACTIONS(4733), + [sym_raw_string] = ACTIONS(4731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4731), + [anon_sym_BQUOTE] = ACTIONS(4731), + [anon_sym_LT_LPAREN] = ACTIONS(4731), + [anon_sym_GT_LPAREN] = ACTIONS(4731), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4733), + [anon_sym_LF] = ACTIONS(4731), + [anon_sym_AMP] = ACTIONS(4733), }, [2080] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(5228), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(4751), + [sym__heredoc_body_beginning] = ACTIONS(4751), + [sym_file_descriptor] = ACTIONS(4751), + [sym__concat] = ACTIONS(4751), + [sym_variable_name] = ACTIONS(4751), + [ts_builtin_sym_end] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4753), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_SEMI_SEMI] = ACTIONS(4751), + [anon_sym_PIPE_AMP] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_GT_GT] = ACTIONS(4751), + [anon_sym_AMP_GT] = ACTIONS(4753), + [anon_sym_AMP_GT_GT] = ACTIONS(4751), + [anon_sym_LT_AMP] = ACTIONS(4751), + [anon_sym_GT_AMP] = ACTIONS(4751), + [anon_sym_LT_LT] = ACTIONS(4753), + [anon_sym_LT_LT_DASH] = ACTIONS(4751), + [anon_sym_LT_LT_LT] = ACTIONS(4751), + [sym__special_characters] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4753), + [sym_raw_string] = ACTIONS(4751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4751), + [anon_sym_BQUOTE] = ACTIONS(4751), + [anon_sym_LT_LPAREN] = ACTIONS(4751), + [anon_sym_GT_LPAREN] = ACTIONS(4751), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4753), + [anon_sym_LF] = ACTIONS(4751), + [anon_sym_AMP] = ACTIONS(4753), }, [2081] = { - [anon_sym_RBRACE] = ACTIONS(5228), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(4755), + [sym__heredoc_body_beginning] = ACTIONS(4755), + [sym_file_descriptor] = ACTIONS(4755), + [sym__concat] = ACTIONS(4755), + [sym_variable_name] = ACTIONS(4755), + [ts_builtin_sym_end] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4757), + [anon_sym_PIPE] = ACTIONS(4757), + [anon_sym_RPAREN] = ACTIONS(4755), + [anon_sym_SEMI_SEMI] = ACTIONS(4755), + [anon_sym_PIPE_AMP] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4755), + [anon_sym_PIPE_PIPE] = ACTIONS(4755), + [anon_sym_LT] = ACTIONS(4757), + [anon_sym_GT] = ACTIONS(4757), + [anon_sym_GT_GT] = ACTIONS(4755), + [anon_sym_AMP_GT] = ACTIONS(4757), + [anon_sym_AMP_GT_GT] = ACTIONS(4755), + [anon_sym_LT_AMP] = ACTIONS(4755), + [anon_sym_GT_AMP] = ACTIONS(4755), + [anon_sym_LT_LT] = ACTIONS(4757), + [anon_sym_LT_LT_DASH] = ACTIONS(4755), + [anon_sym_LT_LT_LT] = ACTIONS(4755), + [sym__special_characters] = ACTIONS(4755), + [anon_sym_DQUOTE] = ACTIONS(4755), + [anon_sym_DOLLAR] = ACTIONS(4757), + [sym_raw_string] = ACTIONS(4755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4755), + [anon_sym_BQUOTE] = ACTIONS(4755), + [anon_sym_LT_LPAREN] = ACTIONS(4755), + [anon_sym_GT_LPAREN] = ACTIONS(4755), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4757), + [anon_sym_LF] = ACTIONS(4755), + [anon_sym_AMP] = ACTIONS(4757), }, [2082] = { - [sym_concatenation] = STATE(2279), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2279), - [anon_sym_RBRACE] = ACTIONS(5230), - [anon_sym_EQ] = ACTIONS(5232), - [anon_sym_DASH] = ACTIONS(5232), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(5232), - [anon_sym_COLON_QMARK] = ACTIONS(5232), - [anon_sym_COLON_DASH] = ACTIONS(5232), - [anon_sym_PERCENT] = ACTIONS(5232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(5236), + [sym__heredoc_body_beginning] = ACTIONS(5236), + [sym_file_descriptor] = ACTIONS(5236), + [ts_builtin_sym_end] = ACTIONS(5236), + [anon_sym_SEMI] = ACTIONS(5238), + [anon_sym_esac] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5238), + [anon_sym_RPAREN] = ACTIONS(5236), + [anon_sym_SEMI_SEMI] = ACTIONS(5236), + [anon_sym_PIPE_AMP] = ACTIONS(5236), + [anon_sym_AMP_AMP] = ACTIONS(5236), + [anon_sym_PIPE_PIPE] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5238), + [anon_sym_GT] = ACTIONS(5238), + [anon_sym_GT_GT] = ACTIONS(5236), + [anon_sym_AMP_GT] = ACTIONS(5238), + [anon_sym_AMP_GT_GT] = ACTIONS(5236), + [anon_sym_LT_AMP] = ACTIONS(5236), + [anon_sym_GT_AMP] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5238), + [anon_sym_LT_LT_DASH] = ACTIONS(5236), + [anon_sym_LT_LT_LT] = ACTIONS(5236), + [anon_sym_BQUOTE] = ACTIONS(5236), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5238), }, [2083] = { - [sym__heredoc_body_middle] = ACTIONS(3998), - [sym__heredoc_body_end] = ACTIONS(3998), - [anon_sym_DOLLAR] = ACTIONS(4000), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), - [sym_comment] = ACTIONS(55), + [sym_do_group] = STATE(2245), + [sym_compound_statement] = STATE(2245), + [anon_sym_do] = ACTIONS(493), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(57), }, [2084] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5230), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(4687), + [anon_sym_SEMI] = ACTIONS(4689), + [anon_sym_SEMI_SEMI] = ACTIONS(4687), + [anon_sym_AMP_AMP] = ACTIONS(4687), + [anon_sym_PIPE_PIPE] = ACTIONS(4687), + [anon_sym_EQ_TILDE] = ACTIONS(4687), + [anon_sym_EQ_EQ] = ACTIONS(4687), + [anon_sym_EQ] = ACTIONS(4689), + [anon_sym_PLUS_EQ] = ACTIONS(4687), + [anon_sym_LT] = ACTIONS(4689), + [anon_sym_GT] = ACTIONS(4689), + [anon_sym_BANG_EQ] = ACTIONS(4687), + [anon_sym_PLUS] = ACTIONS(4689), + [anon_sym_DASH] = ACTIONS(4689), + [anon_sym_DASH_EQ] = ACTIONS(4687), + [anon_sym_LT_EQ] = ACTIONS(4687), + [anon_sym_GT_EQ] = ACTIONS(4687), + [anon_sym_PLUS_PLUS] = ACTIONS(4687), + [anon_sym_DASH_DASH] = ACTIONS(4687), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4687), + [anon_sym_LF] = ACTIONS(4687), + [anon_sym_AMP] = ACTIONS(4689), }, [2085] = { - [sym_concatenation] = STATE(2280), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2280), - [anon_sym_RBRACE] = ACTIONS(5228), - [anon_sym_EQ] = ACTIONS(5236), - [anon_sym_DASH] = ACTIONS(5236), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(5236), - [anon_sym_COLON_QMARK] = ACTIONS(5236), - [anon_sym_COLON_DASH] = ACTIONS(5236), - [anon_sym_PERCENT] = ACTIONS(5236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(4691), + [anon_sym_SEMI] = ACTIONS(4693), + [anon_sym_SEMI_SEMI] = ACTIONS(4691), + [anon_sym_AMP_AMP] = ACTIONS(4691), + [anon_sym_PIPE_PIPE] = ACTIONS(4691), + [anon_sym_EQ_TILDE] = ACTIONS(4691), + [anon_sym_EQ_EQ] = ACTIONS(4691), + [anon_sym_EQ] = ACTIONS(4693), + [anon_sym_PLUS_EQ] = ACTIONS(4691), + [anon_sym_LT] = ACTIONS(4693), + [anon_sym_GT] = ACTIONS(4693), + [anon_sym_BANG_EQ] = ACTIONS(4691), + [anon_sym_PLUS] = ACTIONS(4693), + [anon_sym_DASH] = ACTIONS(4693), + [anon_sym_DASH_EQ] = ACTIONS(4691), + [anon_sym_LT_EQ] = ACTIONS(4691), + [anon_sym_GT_EQ] = ACTIONS(4691), + [anon_sym_PLUS_PLUS] = ACTIONS(4691), + [anon_sym_DASH_DASH] = ACTIONS(4691), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4691), + [anon_sym_LF] = ACTIONS(4691), + [anon_sym_AMP] = ACTIONS(4693), }, [2086] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5228), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(4695), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym_SEMI_SEMI] = ACTIONS(4695), + [anon_sym_AMP_AMP] = ACTIONS(4695), + [anon_sym_PIPE_PIPE] = ACTIONS(4695), + [anon_sym_EQ_TILDE] = ACTIONS(4695), + [anon_sym_EQ_EQ] = ACTIONS(4695), + [anon_sym_EQ] = ACTIONS(4697), + [anon_sym_PLUS_EQ] = ACTIONS(4695), + [anon_sym_LT] = ACTIONS(4697), + [anon_sym_GT] = ACTIONS(4697), + [anon_sym_BANG_EQ] = ACTIONS(4695), + [anon_sym_PLUS] = ACTIONS(4697), + [anon_sym_DASH] = ACTIONS(4697), + [anon_sym_DASH_EQ] = ACTIONS(4695), + [anon_sym_LT_EQ] = ACTIONS(4695), + [anon_sym_GT_EQ] = ACTIONS(4695), + [anon_sym_PLUS_PLUS] = ACTIONS(4695), + [anon_sym_DASH_DASH] = ACTIONS(4695), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4695), + [anon_sym_LF] = ACTIONS(4695), + [anon_sym_AMP] = ACTIONS(4697), }, [2087] = { - [sym__heredoc_body_middle] = ACTIONS(4043), - [sym__heredoc_body_end] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(4045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5240), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2088] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5240), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5242), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2089] = { - [sym__concat] = ACTIONS(3934), - [anon_sym_RPAREN] = ACTIONS(3934), - [sym__special_characters] = ACTIONS(3934), - [anon_sym_DQUOTE] = ACTIONS(3934), - [anon_sym_DOLLAR] = ACTIONS(3936), - [sym_raw_string] = ACTIONS(3934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), - [anon_sym_BQUOTE] = ACTIONS(3934), - [anon_sym_LT_LPAREN] = ACTIONS(3934), - [anon_sym_GT_LPAREN] = ACTIONS(3934), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3934), + [sym__concat] = ACTIONS(4731), + [anon_sym_SEMI] = ACTIONS(4733), + [anon_sym_SEMI_SEMI] = ACTIONS(4731), + [anon_sym_AMP_AMP] = ACTIONS(4731), + [anon_sym_PIPE_PIPE] = ACTIONS(4731), + [anon_sym_EQ_TILDE] = ACTIONS(4731), + [anon_sym_EQ_EQ] = ACTIONS(4731), + [anon_sym_EQ] = ACTIONS(4733), + [anon_sym_PLUS_EQ] = ACTIONS(4731), + [anon_sym_LT] = ACTIONS(4733), + [anon_sym_GT] = ACTIONS(4733), + [anon_sym_BANG_EQ] = ACTIONS(4731), + [anon_sym_PLUS] = ACTIONS(4733), + [anon_sym_DASH] = ACTIONS(4733), + [anon_sym_DASH_EQ] = ACTIONS(4731), + [anon_sym_LT_EQ] = ACTIONS(4731), + [anon_sym_GT_EQ] = ACTIONS(4731), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4731), + [anon_sym_LF] = ACTIONS(4731), + [anon_sym_AMP] = ACTIONS(4733), }, [2090] = { - [sym__concat] = ACTIONS(3942), - [anon_sym_RPAREN] = ACTIONS(3942), - [sym__special_characters] = ACTIONS(3942), - [anon_sym_DQUOTE] = ACTIONS(3942), - [anon_sym_DOLLAR] = ACTIONS(3944), - [sym_raw_string] = ACTIONS(3942), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), - [anon_sym_BQUOTE] = ACTIONS(3942), - [anon_sym_LT_LPAREN] = ACTIONS(3942), - [anon_sym_GT_LPAREN] = ACTIONS(3942), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3942), + [sym__concat] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4753), + [anon_sym_SEMI_SEMI] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [anon_sym_EQ_TILDE] = ACTIONS(4751), + [anon_sym_EQ_EQ] = ACTIONS(4751), + [anon_sym_EQ] = ACTIONS(4753), + [anon_sym_PLUS_EQ] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_BANG_EQ] = ACTIONS(4751), + [anon_sym_PLUS] = ACTIONS(4753), + [anon_sym_DASH] = ACTIONS(4753), + [anon_sym_DASH_EQ] = ACTIONS(4751), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_PLUS_PLUS] = ACTIONS(4751), + [anon_sym_DASH_DASH] = ACTIONS(4751), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4751), + [anon_sym_LF] = ACTIONS(4751), + [anon_sym_AMP] = ACTIONS(4753), }, [2091] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(5242), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4757), + [anon_sym_SEMI_SEMI] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4755), + [anon_sym_PIPE_PIPE] = ACTIONS(4755), + [anon_sym_EQ_TILDE] = ACTIONS(4755), + [anon_sym_EQ_EQ] = ACTIONS(4755), + [anon_sym_EQ] = ACTIONS(4757), + [anon_sym_PLUS_EQ] = ACTIONS(4755), + [anon_sym_LT] = ACTIONS(4757), + [anon_sym_GT] = ACTIONS(4757), + [anon_sym_BANG_EQ] = ACTIONS(4755), + [anon_sym_PLUS] = ACTIONS(4757), + [anon_sym_DASH] = ACTIONS(4757), + [anon_sym_DASH_EQ] = ACTIONS(4755), + [anon_sym_LT_EQ] = ACTIONS(4755), + [anon_sym_GT_EQ] = ACTIONS(4755), + [anon_sym_PLUS_PLUS] = ACTIONS(4755), + [anon_sym_DASH_DASH] = ACTIONS(4755), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4755), + [anon_sym_LF] = ACTIONS(4755), + [anon_sym_AMP] = ACTIONS(4757), }, [2092] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(5244), - [sym_comment] = ACTIONS(55), + [sym_do_group] = STATE(2245), + [sym_compound_statement] = STATE(2245), + [anon_sym_SEMI] = ACTIONS(5244), + [anon_sym_do] = ACTIONS(493), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(57), }, [2093] = { - [anon_sym_RBRACE] = ACTIONS(5244), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(3921), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym_SEMI_SEMI] = ACTIONS(3921), + [sym__special_characters] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_DOLLAR] = ACTIONS(3923), + [sym_raw_string] = ACTIONS(3921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3921), + [anon_sym_BQUOTE] = ACTIONS(3921), + [anon_sym_LT_LPAREN] = ACTIONS(3921), + [anon_sym_GT_LPAREN] = ACTIONS(3921), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3923), + [anon_sym_LF] = ACTIONS(3921), + [anon_sym_AMP] = ACTIONS(3921), }, [2094] = { - [sym_concatenation] = STATE(2285), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2285), - [anon_sym_RBRACE] = ACTIONS(5246), - [anon_sym_EQ] = ACTIONS(5248), - [anon_sym_DASH] = ACTIONS(5248), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5250), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(5248), - [anon_sym_COLON_QMARK] = ACTIONS(5248), - [anon_sym_COLON_DASH] = ACTIONS(5248), - [anon_sym_PERCENT] = ACTIONS(5248), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(3929), + [anon_sym_SEMI] = ACTIONS(3931), + [anon_sym_SEMI_SEMI] = ACTIONS(3929), + [sym__special_characters] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_DOLLAR] = ACTIONS(3931), + [sym_raw_string] = ACTIONS(3929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3929), + [anon_sym_BQUOTE] = ACTIONS(3929), + [anon_sym_LT_LPAREN] = ACTIONS(3929), + [anon_sym_GT_LPAREN] = ACTIONS(3929), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3931), + [anon_sym_LF] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), }, [2095] = { - [sym__concat] = ACTIONS(3998), - [anon_sym_RPAREN] = ACTIONS(3998), - [sym__special_characters] = ACTIONS(3998), - [anon_sym_DQUOTE] = ACTIONS(3998), - [anon_sym_DOLLAR] = ACTIONS(4000), - [sym_raw_string] = ACTIONS(3998), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), - [anon_sym_BQUOTE] = ACTIONS(3998), - [anon_sym_LT_LPAREN] = ACTIONS(3998), - [anon_sym_GT_LPAREN] = ACTIONS(3998), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3998), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(5246), + [sym_comment] = ACTIONS(57), }, [2096] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5246), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(5248), + [sym_comment] = ACTIONS(57), }, [2097] = { - [sym_concatenation] = STATE(2286), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2286), - [anon_sym_RBRACE] = ACTIONS(5244), + [anon_sym_RBRACE] = ACTIONS(5248), + [sym_comment] = ACTIONS(57), + }, + [2098] = { + [sym_concatenation] = STATE(2252), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2252), + [anon_sym_RBRACE] = ACTIONS(5250), [anon_sym_EQ] = ACTIONS(5252), [anon_sym_DASH] = ACTIONS(5252), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), [anon_sym_POUND] = ACTIONS(5254), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), [anon_sym_COLON] = ACTIONS(5252), [anon_sym_COLON_QMARK] = ACTIONS(5252), [anon_sym_COLON_DASH] = ACTIONS(5252), [anon_sym_PERCENT] = ACTIONS(5252), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2098] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5244), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2099] = { - [sym__concat] = ACTIONS(4043), - [anon_sym_RPAREN] = ACTIONS(4043), - [sym__special_characters] = ACTIONS(4043), - [anon_sym_DQUOTE] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(4045), - [sym_raw_string] = ACTIONS(4043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), - [anon_sym_BQUOTE] = ACTIONS(4043), - [anon_sym_LT_LPAREN] = ACTIONS(4043), - [anon_sym_GT_LPAREN] = ACTIONS(4043), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4043), + [sym__concat] = ACTIONS(3985), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3987), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3985), }, [2100] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5256), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5250), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2101] = { - [sym__concat] = ACTIONS(4065), - [anon_sym_RPAREN] = ACTIONS(4065), - [sym__special_characters] = ACTIONS(4065), - [anon_sym_DQUOTE] = ACTIONS(4065), - [anon_sym_DOLLAR] = ACTIONS(4067), - [sym_raw_string] = ACTIONS(4065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), - [anon_sym_BQUOTE] = ACTIONS(4065), - [anon_sym_LT_LPAREN] = ACTIONS(4065), - [anon_sym_GT_LPAREN] = ACTIONS(4065), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4065), + [sym_concatenation] = STATE(2253), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2253), + [anon_sym_RBRACE] = ACTIONS(5248), + [anon_sym_EQ] = ACTIONS(5256), + [anon_sym_DASH] = ACTIONS(5256), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5258), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(5256), + [anon_sym_COLON_QMARK] = ACTIONS(5256), + [anon_sym_COLON_DASH] = ACTIONS(5256), + [anon_sym_PERCENT] = ACTIONS(5256), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2102] = { - [sym__concat] = ACTIONS(4089), - [anon_sym_RPAREN] = ACTIONS(4089), - [sym__special_characters] = ACTIONS(4089), - [anon_sym_DQUOTE] = ACTIONS(4089), - [anon_sym_DOLLAR] = ACTIONS(4091), - [sym_raw_string] = ACTIONS(4089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), - [anon_sym_BQUOTE] = ACTIONS(4089), - [anon_sym_LT_LPAREN] = ACTIONS(4089), - [anon_sym_GT_LPAREN] = ACTIONS(4089), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4089), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5248), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2103] = { - [sym_file_descriptor] = ACTIONS(4710), - [sym__concat] = ACTIONS(4710), - [sym_variable_name] = ACTIONS(4710), - [ts_builtin_sym_end] = ACTIONS(4710), - [anon_sym_SEMI] = ACTIONS(4712), - [anon_sym_PIPE] = ACTIONS(4712), - [anon_sym_RPAREN] = ACTIONS(4710), - [anon_sym_SEMI_SEMI] = ACTIONS(4710), - [anon_sym_PIPE_AMP] = ACTIONS(4710), - [anon_sym_AMP_AMP] = ACTIONS(4710), - [anon_sym_PIPE_PIPE] = ACTIONS(4710), - [anon_sym_LT] = ACTIONS(4712), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_GT_GT] = ACTIONS(4710), - [anon_sym_AMP_GT] = ACTIONS(4712), - [anon_sym_AMP_GT_GT] = ACTIONS(4710), - [anon_sym_LT_AMP] = ACTIONS(4710), - [anon_sym_GT_AMP] = ACTIONS(4710), - [sym__special_characters] = ACTIONS(4710), - [anon_sym_DQUOTE] = ACTIONS(4710), - [anon_sym_DOLLAR] = ACTIONS(4712), - [sym_raw_string] = ACTIONS(4710), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), - [anon_sym_BQUOTE] = ACTIONS(4710), - [anon_sym_LT_LPAREN] = ACTIONS(4710), - [anon_sym_GT_LPAREN] = ACTIONS(4710), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4712), - [anon_sym_LF] = ACTIONS(4710), - [anon_sym_AMP] = ACTIONS(4712), + [sym__concat] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_SEMI_SEMI] = ACTIONS(4030), + [sym__special_characters] = ACTIONS(4030), + [anon_sym_DQUOTE] = ACTIONS(4030), + [anon_sym_DOLLAR] = ACTIONS(4032), + [sym_raw_string] = ACTIONS(4030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4030), + [anon_sym_BQUOTE] = ACTIONS(4030), + [anon_sym_LT_LPAREN] = ACTIONS(4030), + [anon_sym_GT_LPAREN] = ACTIONS(4030), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4032), + [anon_sym_LF] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4030), }, [2104] = { - [sym_file_descriptor] = ACTIONS(4714), - [sym__concat] = ACTIONS(4714), - [sym_variable_name] = ACTIONS(4714), - [ts_builtin_sym_end] = ACTIONS(4714), - [anon_sym_SEMI] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4716), - [anon_sym_RPAREN] = ACTIONS(4714), - [anon_sym_SEMI_SEMI] = ACTIONS(4714), - [anon_sym_PIPE_AMP] = ACTIONS(4714), - [anon_sym_AMP_AMP] = ACTIONS(4714), - [anon_sym_PIPE_PIPE] = ACTIONS(4714), - [anon_sym_LT] = ACTIONS(4716), - [anon_sym_GT] = ACTIONS(4716), - [anon_sym_GT_GT] = ACTIONS(4714), - [anon_sym_AMP_GT] = ACTIONS(4716), - [anon_sym_AMP_GT_GT] = ACTIONS(4714), - [anon_sym_LT_AMP] = ACTIONS(4714), - [anon_sym_GT_AMP] = ACTIONS(4714), - [sym__special_characters] = ACTIONS(4714), - [anon_sym_DQUOTE] = ACTIONS(4714), - [anon_sym_DOLLAR] = ACTIONS(4716), - [sym_raw_string] = ACTIONS(4714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), - [anon_sym_BQUOTE] = ACTIONS(4714), - [anon_sym_LT_LPAREN] = ACTIONS(4714), - [anon_sym_GT_LPAREN] = ACTIONS(4714), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4716), - [anon_sym_LF] = ACTIONS(4714), - [anon_sym_AMP] = ACTIONS(4716), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5260), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2105] = { - [sym_file_descriptor] = ACTIONS(4718), - [sym__concat] = ACTIONS(4718), - [sym_variable_name] = ACTIONS(4718), - [ts_builtin_sym_end] = ACTIONS(4718), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_RPAREN] = ACTIONS(4718), - [anon_sym_SEMI_SEMI] = ACTIONS(4718), - [anon_sym_PIPE_AMP] = ACTIONS(4718), - [anon_sym_AMP_AMP] = ACTIONS(4718), - [anon_sym_PIPE_PIPE] = ACTIONS(4718), - [anon_sym_LT] = ACTIONS(4720), - [anon_sym_GT] = ACTIONS(4720), - [anon_sym_GT_GT] = ACTIONS(4718), - [anon_sym_AMP_GT] = ACTIONS(4720), - [anon_sym_AMP_GT_GT] = ACTIONS(4718), - [anon_sym_LT_AMP] = ACTIONS(4718), - [anon_sym_GT_AMP] = ACTIONS(4718), - [sym__special_characters] = ACTIONS(4718), - [anon_sym_DQUOTE] = ACTIONS(4718), - [anon_sym_DOLLAR] = ACTIONS(4720), - [sym_raw_string] = ACTIONS(4718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), - [anon_sym_BQUOTE] = ACTIONS(4718), - [anon_sym_LT_LPAREN] = ACTIONS(4718), - [anon_sym_GT_LPAREN] = ACTIONS(4718), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4720), - [anon_sym_LF] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), + [sym__concat] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4066), + [anon_sym_SEMI_SEMI] = ACTIONS(4064), + [sym__special_characters] = ACTIONS(4064), + [anon_sym_DQUOTE] = ACTIONS(4064), + [anon_sym_DOLLAR] = ACTIONS(4066), + [sym_raw_string] = ACTIONS(4064), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4064), + [anon_sym_BQUOTE] = ACTIONS(4064), + [anon_sym_LT_LPAREN] = ACTIONS(4064), + [anon_sym_GT_LPAREN] = ACTIONS(4064), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4066), + [anon_sym_LF] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), }, [2106] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5258), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(5262), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [2107] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5260), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(5262), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [2108] = { - [sym_file_descriptor] = ACTIONS(4754), - [sym__concat] = ACTIONS(4754), - [sym_variable_name] = ACTIONS(4754), - [ts_builtin_sym_end] = ACTIONS(4754), - [anon_sym_SEMI] = ACTIONS(4756), - [anon_sym_PIPE] = ACTIONS(4756), - [anon_sym_RPAREN] = ACTIONS(4754), - [anon_sym_SEMI_SEMI] = ACTIONS(4754), - [anon_sym_PIPE_AMP] = ACTIONS(4754), - [anon_sym_AMP_AMP] = ACTIONS(4754), - [anon_sym_PIPE_PIPE] = ACTIONS(4754), - [anon_sym_LT] = ACTIONS(4756), - [anon_sym_GT] = ACTIONS(4756), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_AMP_GT] = ACTIONS(4756), - [anon_sym_AMP_GT_GT] = ACTIONS(4754), - [anon_sym_LT_AMP] = ACTIONS(4754), - [anon_sym_GT_AMP] = ACTIONS(4754), - [sym__special_characters] = ACTIONS(4754), - [anon_sym_DQUOTE] = ACTIONS(4754), - [anon_sym_DOLLAR] = ACTIONS(4756), - [sym_raw_string] = ACTIONS(4754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), - [anon_sym_BQUOTE] = ACTIONS(4754), - [anon_sym_LT_LPAREN] = ACTIONS(4754), - [anon_sym_GT_LPAREN] = ACTIONS(4754), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4756), - [anon_sym_LF] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4756), + [sym__concat] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym_SEMI_SEMI] = ACTIONS(4070), + [sym__special_characters] = ACTIONS(4070), + [anon_sym_DQUOTE] = ACTIONS(4070), + [anon_sym_DOLLAR] = ACTIONS(4072), + [sym_raw_string] = ACTIONS(4070), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4070), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4070), + [anon_sym_BQUOTE] = ACTIONS(4070), + [anon_sym_LT_LPAREN] = ACTIONS(4070), + [anon_sym_GT_LPAREN] = ACTIONS(4070), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4072), + [anon_sym_LF] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4070), }, [2109] = { - [ts_builtin_sym_end] = ACTIONS(3724), - [anon_sym_SEMI] = ACTIONS(3726), - [anon_sym_esac] = ACTIONS(3724), - [anon_sym_PIPE] = ACTIONS(3726), - [anon_sym_RPAREN] = ACTIONS(3724), - [anon_sym_SEMI_SEMI] = ACTIONS(3724), - [anon_sym_PIPE_AMP] = ACTIONS(3724), - [anon_sym_AMP_AMP] = ACTIONS(3724), - [anon_sym_PIPE_PIPE] = ACTIONS(3724), - [anon_sym_BQUOTE] = ACTIONS(3724), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3724), - [anon_sym_AMP] = ACTIONS(3726), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(5264), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [2110] = { - [ts_builtin_sym_end] = ACTIONS(5262), - [anon_sym_SEMI] = ACTIONS(5264), - [anon_sym_esac] = ACTIONS(5262), - [anon_sym_PIPE] = ACTIONS(5264), - [anon_sym_RPAREN] = ACTIONS(5262), - [anon_sym_SEMI_SEMI] = ACTIONS(5262), - [anon_sym_PIPE_AMP] = ACTIONS(5262), - [anon_sym_AMP_AMP] = ACTIONS(5262), - [anon_sym_PIPE_PIPE] = ACTIONS(5262), - [anon_sym_BQUOTE] = ACTIONS(5262), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5262), - [anon_sym_AMP] = ACTIONS(5264), + [sym__concat] = ACTIONS(4687), + [anon_sym_PIPE] = ACTIONS(4689), + [anon_sym_RPAREN] = ACTIONS(4687), + [anon_sym_AMP_AMP] = ACTIONS(4687), + [anon_sym_PIPE_PIPE] = ACTIONS(4687), + [anon_sym_EQ_TILDE] = ACTIONS(4687), + [anon_sym_EQ_EQ] = ACTIONS(4687), + [anon_sym_EQ] = ACTIONS(4689), + [anon_sym_PLUS_EQ] = ACTIONS(4687), + [anon_sym_LT] = ACTIONS(4689), + [anon_sym_GT] = ACTIONS(4689), + [anon_sym_BANG_EQ] = ACTIONS(4687), + [anon_sym_PLUS] = ACTIONS(4689), + [anon_sym_DASH] = ACTIONS(4689), + [anon_sym_DASH_EQ] = ACTIONS(4687), + [anon_sym_LT_EQ] = ACTIONS(4687), + [anon_sym_GT_EQ] = ACTIONS(4687), + [anon_sym_PLUS_PLUS] = ACTIONS(4687), + [anon_sym_DASH_DASH] = ACTIONS(4687), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4687), }, [2111] = { - [sym_do_group] = STATE(2290), - [sym_compound_statement] = STATE(2290), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(3350), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(4691), + [anon_sym_PIPE] = ACTIONS(4693), + [anon_sym_RPAREN] = ACTIONS(4691), + [anon_sym_AMP_AMP] = ACTIONS(4691), + [anon_sym_PIPE_PIPE] = ACTIONS(4691), + [anon_sym_EQ_TILDE] = ACTIONS(4691), + [anon_sym_EQ_EQ] = ACTIONS(4691), + [anon_sym_EQ] = ACTIONS(4693), + [anon_sym_PLUS_EQ] = ACTIONS(4691), + [anon_sym_LT] = ACTIONS(4693), + [anon_sym_GT] = ACTIONS(4693), + [anon_sym_BANG_EQ] = ACTIONS(4691), + [anon_sym_PLUS] = ACTIONS(4693), + [anon_sym_DASH] = ACTIONS(4693), + [anon_sym_DASH_EQ] = ACTIONS(4691), + [anon_sym_LT_EQ] = ACTIONS(4691), + [anon_sym_GT_EQ] = ACTIONS(4691), + [anon_sym_PLUS_PLUS] = ACTIONS(4691), + [anon_sym_DASH_DASH] = ACTIONS(4691), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4691), }, [2112] = { - [sym__concat] = ACTIONS(4710), - [anon_sym_SEMI] = ACTIONS(4712), - [anon_sym_esac] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4712), - [anon_sym_SEMI_SEMI] = ACTIONS(4710), - [anon_sym_PIPE_AMP] = ACTIONS(4710), - [anon_sym_AMP_AMP] = ACTIONS(4710), - [anon_sym_PIPE_PIPE] = ACTIONS(4710), - [anon_sym_EQ_TILDE] = ACTIONS(4710), - [anon_sym_EQ_EQ] = ACTIONS(4710), - [anon_sym_EQ] = ACTIONS(4712), - [anon_sym_PLUS_EQ] = ACTIONS(4710), - [anon_sym_LT] = ACTIONS(4712), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_BANG_EQ] = ACTIONS(4710), - [anon_sym_PLUS] = ACTIONS(4712), - [anon_sym_DASH] = ACTIONS(4712), - [anon_sym_DASH_EQ] = ACTIONS(4710), - [anon_sym_LT_EQ] = ACTIONS(4710), - [anon_sym_GT_EQ] = ACTIONS(4710), - [anon_sym_PLUS_PLUS] = ACTIONS(4710), - [anon_sym_DASH_DASH] = ACTIONS(4710), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4710), - [anon_sym_LF] = ACTIONS(4710), - [anon_sym_AMP] = ACTIONS(4712), + [sym__concat] = ACTIONS(4695), + [anon_sym_PIPE] = ACTIONS(4697), + [anon_sym_RPAREN] = ACTIONS(4695), + [anon_sym_AMP_AMP] = ACTIONS(4695), + [anon_sym_PIPE_PIPE] = ACTIONS(4695), + [anon_sym_EQ_TILDE] = ACTIONS(4695), + [anon_sym_EQ_EQ] = ACTIONS(4695), + [anon_sym_EQ] = ACTIONS(4697), + [anon_sym_PLUS_EQ] = ACTIONS(4695), + [anon_sym_LT] = ACTIONS(4697), + [anon_sym_GT] = ACTIONS(4697), + [anon_sym_BANG_EQ] = ACTIONS(4695), + [anon_sym_PLUS] = ACTIONS(4697), + [anon_sym_DASH] = ACTIONS(4697), + [anon_sym_DASH_EQ] = ACTIONS(4695), + [anon_sym_LT_EQ] = ACTIONS(4695), + [anon_sym_GT_EQ] = ACTIONS(4695), + [anon_sym_PLUS_PLUS] = ACTIONS(4695), + [anon_sym_DASH_DASH] = ACTIONS(4695), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4695), }, [2113] = { - [sym__concat] = ACTIONS(4714), - [anon_sym_SEMI] = ACTIONS(4716), - [anon_sym_esac] = ACTIONS(4714), - [anon_sym_PIPE] = ACTIONS(4716), - [anon_sym_SEMI_SEMI] = ACTIONS(4714), - [anon_sym_PIPE_AMP] = ACTIONS(4714), - [anon_sym_AMP_AMP] = ACTIONS(4714), - [anon_sym_PIPE_PIPE] = ACTIONS(4714), - [anon_sym_EQ_TILDE] = ACTIONS(4714), - [anon_sym_EQ_EQ] = ACTIONS(4714), - [anon_sym_EQ] = ACTIONS(4716), - [anon_sym_PLUS_EQ] = ACTIONS(4714), - [anon_sym_LT] = ACTIONS(4716), - [anon_sym_GT] = ACTIONS(4716), - [anon_sym_BANG_EQ] = ACTIONS(4714), - [anon_sym_PLUS] = ACTIONS(4716), - [anon_sym_DASH] = ACTIONS(4716), - [anon_sym_DASH_EQ] = ACTIONS(4714), - [anon_sym_LT_EQ] = ACTIONS(4714), - [anon_sym_GT_EQ] = ACTIONS(4714), - [anon_sym_PLUS_PLUS] = ACTIONS(4714), - [anon_sym_DASH_DASH] = ACTIONS(4714), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4714), - [anon_sym_LF] = ACTIONS(4714), - [anon_sym_AMP] = ACTIONS(4716), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5266), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2114] = { - [sym__concat] = ACTIONS(4718), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_esac] = ACTIONS(4718), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_SEMI_SEMI] = ACTIONS(4718), - [anon_sym_PIPE_AMP] = ACTIONS(4718), - [anon_sym_AMP_AMP] = ACTIONS(4718), - [anon_sym_PIPE_PIPE] = ACTIONS(4718), - [anon_sym_EQ_TILDE] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4718), - [anon_sym_EQ] = ACTIONS(4720), - [anon_sym_PLUS_EQ] = ACTIONS(4718), - [anon_sym_LT] = ACTIONS(4720), - [anon_sym_GT] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4718), - [anon_sym_PLUS] = ACTIONS(4720), - [anon_sym_DASH] = ACTIONS(4720), - [anon_sym_DASH_EQ] = ACTIONS(4718), - [anon_sym_LT_EQ] = ACTIONS(4718), - [anon_sym_GT_EQ] = ACTIONS(4718), - [anon_sym_PLUS_PLUS] = ACTIONS(4718), - [anon_sym_DASH_DASH] = ACTIONS(4718), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4718), - [anon_sym_LF] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5268), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2115] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5266), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(4731), + [anon_sym_PIPE] = ACTIONS(4733), + [anon_sym_RPAREN] = ACTIONS(4731), + [anon_sym_AMP_AMP] = ACTIONS(4731), + [anon_sym_PIPE_PIPE] = ACTIONS(4731), + [anon_sym_EQ_TILDE] = ACTIONS(4731), + [anon_sym_EQ_EQ] = ACTIONS(4731), + [anon_sym_EQ] = ACTIONS(4733), + [anon_sym_PLUS_EQ] = ACTIONS(4731), + [anon_sym_LT] = ACTIONS(4733), + [anon_sym_GT] = ACTIONS(4733), + [anon_sym_BANG_EQ] = ACTIONS(4731), + [anon_sym_PLUS] = ACTIONS(4733), + [anon_sym_DASH] = ACTIONS(4733), + [anon_sym_DASH_EQ] = ACTIONS(4731), + [anon_sym_LT_EQ] = ACTIONS(4731), + [anon_sym_GT_EQ] = ACTIONS(4731), + [anon_sym_PLUS_PLUS] = ACTIONS(4731), + [anon_sym_DASH_DASH] = ACTIONS(4731), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4731), }, [2116] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5268), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__concat] = ACTIONS(4751), + [anon_sym_PIPE] = ACTIONS(4753), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [anon_sym_EQ_TILDE] = ACTIONS(4751), + [anon_sym_EQ_EQ] = ACTIONS(4751), + [anon_sym_EQ] = ACTIONS(4753), + [anon_sym_PLUS_EQ] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_BANG_EQ] = ACTIONS(4751), + [anon_sym_PLUS] = ACTIONS(4753), + [anon_sym_DASH] = ACTIONS(4753), + [anon_sym_DASH_EQ] = ACTIONS(4751), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_PLUS_PLUS] = ACTIONS(4751), + [anon_sym_DASH_DASH] = ACTIONS(4751), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4751), }, [2117] = { - [sym__concat] = ACTIONS(4754), - [anon_sym_SEMI] = ACTIONS(4756), - [anon_sym_esac] = ACTIONS(4754), - [anon_sym_PIPE] = ACTIONS(4756), - [anon_sym_SEMI_SEMI] = ACTIONS(4754), - [anon_sym_PIPE_AMP] = ACTIONS(4754), - [anon_sym_AMP_AMP] = ACTIONS(4754), - [anon_sym_PIPE_PIPE] = ACTIONS(4754), - [anon_sym_EQ_TILDE] = ACTIONS(4754), - [anon_sym_EQ_EQ] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4756), - [anon_sym_PLUS_EQ] = ACTIONS(4754), - [anon_sym_LT] = ACTIONS(4756), - [anon_sym_GT] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4754), - [anon_sym_PLUS] = ACTIONS(4756), - [anon_sym_DASH] = ACTIONS(4756), - [anon_sym_DASH_EQ] = ACTIONS(4754), - [anon_sym_LT_EQ] = ACTIONS(4754), - [anon_sym_GT_EQ] = ACTIONS(4754), - [anon_sym_PLUS_PLUS] = ACTIONS(4754), - [anon_sym_DASH_DASH] = ACTIONS(4754), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4754), - [anon_sym_LF] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4756), + [sym__concat] = ACTIONS(4755), + [anon_sym_PIPE] = ACTIONS(4757), + [anon_sym_RPAREN] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4755), + [anon_sym_PIPE_PIPE] = ACTIONS(4755), + [anon_sym_EQ_TILDE] = ACTIONS(4755), + [anon_sym_EQ_EQ] = ACTIONS(4755), + [anon_sym_EQ] = ACTIONS(4757), + [anon_sym_PLUS_EQ] = ACTIONS(4755), + [anon_sym_LT] = ACTIONS(4757), + [anon_sym_GT] = ACTIONS(4757), + [anon_sym_BANG_EQ] = ACTIONS(4755), + [anon_sym_PLUS] = ACTIONS(4757), + [anon_sym_DASH] = ACTIONS(4757), + [anon_sym_DASH_EQ] = ACTIONS(4755), + [anon_sym_LT_EQ] = ACTIONS(4755), + [anon_sym_GT_EQ] = ACTIONS(4755), + [anon_sym_PLUS_PLUS] = ACTIONS(4755), + [anon_sym_DASH_DASH] = ACTIONS(4755), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(4755), }, [2118] = { - [sym_do_group] = STATE(2290), - [sym_compound_statement] = STATE(2290), - [anon_sym_SEMI] = ACTIONS(5270), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(3350), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(5168), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5168), + [anon_sym_AMP_AMP] = ACTIONS(5168), + [anon_sym_PIPE_PIPE] = ACTIONS(5168), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5168), + [anon_sym_EQ_TILDE] = ACTIONS(5168), + [anon_sym_EQ_EQ] = ACTIONS(5168), + [anon_sym_EQ] = ACTIONS(5170), + [anon_sym_PLUS_EQ] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5170), + [anon_sym_GT] = ACTIONS(5170), + [anon_sym_BANG_EQ] = ACTIONS(5168), + [anon_sym_PLUS] = ACTIONS(5170), + [anon_sym_DASH] = ACTIONS(5170), + [anon_sym_DASH_EQ] = ACTIONS(5168), + [anon_sym_LT_EQ] = ACTIONS(5168), + [anon_sym_GT_EQ] = ACTIONS(5168), + [anon_sym_PLUS_PLUS] = ACTIONS(5168), + [anon_sym_DASH_DASH] = ACTIONS(5168), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5168), }, [2119] = { - [sym__concat] = ACTIONS(3934), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym_SEMI_SEMI] = ACTIONS(3934), - [sym__special_characters] = ACTIONS(3934), - [anon_sym_DQUOTE] = ACTIONS(3934), - [anon_sym_DOLLAR] = ACTIONS(3936), - [sym_raw_string] = ACTIONS(3934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), - [anon_sym_BQUOTE] = ACTIONS(3934), - [anon_sym_LT_LPAREN] = ACTIONS(3934), - [anon_sym_GT_LPAREN] = ACTIONS(3934), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3936), - [anon_sym_LF] = ACTIONS(3934), - [anon_sym_AMP] = ACTIONS(3934), + [sym__concat] = ACTIONS(5172), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5172), + [anon_sym_AMP_AMP] = ACTIONS(5172), + [anon_sym_PIPE_PIPE] = ACTIONS(5172), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5172), + [anon_sym_EQ_TILDE] = ACTIONS(5172), + [anon_sym_EQ_EQ] = ACTIONS(5172), + [anon_sym_EQ] = ACTIONS(5174), + [anon_sym_PLUS_EQ] = ACTIONS(5172), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_BANG_EQ] = ACTIONS(5172), + [anon_sym_PLUS] = ACTIONS(5174), + [anon_sym_DASH] = ACTIONS(5174), + [anon_sym_DASH_EQ] = ACTIONS(5172), + [anon_sym_LT_EQ] = ACTIONS(5172), + [anon_sym_GT_EQ] = ACTIONS(5172), + [anon_sym_PLUS_PLUS] = ACTIONS(5172), + [anon_sym_DASH_DASH] = ACTIONS(5172), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5172), }, [2120] = { - [sym__concat] = ACTIONS(3942), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym_SEMI_SEMI] = ACTIONS(3942), - [sym__special_characters] = ACTIONS(3942), - [anon_sym_DQUOTE] = ACTIONS(3942), - [anon_sym_DOLLAR] = ACTIONS(3944), - [sym_raw_string] = ACTIONS(3942), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), - [anon_sym_BQUOTE] = ACTIONS(3942), - [anon_sym_LT_LPAREN] = ACTIONS(3942), - [anon_sym_GT_LPAREN] = ACTIONS(3942), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3944), - [anon_sym_LF] = ACTIONS(3942), - [anon_sym_AMP] = ACTIONS(3942), + [sym_concatenation] = STATE(2259), + [sym_string] = STATE(2264), + [sym_array] = STATE(2259), + [sym_simple_expansion] = STATE(2264), + [sym_string_expansion] = STATE(2264), + [sym_expansion] = STATE(2264), + [sym_command_substitution] = STATE(2264), + [sym_process_substitution] = STATE(2264), + [sym__empty_value] = ACTIONS(5270), + [anon_sym_LPAREN] = ACTIONS(5272), + [sym__special_characters] = ACTIONS(5274), + [anon_sym_DQUOTE] = ACTIONS(5276), + [anon_sym_DOLLAR] = ACTIONS(5278), + [sym_raw_string] = ACTIONS(5280), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5282), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5284), + [anon_sym_BQUOTE] = ACTIONS(5286), + [anon_sym_LT_LPAREN] = ACTIONS(5288), + [anon_sym_GT_LPAREN] = ACTIONS(5288), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5280), }, [2121] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(5272), - [sym_comment] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(65), + [anon_sym_EQ] = ACTIONS(5290), + [anon_sym_PLUS_EQ] = ACTIONS(5290), + [sym_comment] = ACTIONS(57), }, [2122] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(5274), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(2271), + [sym__simple_heredoc_body] = ACTIONS(669), + [sym__heredoc_body_beginning] = ACTIONS(669), + [sym_file_descriptor] = ACTIONS(669), + [sym__concat] = ACTIONS(5292), + [sym_variable_name] = ACTIONS(669), + [anon_sym_SEMI] = ACTIONS(673), + [anon_sym_esac] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(669), + [anon_sym_AMP_GT] = ACTIONS(673), + [anon_sym_AMP_GT_GT] = ACTIONS(669), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [anon_sym_LT_LT_LT] = ACTIONS(669), + [sym__special_characters] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(673), + [sym_raw_string] = ACTIONS(669), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(669), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), + [anon_sym_BQUOTE] = ACTIONS(669), + [anon_sym_LT_LPAREN] = ACTIONS(669), + [anon_sym_GT_LPAREN] = ACTIONS(669), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(673), + [sym_word] = ACTIONS(673), + [anon_sym_LF] = ACTIONS(669), + [anon_sym_AMP] = ACTIONS(673), }, [2123] = { - [anon_sym_RBRACE] = ACTIONS(5274), - [sym_comment] = ACTIONS(55), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(2274), + [anon_sym_DQUOTE] = ACTIONS(5294), + [anon_sym_DOLLAR] = ACTIONS(5296), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [2124] = { - [sym_concatenation] = STATE(2297), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2297), - [anon_sym_RBRACE] = ACTIONS(5276), - [anon_sym_EQ] = ACTIONS(5278), - [anon_sym_DASH] = ACTIONS(5278), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5280), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(5278), - [anon_sym_COLON_QMARK] = ACTIONS(5278), - [anon_sym_COLON_DASH] = ACTIONS(5278), - [anon_sym_PERCENT] = ACTIONS(5278), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_string] = STATE(2276), + [anon_sym_DASH] = ACTIONS(5298), + [anon_sym_DQUOTE] = ACTIONS(4969), + [anon_sym_DOLLAR] = ACTIONS(5298), + [sym_raw_string] = ACTIONS(5300), + [anon_sym_POUND] = ACTIONS(5298), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5302), + [anon_sym_STAR] = ACTIONS(5304), + [anon_sym_AT] = ACTIONS(5304), + [anon_sym_QMARK] = ACTIONS(5304), + [anon_sym_0] = ACTIONS(5302), + [anon_sym__] = ACTIONS(5302), }, [2125] = { - [sym__concat] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym_SEMI_SEMI] = ACTIONS(3998), - [sym__special_characters] = ACTIONS(3998), - [anon_sym_DQUOTE] = ACTIONS(3998), - [anon_sym_DOLLAR] = ACTIONS(4000), - [sym_raw_string] = ACTIONS(3998), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), - [anon_sym_BQUOTE] = ACTIONS(3998), - [anon_sym_LT_LPAREN] = ACTIONS(3998), - [anon_sym_GT_LPAREN] = ACTIONS(3998), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4000), - [anon_sym_LF] = ACTIONS(3998), - [anon_sym_AMP] = ACTIONS(3998), + [aux_sym_concatenation_repeat1] = STATE(2271), + [sym__simple_heredoc_body] = ACTIONS(687), + [sym__heredoc_body_beginning] = ACTIONS(687), + [sym_file_descriptor] = ACTIONS(687), + [sym__concat] = ACTIONS(5292), + [sym_variable_name] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(689), + [anon_sym_esac] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_SEMI_SEMI] = ACTIONS(687), + [anon_sym_PIPE_AMP] = ACTIONS(687), + [anon_sym_AMP_AMP] = ACTIONS(687), + [anon_sym_PIPE_PIPE] = ACTIONS(687), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_GT_GT] = ACTIONS(687), + [anon_sym_AMP_GT] = ACTIONS(689), + [anon_sym_AMP_GT_GT] = ACTIONS(687), + [anon_sym_LT_AMP] = ACTIONS(687), + [anon_sym_GT_AMP] = ACTIONS(687), + [anon_sym_LT_LT] = ACTIONS(689), + [anon_sym_LT_LT_DASH] = ACTIONS(687), + [anon_sym_LT_LT_LT] = ACTIONS(687), + [sym__special_characters] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(687), + [anon_sym_DOLLAR] = ACTIONS(689), + [sym_raw_string] = ACTIONS(687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(687), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(687), + [anon_sym_BQUOTE] = ACTIONS(687), + [anon_sym_LT_LPAREN] = ACTIONS(687), + [anon_sym_GT_LPAREN] = ACTIONS(687), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(689), + [sym_word] = ACTIONS(689), + [anon_sym_LF] = ACTIONS(687), + [anon_sym_AMP] = ACTIONS(689), }, [2126] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5276), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_subscript] = STATE(2281), + [sym_variable_name] = ACTIONS(5306), + [anon_sym_BANG] = ACTIONS(5308), + [anon_sym_DASH] = ACTIONS(5310), + [anon_sym_DOLLAR] = ACTIONS(5310), + [anon_sym_POUND] = ACTIONS(5308), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5312), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_AT] = ACTIONS(5314), + [anon_sym_QMARK] = ACTIONS(5314), + [anon_sym_0] = ACTIONS(5312), + [anon_sym__] = ACTIONS(5312), }, [2127] = { - [sym_concatenation] = STATE(2298), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2298), - [anon_sym_RBRACE] = ACTIONS(5274), - [anon_sym_EQ] = ACTIONS(5282), - [anon_sym_DASH] = ACTIONS(5282), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(5282), - [anon_sym_COLON_QMARK] = ACTIONS(5282), - [anon_sym_COLON_DASH] = ACTIONS(5282), - [anon_sym_PERCENT] = ACTIONS(5282), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__terminated_statement] = STATE(2284), + [sym_redirected_statement] = STATE(2282), + [sym_for_statement] = STATE(2282), + [sym_c_style_for_statement] = STATE(2282), + [sym_while_statement] = STATE(2282), + [sym_if_statement] = STATE(2282), + [sym_case_statement] = STATE(2282), + [sym_function_definition] = STATE(2282), + [sym_compound_statement] = STATE(2282), + [sym_subshell] = STATE(2282), + [sym_pipeline] = STATE(2282), + [sym_list] = STATE(2282), + [sym_negated_command] = STATE(2282), + [sym_test_command] = STATE(2282), + [sym_declaration_command] = STATE(2282), + [sym_unset_command] = STATE(2282), + [sym_command] = STATE(2282), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(2283), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(2284), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [2128] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5274), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__terminated_statement] = STATE(2287), + [sym_redirected_statement] = STATE(2285), + [sym_for_statement] = STATE(2285), + [sym_c_style_for_statement] = STATE(2285), + [sym_while_statement] = STATE(2285), + [sym_if_statement] = STATE(2285), + [sym_case_statement] = STATE(2285), + [sym_function_definition] = STATE(2285), + [sym_compound_statement] = STATE(2285), + [sym_subshell] = STATE(2285), + [sym_pipeline] = STATE(2285), + [sym_list] = STATE(2285), + [sym_negated_command] = STATE(2285), + [sym_test_command] = STATE(2285), + [sym_declaration_command] = STATE(2285), + [sym_unset_command] = STATE(2285), + [sym_command] = STATE(2285), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(2286), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(2287), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [2129] = { - [sym__concat] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4045), - [anon_sym_SEMI_SEMI] = ACTIONS(4043), - [sym__special_characters] = ACTIONS(4043), - [anon_sym_DQUOTE] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(4045), - [sym_raw_string] = ACTIONS(4043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), - [anon_sym_BQUOTE] = ACTIONS(4043), - [anon_sym_LT_LPAREN] = ACTIONS(4043), - [anon_sym_GT_LPAREN] = ACTIONS(4043), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4045), - [anon_sym_LF] = ACTIONS(4043), - [anon_sym_AMP] = ACTIONS(4043), + [sym__terminated_statement] = STATE(2290), + [sym_redirected_statement] = STATE(2288), + [sym_for_statement] = STATE(2288), + [sym_c_style_for_statement] = STATE(2288), + [sym_while_statement] = STATE(2288), + [sym_if_statement] = STATE(2288), + [sym_case_statement] = STATE(2288), + [sym_function_definition] = STATE(2288), + [sym_compound_statement] = STATE(2288), + [sym_subshell] = STATE(2288), + [sym_pipeline] = STATE(2288), + [sym_list] = STATE(2288), + [sym_negated_command] = STATE(2288), + [sym_test_command] = STATE(2288), + [sym_declaration_command] = STATE(2288), + [sym_unset_command] = STATE(2288), + [sym_command] = STATE(2288), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(2289), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(2290), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [2130] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5286), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_EQ] = ACTIONS(5290), + [anon_sym_PLUS_EQ] = ACTIONS(5290), + [sym_comment] = ACTIONS(57), }, [2131] = { - [sym__concat] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_SEMI_SEMI] = ACTIONS(4065), - [sym__special_characters] = ACTIONS(4065), - [anon_sym_DQUOTE] = ACTIONS(4065), - [anon_sym_DOLLAR] = ACTIONS(4067), - [sym_raw_string] = ACTIONS(4065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), - [anon_sym_BQUOTE] = ACTIONS(4065), - [anon_sym_LT_LPAREN] = ACTIONS(4065), - [anon_sym_GT_LPAREN] = ACTIONS(4065), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4067), - [anon_sym_LF] = ACTIONS(4065), - [anon_sym_AMP] = ACTIONS(4065), + [sym_variable_assignment] = STATE(2291), + [sym_subscript] = STATE(2130), + [sym_concatenation] = STATE(2291), + [sym_string] = STATE(2125), + [sym_simple_expansion] = STATE(2125), + [sym_string_expansion] = STATE(2125), + [sym_expansion] = STATE(2125), + [sym_command_substitution] = STATE(2125), + [sym_process_substitution] = STATE(2125), + [aux_sym_declaration_command_repeat1] = STATE(2291), + [sym__simple_heredoc_body] = ACTIONS(701), + [sym__heredoc_body_beginning] = ACTIONS(701), + [sym_file_descriptor] = ACTIONS(701), + [sym_variable_name] = ACTIONS(4965), + [anon_sym_SEMI] = ACTIONS(703), + [anon_sym_esac] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(703), + [anon_sym_SEMI_SEMI] = ACTIONS(701), + [anon_sym_PIPE_AMP] = ACTIONS(701), + [anon_sym_AMP_AMP] = ACTIONS(701), + [anon_sym_PIPE_PIPE] = ACTIONS(701), + [anon_sym_LT] = ACTIONS(703), + [anon_sym_GT] = ACTIONS(703), + [anon_sym_GT_GT] = ACTIONS(701), + [anon_sym_AMP_GT] = ACTIONS(703), + [anon_sym_AMP_GT_GT] = ACTIONS(701), + [anon_sym_LT_AMP] = ACTIONS(701), + [anon_sym_GT_AMP] = ACTIONS(701), + [anon_sym_LT_LT] = ACTIONS(703), + [anon_sym_LT_LT_DASH] = ACTIONS(701), + [anon_sym_LT_LT_LT] = ACTIONS(701), + [sym__special_characters] = ACTIONS(4967), + [anon_sym_DQUOTE] = ACTIONS(4969), + [anon_sym_DOLLAR] = ACTIONS(4971), + [sym_raw_string] = ACTIONS(4973), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4977), + [anon_sym_BQUOTE] = ACTIONS(4979), + [anon_sym_LT_LPAREN] = ACTIONS(4981), + [anon_sym_GT_LPAREN] = ACTIONS(4981), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5316), + [sym_word] = ACTIONS(4985), + [anon_sym_LF] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), }, [2132] = { - [sym__concat] = ACTIONS(4089), - [anon_sym_SEMI] = ACTIONS(4091), - [anon_sym_SEMI_SEMI] = ACTIONS(4089), - [sym__special_characters] = ACTIONS(4089), - [anon_sym_DQUOTE] = ACTIONS(4089), - [anon_sym_DOLLAR] = ACTIONS(4091), - [sym_raw_string] = ACTIONS(4089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), - [anon_sym_BQUOTE] = ACTIONS(4089), - [anon_sym_LT_LPAREN] = ACTIONS(4089), - [anon_sym_GT_LPAREN] = ACTIONS(4089), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4091), - [anon_sym_LF] = ACTIONS(4089), - [anon_sym_AMP] = ACTIONS(4089), + [aux_sym_concatenation_repeat1] = STATE(2293), + [sym__simple_heredoc_body] = ACTIONS(707), + [sym__heredoc_body_beginning] = ACTIONS(707), + [sym_file_descriptor] = ACTIONS(707), + [sym__concat] = ACTIONS(5318), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_esac] = ACTIONS(711), + [anon_sym_PIPE] = ACTIONS(711), + [anon_sym_SEMI_SEMI] = ACTIONS(707), + [anon_sym_PIPE_AMP] = ACTIONS(707), + [anon_sym_AMP_AMP] = ACTIONS(707), + [anon_sym_PIPE_PIPE] = ACTIONS(707), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_GT] = ACTIONS(711), + [anon_sym_GT_GT] = ACTIONS(707), + [anon_sym_AMP_GT] = ACTIONS(711), + [anon_sym_AMP_GT_GT] = ACTIONS(707), + [anon_sym_LT_AMP] = ACTIONS(707), + [anon_sym_GT_AMP] = ACTIONS(707), + [anon_sym_LT_LT] = ACTIONS(711), + [anon_sym_LT_LT_DASH] = ACTIONS(707), + [anon_sym_LT_LT_LT] = ACTIONS(707), + [sym__special_characters] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(711), + [sym_raw_string] = ACTIONS(707), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(707), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(707), + [anon_sym_BQUOTE] = ACTIONS(707), + [anon_sym_LT_LPAREN] = ACTIONS(707), + [anon_sym_GT_LPAREN] = ACTIONS(707), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(711), + [sym_word] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(707), + [anon_sym_AMP] = ACTIONS(711), }, [2133] = { - [sym__concat] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4712), - [anon_sym_RPAREN] = ACTIONS(4710), - [anon_sym_AMP_AMP] = ACTIONS(4710), - [anon_sym_PIPE_PIPE] = ACTIONS(4710), - [anon_sym_EQ_TILDE] = ACTIONS(4710), - [anon_sym_EQ_EQ] = ACTIONS(4710), - [anon_sym_EQ] = ACTIONS(4712), - [anon_sym_PLUS_EQ] = ACTIONS(4710), - [anon_sym_LT] = ACTIONS(4712), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_BANG_EQ] = ACTIONS(4710), - [anon_sym_PLUS] = ACTIONS(4712), - [anon_sym_DASH] = ACTIONS(4712), - [anon_sym_DASH_EQ] = ACTIONS(4710), - [anon_sym_LT_EQ] = ACTIONS(4710), - [anon_sym_GT_EQ] = ACTIONS(4710), - [anon_sym_PLUS_PLUS] = ACTIONS(4710), - [anon_sym_DASH_DASH] = ACTIONS(4710), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4710), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(2296), + [anon_sym_DQUOTE] = ACTIONS(5320), + [anon_sym_DOLLAR] = ACTIONS(5322), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [2134] = { - [sym__concat] = ACTIONS(4714), - [anon_sym_PIPE] = ACTIONS(4716), - [anon_sym_RPAREN] = ACTIONS(4714), - [anon_sym_AMP_AMP] = ACTIONS(4714), - [anon_sym_PIPE_PIPE] = ACTIONS(4714), - [anon_sym_EQ_TILDE] = ACTIONS(4714), - [anon_sym_EQ_EQ] = ACTIONS(4714), - [anon_sym_EQ] = ACTIONS(4716), - [anon_sym_PLUS_EQ] = ACTIONS(4714), - [anon_sym_LT] = ACTIONS(4716), - [anon_sym_GT] = ACTIONS(4716), - [anon_sym_BANG_EQ] = ACTIONS(4714), - [anon_sym_PLUS] = ACTIONS(4716), - [anon_sym_DASH] = ACTIONS(4716), - [anon_sym_DASH_EQ] = ACTIONS(4714), - [anon_sym_LT_EQ] = ACTIONS(4714), - [anon_sym_GT_EQ] = ACTIONS(4714), - [anon_sym_PLUS_PLUS] = ACTIONS(4714), - [anon_sym_DASH_DASH] = ACTIONS(4714), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4714), + [sym_string] = STATE(2298), + [anon_sym_DASH] = ACTIONS(5324), + [anon_sym_DQUOTE] = ACTIONS(4989), + [anon_sym_DOLLAR] = ACTIONS(5324), + [sym_raw_string] = ACTIONS(5326), + [anon_sym_POUND] = ACTIONS(5324), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5328), + [anon_sym_STAR] = ACTIONS(5330), + [anon_sym_AT] = ACTIONS(5330), + [anon_sym_QMARK] = ACTIONS(5330), + [anon_sym_0] = ACTIONS(5328), + [anon_sym__] = ACTIONS(5328), }, [2135] = { - [sym__concat] = ACTIONS(4718), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_RPAREN] = ACTIONS(4718), - [anon_sym_AMP_AMP] = ACTIONS(4718), - [anon_sym_PIPE_PIPE] = ACTIONS(4718), - [anon_sym_EQ_TILDE] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4718), - [anon_sym_EQ] = ACTIONS(4720), - [anon_sym_PLUS_EQ] = ACTIONS(4718), - [anon_sym_LT] = ACTIONS(4720), - [anon_sym_GT] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4718), - [anon_sym_PLUS] = ACTIONS(4720), - [anon_sym_DASH] = ACTIONS(4720), - [anon_sym_DASH_EQ] = ACTIONS(4718), - [anon_sym_LT_EQ] = ACTIONS(4718), - [anon_sym_GT_EQ] = ACTIONS(4718), - [anon_sym_PLUS_PLUS] = ACTIONS(4718), - [anon_sym_DASH_DASH] = ACTIONS(4718), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4718), + [aux_sym_concatenation_repeat1] = STATE(2293), + [sym__simple_heredoc_body] = ACTIONS(725), + [sym__heredoc_body_beginning] = ACTIONS(725), + [sym_file_descriptor] = ACTIONS(725), + [sym__concat] = ACTIONS(5318), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_esac] = ACTIONS(727), + [anon_sym_PIPE] = ACTIONS(727), + [anon_sym_SEMI_SEMI] = ACTIONS(725), + [anon_sym_PIPE_AMP] = ACTIONS(725), + [anon_sym_AMP_AMP] = ACTIONS(725), + [anon_sym_PIPE_PIPE] = ACTIONS(725), + [anon_sym_LT] = ACTIONS(727), + [anon_sym_GT] = ACTIONS(727), + [anon_sym_GT_GT] = ACTIONS(725), + [anon_sym_AMP_GT] = ACTIONS(727), + [anon_sym_AMP_GT_GT] = ACTIONS(725), + [anon_sym_LT_AMP] = ACTIONS(725), + [anon_sym_GT_AMP] = ACTIONS(725), + [anon_sym_LT_LT] = ACTIONS(727), + [anon_sym_LT_LT_DASH] = ACTIONS(725), + [anon_sym_LT_LT_LT] = ACTIONS(725), + [sym__special_characters] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(727), + [sym_raw_string] = ACTIONS(725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(725), + [anon_sym_BQUOTE] = ACTIONS(725), + [anon_sym_LT_LPAREN] = ACTIONS(725), + [anon_sym_GT_LPAREN] = ACTIONS(725), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(727), + [sym_word] = ACTIONS(727), + [anon_sym_LF] = ACTIONS(725), + [anon_sym_AMP] = ACTIONS(727), }, [2136] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5288), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_subscript] = STATE(2303), + [sym_variable_name] = ACTIONS(5332), + [anon_sym_BANG] = ACTIONS(5334), + [anon_sym_DASH] = ACTIONS(5336), + [anon_sym_DOLLAR] = ACTIONS(5336), + [anon_sym_POUND] = ACTIONS(5334), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5338), + [anon_sym_STAR] = ACTIONS(5340), + [anon_sym_AT] = ACTIONS(5340), + [anon_sym_QMARK] = ACTIONS(5340), + [anon_sym_0] = ACTIONS(5338), + [anon_sym__] = ACTIONS(5338), }, [2137] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5290), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__terminated_statement] = STATE(2306), + [sym_redirected_statement] = STATE(2304), + [sym_for_statement] = STATE(2304), + [sym_c_style_for_statement] = STATE(2304), + [sym_while_statement] = STATE(2304), + [sym_if_statement] = STATE(2304), + [sym_case_statement] = STATE(2304), + [sym_function_definition] = STATE(2304), + [sym_compound_statement] = STATE(2304), + [sym_subshell] = STATE(2304), + [sym_pipeline] = STATE(2304), + [sym_list] = STATE(2304), + [sym_negated_command] = STATE(2304), + [sym_test_command] = STATE(2304), + [sym_declaration_command] = STATE(2304), + [sym_unset_command] = STATE(2304), + [sym_command] = STATE(2304), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(2305), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(2306), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [2138] = { - [sym__concat] = ACTIONS(4754), - [anon_sym_PIPE] = ACTIONS(4756), - [anon_sym_RPAREN] = ACTIONS(4754), - [anon_sym_AMP_AMP] = ACTIONS(4754), - [anon_sym_PIPE_PIPE] = ACTIONS(4754), - [anon_sym_EQ_TILDE] = ACTIONS(4754), - [anon_sym_EQ_EQ] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4756), - [anon_sym_PLUS_EQ] = ACTIONS(4754), - [anon_sym_LT] = ACTIONS(4756), - [anon_sym_GT] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4754), - [anon_sym_PLUS] = ACTIONS(4756), - [anon_sym_DASH] = ACTIONS(4756), - [anon_sym_DASH_EQ] = ACTIONS(4754), - [anon_sym_LT_EQ] = ACTIONS(4754), - [anon_sym_GT_EQ] = ACTIONS(4754), - [anon_sym_PLUS_PLUS] = ACTIONS(4754), - [anon_sym_DASH_DASH] = ACTIONS(4754), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(4754), + [sym__terminated_statement] = STATE(2309), + [sym_redirected_statement] = STATE(2307), + [sym_for_statement] = STATE(2307), + [sym_c_style_for_statement] = STATE(2307), + [sym_while_statement] = STATE(2307), + [sym_if_statement] = STATE(2307), + [sym_case_statement] = STATE(2307), + [sym_function_definition] = STATE(2307), + [sym_compound_statement] = STATE(2307), + [sym_subshell] = STATE(2307), + [sym_pipeline] = STATE(2307), + [sym_list] = STATE(2307), + [sym_negated_command] = STATE(2307), + [sym_test_command] = STATE(2307), + [sym_declaration_command] = STATE(2307), + [sym_unset_command] = STATE(2307), + [sym_command] = STATE(2307), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(2308), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(2309), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [2139] = { - [sym__concat] = ACTIONS(5202), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_PIPE_PIPE] = ACTIONS(5202), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5202), - [anon_sym_EQ_TILDE] = ACTIONS(5202), - [anon_sym_EQ_EQ] = ACTIONS(5202), - [anon_sym_EQ] = ACTIONS(5204), - [anon_sym_PLUS_EQ] = ACTIONS(5202), - [anon_sym_LT] = ACTIONS(5204), - [anon_sym_GT] = ACTIONS(5204), - [anon_sym_BANG_EQ] = ACTIONS(5202), - [anon_sym_PLUS] = ACTIONS(5204), - [anon_sym_DASH] = ACTIONS(5204), - [anon_sym_DASH_EQ] = ACTIONS(5202), - [anon_sym_LT_EQ] = ACTIONS(5202), - [anon_sym_GT_EQ] = ACTIONS(5202), - [anon_sym_PLUS_PLUS] = ACTIONS(5202), - [anon_sym_DASH_DASH] = ACTIONS(5202), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(5202), + [sym__terminated_statement] = STATE(2312), + [sym_redirected_statement] = STATE(2310), + [sym_for_statement] = STATE(2310), + [sym_c_style_for_statement] = STATE(2310), + [sym_while_statement] = STATE(2310), + [sym_if_statement] = STATE(2310), + [sym_case_statement] = STATE(2310), + [sym_function_definition] = STATE(2310), + [sym_compound_statement] = STATE(2310), + [sym_subshell] = STATE(2310), + [sym_pipeline] = STATE(2310), + [sym_list] = STATE(2310), + [sym_negated_command] = STATE(2310), + [sym_test_command] = STATE(2310), + [sym_declaration_command] = STATE(2310), + [sym_unset_command] = STATE(2310), + [sym_command] = STATE(2310), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(2311), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(2312), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [2140] = { - [sym__concat] = ACTIONS(5206), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5206), - [anon_sym_EQ_TILDE] = ACTIONS(5206), - [anon_sym_EQ_EQ] = ACTIONS(5206), - [anon_sym_EQ] = ACTIONS(5208), - [anon_sym_PLUS_EQ] = ACTIONS(5206), - [anon_sym_LT] = ACTIONS(5208), - [anon_sym_GT] = ACTIONS(5208), - [anon_sym_BANG_EQ] = ACTIONS(5206), - [anon_sym_PLUS] = ACTIONS(5208), - [anon_sym_DASH] = ACTIONS(5208), - [anon_sym_DASH_EQ] = ACTIONS(5206), - [anon_sym_LT_EQ] = ACTIONS(5206), - [anon_sym_GT_EQ] = ACTIONS(5206), - [anon_sym_PLUS_PLUS] = ACTIONS(5206), - [anon_sym_DASH_DASH] = ACTIONS(5206), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(5206), + [sym_concatenation] = STATE(2313), + [sym_string] = STATE(2135), + [sym_simple_expansion] = STATE(2135), + [sym_string_expansion] = STATE(2135), + [sym_expansion] = STATE(2135), + [sym_command_substitution] = STATE(2135), + [sym_process_substitution] = STATE(2135), + [aux_sym_unset_command_repeat1] = STATE(2313), + [sym__simple_heredoc_body] = ACTIONS(739), + [sym__heredoc_body_beginning] = ACTIONS(739), + [sym_file_descriptor] = ACTIONS(739), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_esac] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_SEMI_SEMI] = ACTIONS(739), + [anon_sym_PIPE_AMP] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(739), + [anon_sym_PIPE_PIPE] = ACTIONS(739), + [anon_sym_LT] = ACTIONS(741), + [anon_sym_GT] = ACTIONS(741), + [anon_sym_GT_GT] = ACTIONS(739), + [anon_sym_AMP_GT] = ACTIONS(741), + [anon_sym_AMP_GT_GT] = ACTIONS(739), + [anon_sym_LT_AMP] = ACTIONS(739), + [anon_sym_GT_AMP] = ACTIONS(739), + [anon_sym_LT_LT] = ACTIONS(741), + [anon_sym_LT_LT_DASH] = ACTIONS(739), + [anon_sym_LT_LT_LT] = ACTIONS(739), + [sym__special_characters] = ACTIONS(4987), + [anon_sym_DQUOTE] = ACTIONS(4989), + [anon_sym_DOLLAR] = ACTIONS(4991), + [sym_raw_string] = ACTIONS(4993), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4997), + [anon_sym_BQUOTE] = ACTIONS(4999), + [anon_sym_LT_LPAREN] = ACTIONS(5001), + [anon_sym_GT_LPAREN] = ACTIONS(5001), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5342), + [sym_word] = ACTIONS(5005), + [anon_sym_LF] = ACTIONS(739), + [anon_sym_AMP] = ACTIONS(741), }, [2141] = { - [sym_file_descriptor] = ACTIONS(2959), - [sym__concat] = ACTIONS(2959), - [ts_builtin_sym_end] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_esac] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2961), - [anon_sym_RPAREN] = ACTIONS(2959), - [anon_sym_SEMI_SEMI] = ACTIONS(2959), - [anon_sym_PIPE_AMP] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_GT] = ACTIONS(2961), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_AMP_GT] = ACTIONS(2961), - [anon_sym_AMP_GT_GT] = ACTIONS(2959), - [anon_sym_LT_AMP] = ACTIONS(2959), - [anon_sym_GT_AMP] = ACTIONS(2959), - [anon_sym_LT_LT] = ACTIONS(2961), - [anon_sym_LT_LT_DASH] = ACTIONS(2959), - [anon_sym_LT_LT_LT] = ACTIONS(2959), - [anon_sym_BQUOTE] = ACTIONS(2959), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), + [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(5344), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_DOLLAR] = ACTIONS(4434), + [sym_raw_string] = ACTIONS(5344), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4440), + [anon_sym_BQUOTE] = ACTIONS(4442), + [anon_sym_LT_LPAREN] = ACTIONS(4444), + [anon_sym_GT_LPAREN] = ACTIONS(4444), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5344), }, [2142] = { - [sym_file_descriptor] = ACTIONS(2973), - [sym__concat] = ACTIONS(2973), - [ts_builtin_sym_end] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym_esac] = ACTIONS(2973), - [anon_sym_PIPE] = ACTIONS(2975), - [anon_sym_RPAREN] = ACTIONS(2973), - [anon_sym_SEMI_SEMI] = ACTIONS(2973), - [anon_sym_PIPE_AMP] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_GT] = ACTIONS(2975), - [anon_sym_GT_GT] = ACTIONS(2973), - [anon_sym_AMP_GT] = ACTIONS(2975), - [anon_sym_AMP_GT_GT] = ACTIONS(2973), - [anon_sym_LT_AMP] = ACTIONS(2973), - [anon_sym_GT_AMP] = ACTIONS(2973), - [anon_sym_LT_LT] = ACTIONS(2975), - [anon_sym_LT_LT_DASH] = ACTIONS(2973), - [anon_sym_LT_LT_LT] = ACTIONS(2973), - [anon_sym_BQUOTE] = ACTIONS(2973), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2975), + [aux_sym_concatenation_repeat1] = STATE(2315), + [sym__simple_heredoc_body] = ACTIONS(779), + [sym__heredoc_body_beginning] = ACTIONS(779), + [sym_file_descriptor] = ACTIONS(779), + [sym__concat] = ACTIONS(5007), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_esac] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [anon_sym_PIPE_AMP] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_EQ_TILDE] = ACTIONS(781), + [anon_sym_EQ_EQ] = ACTIONS(781), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_AMP_GT] = ACTIONS(781), + [anon_sym_AMP_GT_GT] = ACTIONS(779), + [anon_sym_LT_AMP] = ACTIONS(779), + [anon_sym_GT_AMP] = ACTIONS(779), + [anon_sym_LT_LT] = ACTIONS(781), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_LT] = ACTIONS(779), + [sym__special_characters] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(781), + [sym_raw_string] = ACTIONS(779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(779), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(781), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(781), }, [2143] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(5292), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(783), + [sym__heredoc_body_beginning] = ACTIONS(783), + [sym_file_descriptor] = ACTIONS(783), + [sym__concat] = ACTIONS(783), + [anon_sym_SEMI] = ACTIONS(785), + [anon_sym_esac] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_SEMI_SEMI] = ACTIONS(783), + [anon_sym_PIPE_AMP] = ACTIONS(783), + [anon_sym_AMP_AMP] = ACTIONS(783), + [anon_sym_PIPE_PIPE] = ACTIONS(783), + [anon_sym_EQ_TILDE] = ACTIONS(785), + [anon_sym_EQ_EQ] = ACTIONS(785), + [anon_sym_LT] = ACTIONS(785), + [anon_sym_GT] = ACTIONS(785), + [anon_sym_GT_GT] = ACTIONS(783), + [anon_sym_AMP_GT] = ACTIONS(785), + [anon_sym_AMP_GT_GT] = ACTIONS(783), + [anon_sym_LT_AMP] = ACTIONS(783), + [anon_sym_GT_AMP] = ACTIONS(783), + [anon_sym_LT_LT] = ACTIONS(785), + [anon_sym_LT_LT_DASH] = ACTIONS(783), + [anon_sym_LT_LT_LT] = ACTIONS(783), + [sym__special_characters] = ACTIONS(783), + [anon_sym_DQUOTE] = ACTIONS(783), + [anon_sym_DOLLAR] = ACTIONS(785), + [sym_raw_string] = ACTIONS(783), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(783), + [anon_sym_BQUOTE] = ACTIONS(783), + [anon_sym_LT_LPAREN] = ACTIONS(783), + [anon_sym_GT_LPAREN] = ACTIONS(783), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(785), + [anon_sym_LF] = ACTIONS(783), + [anon_sym_AMP] = ACTIONS(785), }, [2144] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(5294), - [sym_comment] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(5346), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [2145] = { - [anon_sym_RBRACE] = ACTIONS(5294), - [sym_comment] = ACTIONS(55), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(455), + [anon_sym_DQUOTE] = ACTIONS(5346), + [anon_sym_DOLLAR] = ACTIONS(5348), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [2146] = { - [sym_concatenation] = STATE(2306), - [sym_string] = STATE(2305), - [sym_simple_expansion] = STATE(2305), - [sym_string_expansion] = STATE(2305), - [sym_expansion] = STATE(2305), - [sym_command_substitution] = STATE(2305), - [sym_process_substitution] = STATE(2305), - [anon_sym_RBRACE] = ACTIONS(5294), - [sym__special_characters] = ACTIONS(5296), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(5298), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5298), + [sym__simple_heredoc_body] = ACTIONS(817), + [sym__heredoc_body_beginning] = ACTIONS(817), + [sym_file_descriptor] = ACTIONS(817), + [sym__concat] = ACTIONS(817), + [anon_sym_SEMI] = ACTIONS(819), + [anon_sym_esac] = ACTIONS(819), + [anon_sym_PIPE] = ACTIONS(819), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_PIPE_AMP] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_EQ_TILDE] = ACTIONS(819), + [anon_sym_EQ_EQ] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [anon_sym_LT_LT] = ACTIONS(819), + [anon_sym_LT_LT_DASH] = ACTIONS(817), + [anon_sym_LT_LT_LT] = ACTIONS(817), + [sym__special_characters] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(819), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(819), }, [2147] = { - [sym_file_descriptor] = ACTIONS(3009), - [sym__concat] = ACTIONS(3009), - [ts_builtin_sym_end] = ACTIONS(3009), - [anon_sym_SEMI] = ACTIONS(3011), - [anon_sym_esac] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_RPAREN] = ACTIONS(3009), - [anon_sym_SEMI_SEMI] = ACTIONS(3009), - [anon_sym_PIPE_AMP] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(3011), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_GT_GT] = ACTIONS(3009), - [anon_sym_AMP_GT] = ACTIONS(3011), - [anon_sym_AMP_GT_GT] = ACTIONS(3009), - [anon_sym_LT_AMP] = ACTIONS(3009), - [anon_sym_GT_AMP] = ACTIONS(3009), - [anon_sym_LT_LT] = ACTIONS(3011), - [anon_sym_LT_LT_DASH] = ACTIONS(3009), - [anon_sym_LT_LT_LT] = ACTIONS(3009), - [anon_sym_BQUOTE] = ACTIONS(3009), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3011), + [sym__simple_heredoc_body] = ACTIONS(821), + [sym__heredoc_body_beginning] = ACTIONS(821), + [sym_file_descriptor] = ACTIONS(821), + [sym__concat] = ACTIONS(821), + [anon_sym_SEMI] = ACTIONS(823), + [anon_sym_esac] = ACTIONS(823), + [anon_sym_PIPE] = ACTIONS(823), + [anon_sym_SEMI_SEMI] = ACTIONS(821), + [anon_sym_PIPE_AMP] = ACTIONS(821), + [anon_sym_AMP_AMP] = ACTIONS(821), + [anon_sym_PIPE_PIPE] = ACTIONS(821), + [anon_sym_EQ_TILDE] = ACTIONS(823), + [anon_sym_EQ_EQ] = ACTIONS(823), + [anon_sym_LT] = ACTIONS(823), + [anon_sym_GT] = ACTIONS(823), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_AMP_GT] = ACTIONS(823), + [anon_sym_AMP_GT_GT] = ACTIONS(821), + [anon_sym_LT_AMP] = ACTIONS(821), + [anon_sym_GT_AMP] = ACTIONS(821), + [anon_sym_LT_LT] = ACTIONS(823), + [anon_sym_LT_LT_DASH] = ACTIONS(821), + [anon_sym_LT_LT_LT] = ACTIONS(821), + [sym__special_characters] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(823), + [sym_raw_string] = ACTIONS(821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(821), + [anon_sym_BQUOTE] = ACTIONS(821), + [anon_sym_LT_LPAREN] = ACTIONS(821), + [anon_sym_GT_LPAREN] = ACTIONS(821), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(823), + [anon_sym_LF] = ACTIONS(821), + [anon_sym_AMP] = ACTIONS(823), }, [2148] = { - [sym_concatenation] = STATE(2309), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2309), - [sym_regex] = ACTIONS(5300), - [anon_sym_RBRACE] = ACTIONS(5302), - [anon_sym_EQ] = ACTIONS(5304), - [anon_sym_DASH] = ACTIONS(5304), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5306), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(5304), - [anon_sym_COLON_QMARK] = ACTIONS(5304), - [anon_sym_COLON_DASH] = ACTIONS(5304), - [anon_sym_PERCENT] = ACTIONS(5304), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(825), + [sym__heredoc_body_beginning] = ACTIONS(825), + [sym_file_descriptor] = ACTIONS(825), + [sym__concat] = ACTIONS(825), + [anon_sym_SEMI] = ACTIONS(827), + [anon_sym_esac] = ACTIONS(827), + [anon_sym_PIPE] = ACTIONS(827), + [anon_sym_SEMI_SEMI] = ACTIONS(825), + [anon_sym_PIPE_AMP] = ACTIONS(825), + [anon_sym_AMP_AMP] = ACTIONS(825), + [anon_sym_PIPE_PIPE] = ACTIONS(825), + [anon_sym_EQ_TILDE] = ACTIONS(827), + [anon_sym_EQ_EQ] = ACTIONS(827), + [anon_sym_LT] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_GT_GT] = ACTIONS(825), + [anon_sym_AMP_GT] = ACTIONS(827), + [anon_sym_AMP_GT_GT] = ACTIONS(825), + [anon_sym_LT_AMP] = ACTIONS(825), + [anon_sym_GT_AMP] = ACTIONS(825), + [anon_sym_LT_LT] = ACTIONS(827), + [anon_sym_LT_LT_DASH] = ACTIONS(825), + [anon_sym_LT_LT_LT] = ACTIONS(825), + [sym__special_characters] = ACTIONS(825), + [anon_sym_DQUOTE] = ACTIONS(825), + [anon_sym_DOLLAR] = ACTIONS(827), + [sym_raw_string] = ACTIONS(825), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(825), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_LT_LPAREN] = ACTIONS(825), + [anon_sym_GT_LPAREN] = ACTIONS(825), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(825), + [anon_sym_AMP] = ACTIONS(827), }, [2149] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5302), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(5350), + [sym_comment] = ACTIONS(57), }, [2150] = { - [sym_concatenation] = STATE(2311), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2311), - [sym_regex] = ACTIONS(5308), - [anon_sym_RBRACE] = ACTIONS(5294), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_DASH] = ACTIONS(5310), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5312), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(5310), - [anon_sym_COLON_QMARK] = ACTIONS(5310), - [anon_sym_COLON_DASH] = ACTIONS(5310), - [anon_sym_PERCENT] = ACTIONS(5310), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_subscript] = STATE(2321), + [sym_variable_name] = ACTIONS(5352), + [anon_sym_DASH] = ACTIONS(5354), + [anon_sym_DOLLAR] = ACTIONS(5354), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5356), + [anon_sym_STAR] = ACTIONS(5358), + [anon_sym_AT] = ACTIONS(5358), + [anon_sym_QMARK] = ACTIONS(5358), + [anon_sym_0] = ACTIONS(5356), + [anon_sym__] = ACTIONS(5356), }, [2151] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5294), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(2324), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2324), + [anon_sym_RBRACE] = ACTIONS(5360), + [anon_sym_EQ] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(5366), + [anon_sym_COLON] = ACTIONS(5362), + [anon_sym_COLON_QMARK] = ACTIONS(5362), + [anon_sym_COLON_DASH] = ACTIONS(5362), + [anon_sym_PERCENT] = ACTIONS(5362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2152] = { - [sym_concatenation] = STATE(2313), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2313), - [anon_sym_RBRACE] = ACTIONS(5314), - [anon_sym_EQ] = ACTIONS(5316), - [anon_sym_DASH] = ACTIONS(5316), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5318), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(5316), - [anon_sym_COLON_QMARK] = ACTIONS(5316), - [anon_sym_COLON_DASH] = ACTIONS(5316), - [anon_sym_PERCENT] = ACTIONS(5316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(2327), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2327), + [anon_sym_RBRACE] = ACTIONS(5368), + [anon_sym_EQ] = ACTIONS(5370), + [anon_sym_DASH] = ACTIONS(5370), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5372), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(5374), + [anon_sym_COLON] = ACTIONS(5370), + [anon_sym_COLON_QMARK] = ACTIONS(5370), + [anon_sym_COLON_DASH] = ACTIONS(5370), + [anon_sym_PERCENT] = ACTIONS(5370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2153] = { - [sym_file_descriptor] = ACTIONS(3065), - [sym__concat] = ACTIONS(3065), - [ts_builtin_sym_end] = ACTIONS(3065), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym_esac] = ACTIONS(3065), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_RPAREN] = ACTIONS(3065), - [anon_sym_SEMI_SEMI] = ACTIONS(3065), - [anon_sym_PIPE_AMP] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_PIPE_PIPE] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_GT_GT] = ACTIONS(3065), - [anon_sym_AMP_GT] = ACTIONS(3067), - [anon_sym_AMP_GT_GT] = ACTIONS(3065), - [anon_sym_LT_AMP] = ACTIONS(3065), - [anon_sym_GT_AMP] = ACTIONS(3065), - [anon_sym_LT_LT] = ACTIONS(3067), - [anon_sym_LT_LT_DASH] = ACTIONS(3065), - [anon_sym_LT_LT_LT] = ACTIONS(3065), - [anon_sym_BQUOTE] = ACTIONS(3065), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2330), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5378), + [anon_sym_SEMI_SEMI] = ACTIONS(5380), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5380), + [anon_sym_AMP] = ACTIONS(5376), }, [2154] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5314), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2330), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5376), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5378), + [anon_sym_SEMI_SEMI] = ACTIONS(5380), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5380), + [anon_sym_AMP] = ACTIONS(5376), }, [2155] = { - [sym_concatenation] = STATE(2311), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2311), - [anon_sym_RBRACE] = ACTIONS(5294), - [anon_sym_EQ] = ACTIONS(5310), - [anon_sym_DASH] = ACTIONS(5310), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5312), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(5310), - [anon_sym_COLON_QMARK] = ACTIONS(5310), - [anon_sym_COLON_DASH] = ACTIONS(5310), - [anon_sym_PERCENT] = ACTIONS(5310), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(2331), + [sym_for_statement] = STATE(2331), + [sym_c_style_for_statement] = STATE(2331), + [sym_while_statement] = STATE(2331), + [sym_if_statement] = STATE(2331), + [sym_case_statement] = STATE(2331), + [sym_function_definition] = STATE(2331), + [sym_compound_statement] = STATE(2331), + [sym_subshell] = STATE(2331), + [sym_pipeline] = STATE(2331), + [sym_list] = STATE(2331), + [sym_negated_command] = STATE(2331), + [sym_test_command] = STATE(2331), + [sym_declaration_command] = STATE(2331), + [sym_unset_command] = STATE(2331), + [sym_command] = STATE(2331), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(2332), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [2156] = { - [sym_file_descriptor] = ACTIONS(3120), - [sym__concat] = ACTIONS(3120), - [ts_builtin_sym_end] = ACTIONS(3120), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_esac] = ACTIONS(3120), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_RPAREN] = ACTIONS(3120), - [anon_sym_SEMI_SEMI] = ACTIONS(3120), - [anon_sym_PIPE_AMP] = ACTIONS(3120), - [anon_sym_AMP_AMP] = ACTIONS(3120), - [anon_sym_PIPE_PIPE] = ACTIONS(3120), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_GT] = ACTIONS(3122), - [anon_sym_GT_GT] = ACTIONS(3120), - [anon_sym_AMP_GT] = ACTIONS(3122), - [anon_sym_AMP_GT_GT] = ACTIONS(3120), - [anon_sym_LT_AMP] = ACTIONS(3120), - [anon_sym_GT_AMP] = ACTIONS(3120), - [anon_sym_LT_LT] = ACTIONS(3122), - [anon_sym_LT_LT_DASH] = ACTIONS(3120), - [anon_sym_LT_LT_LT] = ACTIONS(3120), - [anon_sym_BQUOTE] = ACTIONS(3120), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3122), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(2334), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(5382), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(5384), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(5378), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5384), + [anon_sym_AMP] = ACTIONS(5382), }, [2157] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(5320), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(2334), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5382), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(5384), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(5378), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5384), + [anon_sym_AMP] = ACTIONS(5382), }, [2158] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(5320), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(2335), + [sym_for_statement] = STATE(2335), + [sym_c_style_for_statement] = STATE(2335), + [sym_while_statement] = STATE(2335), + [sym_if_statement] = STATE(2335), + [sym_case_statement] = STATE(2335), + [sym_function_definition] = STATE(2335), + [sym_compound_statement] = STATE(2335), + [sym_subshell] = STATE(2335), + [sym_pipeline] = STATE(2335), + [sym_list] = STATE(2335), + [sym_negated_command] = STATE(2335), + [sym_test_command] = STATE(2335), + [sym_declaration_command] = STATE(2335), + [sym_unset_command] = STATE(2335), + [sym_command] = STATE(2335), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(2336), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [2159] = { - [sym_file_descriptor] = ACTIONS(3158), - [sym__concat] = ACTIONS(3158), - [ts_builtin_sym_end] = ACTIONS(3158), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_esac] = ACTIONS(3158), - [anon_sym_PIPE] = ACTIONS(3160), - [anon_sym_RPAREN] = ACTIONS(3158), - [anon_sym_SEMI_SEMI] = ACTIONS(3158), - [anon_sym_PIPE_AMP] = ACTIONS(3158), - [anon_sym_AMP_AMP] = ACTIONS(3158), - [anon_sym_PIPE_PIPE] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3160), - [anon_sym_GT] = ACTIONS(3160), - [anon_sym_GT_GT] = ACTIONS(3158), - [anon_sym_AMP_GT] = ACTIONS(3160), - [anon_sym_AMP_GT_GT] = ACTIONS(3158), - [anon_sym_LT_AMP] = ACTIONS(3158), - [anon_sym_GT_AMP] = ACTIONS(3158), - [anon_sym_LT_LT] = ACTIONS(3160), - [anon_sym_LT_LT_DASH] = ACTIONS(3158), - [anon_sym_LT_LT_LT] = ACTIONS(3158), - [anon_sym_BQUOTE] = ACTIONS(3158), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2339), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(5386), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5388), + [anon_sym_SEMI_SEMI] = ACTIONS(5390), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5390), + [anon_sym_AMP] = ACTIONS(5386), }, [2160] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(5322), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2339), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5386), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5388), + [anon_sym_SEMI_SEMI] = ACTIONS(5390), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5390), + [anon_sym_AMP] = ACTIONS(5386), }, [2161] = { - [aux_sym_concatenation_repeat1] = STATE(2161), - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(4936), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_LT_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT_LT] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(2340), + [sym_for_statement] = STATE(2340), + [sym_c_style_for_statement] = STATE(2340), + [sym_while_statement] = STATE(2340), + [sym_if_statement] = STATE(2340), + [sym_case_statement] = STATE(2340), + [sym_function_definition] = STATE(2340), + [sym_compound_statement] = STATE(2340), + [sym_subshell] = STATE(2340), + [sym_pipeline] = STATE(2340), + [sym_list] = STATE(2340), + [sym_negated_command] = STATE(2340), + [sym_test_command] = STATE(2340), + [sym_declaration_command] = STATE(2340), + [sym_unset_command] = STATE(2340), + [sym_command] = STATE(2340), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(2341), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [2162] = { - [aux_sym_concatenation_repeat1] = STATE(2162), - [sym__concat] = ACTIONS(2807), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_LT] = ACTIONS(5392), + [anon_sym_GT] = ACTIONS(5392), + [anon_sym_GT_GT] = ACTIONS(5394), + [anon_sym_AMP_GT] = ACTIONS(5392), + [anon_sym_AMP_GT_GT] = ACTIONS(5394), + [anon_sym_LT_AMP] = ACTIONS(5394), + [anon_sym_GT_AMP] = ACTIONS(5394), + [sym_comment] = ACTIONS(57), }, [2163] = { - [sym_concatenation] = STATE(2316), - [sym_string] = STATE(2321), - [sym_array] = STATE(2316), - [sym_simple_expansion] = STATE(2321), - [sym_string_expansion] = STATE(2321), - [sym_expansion] = STATE(2321), - [sym_command_substitution] = STATE(2321), - [sym_process_substitution] = STATE(2321), - [sym__empty_value] = ACTIONS(5324), - [anon_sym_LPAREN] = ACTIONS(5326), - [sym__special_characters] = ACTIONS(5328), - [anon_sym_DQUOTE] = ACTIONS(5330), - [anon_sym_DOLLAR] = ACTIONS(5332), - [sym_raw_string] = ACTIONS(5334), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5336), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5338), - [anon_sym_BQUOTE] = ACTIONS(5340), - [anon_sym_LT_LPAREN] = ACTIONS(5342), - [anon_sym_GT_LPAREN] = ACTIONS(5342), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5334), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_esac] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(927), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2164] = { - [anon_sym_RPAREN_RPAREN] = ACTIONS(5344), - [anon_sym_AMP_AMP] = ACTIONS(493), - [anon_sym_PIPE_PIPE] = ACTIONS(493), - [anon_sym_EQ_TILDE] = ACTIONS(495), - [anon_sym_EQ_EQ] = ACTIONS(495), - [anon_sym_EQ] = ACTIONS(497), - [anon_sym_PLUS_EQ] = ACTIONS(493), - [anon_sym_LT] = ACTIONS(497), - [anon_sym_GT] = ACTIONS(497), - [anon_sym_BANG_EQ] = ACTIONS(493), - [anon_sym_PLUS] = ACTIONS(497), - [anon_sym_DASH] = ACTIONS(497), - [anon_sym_DASH_EQ] = ACTIONS(493), - [anon_sym_LT_EQ] = ACTIONS(493), - [anon_sym_GT_EQ] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(493), - }, - [2165] = { - [sym_do_group] = STATE(2327), - [anon_sym_do] = ACTIONS(525), - [sym_comment] = ACTIONS(55), - }, - [2166] = { - [sym_compound_statement] = STATE(2329), - [anon_sym_LPAREN] = ACTIONS(5346), - [anon_sym_LBRACE] = ACTIONS(595), - [sym_comment] = ACTIONS(55), - }, - [2167] = { - [anon_sym_AMP_AMP] = ACTIONS(681), - [anon_sym_PIPE_PIPE] = ACTIONS(681), - [anon_sym_RBRACK] = ACTIONS(5344), - [anon_sym_EQ_TILDE] = ACTIONS(683), - [anon_sym_EQ_EQ] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(685), - [anon_sym_PLUS_EQ] = ACTIONS(681), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(681), - [anon_sym_PLUS] = ACTIONS(685), - [anon_sym_DASH] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(681), - [anon_sym_LT_EQ] = ACTIONS(681), - [anon_sym_GT_EQ] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(687), - [anon_sym_DASH_DASH] = ACTIONS(687), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(681), - }, - [2168] = { - [anon_sym_AMP_AMP] = ACTIONS(689), - [anon_sym_PIPE_PIPE] = ACTIONS(689), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5344), - [anon_sym_EQ_TILDE] = ACTIONS(691), - [anon_sym_EQ_EQ] = ACTIONS(691), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_PLUS_EQ] = ACTIONS(689), - [anon_sym_LT] = ACTIONS(693), - [anon_sym_GT] = ACTIONS(693), - [anon_sym_BANG_EQ] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(693), - [anon_sym_DASH] = ACTIONS(693), - [anon_sym_DASH_EQ] = ACTIONS(689), - [anon_sym_LT_EQ] = ACTIONS(689), - [anon_sym_GT_EQ] = ACTIONS(689), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(689), - }, - [2169] = { - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(5348), - [anon_sym_PLUS_EQ] = ACTIONS(5348), - [sym_comment] = ACTIONS(55), - }, - [2170] = { - [aux_sym_concatenation_repeat1] = STATE(2332), - [sym__concat] = ACTIONS(5350), - [sym_variable_name] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(701), - [anon_sym_esac] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(701), - [anon_sym_SEMI_SEMI] = ACTIONS(699), - [anon_sym_PIPE_AMP] = ACTIONS(699), - [anon_sym_AMP_AMP] = ACTIONS(699), - [anon_sym_PIPE_PIPE] = ACTIONS(699), - [sym__special_characters] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(701), - [sym_raw_string] = ACTIONS(699), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(699), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(699), - [anon_sym_BQUOTE] = ACTIONS(699), - [anon_sym_LT_LPAREN] = ACTIONS(699), - [anon_sym_GT_LPAREN] = ACTIONS(699), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(701), - [sym_word] = ACTIONS(701), - [anon_sym_LF] = ACTIONS(699), - [anon_sym_AMP] = ACTIONS(701), - }, - [2171] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(2335), - [anon_sym_DQUOTE] = ACTIONS(5352), - [anon_sym_DOLLAR] = ACTIONS(5354), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), - }, - [2172] = { - [sym_string] = STATE(2337), - [anon_sym_DASH] = ACTIONS(5356), - [anon_sym_DQUOTE] = ACTIONS(5013), - [anon_sym_DOLLAR] = ACTIONS(5356), - [sym_raw_string] = ACTIONS(5358), - [anon_sym_POUND] = ACTIONS(5356), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5360), - [anon_sym_STAR] = ACTIONS(5362), - [anon_sym_AT] = ACTIONS(5362), - [anon_sym_QMARK] = ACTIONS(5362), - [anon_sym_0] = ACTIONS(5360), - [anon_sym__] = ACTIONS(5360), - }, - [2173] = { - [aux_sym_concatenation_repeat1] = STATE(2332), - [sym__concat] = ACTIONS(5350), - [sym_variable_name] = ACTIONS(715), - [anon_sym_SEMI] = ACTIONS(717), - [anon_sym_esac] = ACTIONS(717), - [anon_sym_PIPE] = ACTIONS(717), - [anon_sym_SEMI_SEMI] = ACTIONS(715), - [anon_sym_PIPE_AMP] = ACTIONS(715), - [anon_sym_AMP_AMP] = ACTIONS(715), - [anon_sym_PIPE_PIPE] = ACTIONS(715), - [sym__special_characters] = ACTIONS(715), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_DOLLAR] = ACTIONS(717), - [sym_raw_string] = ACTIONS(715), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(715), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(715), - [anon_sym_BQUOTE] = ACTIONS(715), - [anon_sym_LT_LPAREN] = ACTIONS(715), - [anon_sym_GT_LPAREN] = ACTIONS(715), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(717), - [sym_word] = ACTIONS(717), - [anon_sym_LF] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(717), - }, - [2174] = { - [sym_subscript] = STATE(2342), - [sym_variable_name] = ACTIONS(5364), - [anon_sym_BANG] = ACTIONS(5366), - [anon_sym_DASH] = ACTIONS(5368), - [anon_sym_DOLLAR] = ACTIONS(5368), - [anon_sym_POUND] = ACTIONS(5366), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5370), - [anon_sym_STAR] = ACTIONS(5372), - [anon_sym_AT] = ACTIONS(5372), - [anon_sym_QMARK] = ACTIONS(5372), - [anon_sym_0] = ACTIONS(5370), - [anon_sym__] = ACTIONS(5370), - }, - [2175] = { - [sym__terminated_statement] = STATE(2345), + [sym_redirected_statement] = STATE(2343), [sym_for_statement] = STATE(2343), [sym_c_style_for_statement] = STATE(2343), [sym_while_statement] = STATE(2343), [sym_if_statement] = STATE(2343), [sym_case_statement] = STATE(2343), [sym_function_definition] = STATE(2343), + [sym_compound_statement] = STATE(2343), [sym_subshell] = STATE(2343), [sym_pipeline] = STATE(2343), [sym_list] = STATE(2343), @@ -63511,398 +68937,599 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(2343), [sym_unset_command] = STATE(2343), [sym_command] = STATE(2343), - [sym_command_name] = STATE(92), + [sym_command_name] = STATE(1930), [sym_variable_assignment] = STATE(2344), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(2345), - [aux_sym_command_repeat1] = STATE(96), + [sym_subscript] = STATE(1932), + [sym_file_redirect] = STATE(1935), + [sym_concatenation] = STATE(1933), + [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), + [aux_sym_command_repeat1] = STATE(1935), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), + [sym_variable_name] = ACTIONS(4418), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(4426), + [anon_sym_typeset] = ACTIONS(4426), + [anon_sym_export] = ACTIONS(4426), + [anon_sym_readonly] = ACTIONS(4426), + [anon_sym_local] = ACTIONS(4426), + [anon_sym_unset] = ACTIONS(4428), + [anon_sym_unsetenv] = ACTIONS(4428), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(4430), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_DOLLAR] = ACTIONS(4434), + [sym_raw_string] = ACTIONS(4436), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4440), + [anon_sym_BQUOTE] = ACTIONS(4442), + [anon_sym_LT_LPAREN] = ACTIONS(4444), + [anon_sym_GT_LPAREN] = ACTIONS(4444), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4446), }, - [2176] = { - [sym__terminated_statement] = STATE(2348), - [sym_for_statement] = STATE(2346), - [sym_c_style_for_statement] = STATE(2346), - [sym_while_statement] = STATE(2346), - [sym_if_statement] = STATE(2346), - [sym_case_statement] = STATE(2346), - [sym_function_definition] = STATE(2346), - [sym_subshell] = STATE(2346), - [sym_pipeline] = STATE(2346), - [sym_list] = STATE(2346), - [sym_negated_command] = STATE(2346), - [sym_test_command] = STATE(2346), - [sym_declaration_command] = STATE(2346), - [sym_unset_command] = STATE(2346), - [sym_command] = STATE(2346), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(2347), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(2348), - [aux_sym_command_repeat1] = STATE(176), + [2165] = { + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_esac] = ACTIONS(5396), + [anon_sym_SEMI_SEMI] = ACTIONS(927), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(5398), + [anon_sym_DQUOTE] = ACTIONS(5400), + [anon_sym_DOLLAR] = ACTIONS(5398), + [sym_raw_string] = ACTIONS(5400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5400), + [anon_sym_BQUOTE] = ACTIONS(5400), + [anon_sym_LT_LPAREN] = ACTIONS(5400), + [anon_sym_GT_LPAREN] = ACTIONS(5400), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5398), + }, + [2166] = { + [sym_redirected_statement] = STATE(2345), + [sym_for_statement] = STATE(2345), + [sym_c_style_for_statement] = STATE(2345), + [sym_while_statement] = STATE(2345), + [sym_if_statement] = STATE(2345), + [sym_case_statement] = STATE(2345), + [sym_function_definition] = STATE(2345), + [sym_compound_statement] = STATE(2345), + [sym_subshell] = STATE(2345), + [sym_pipeline] = STATE(2345), + [sym_list] = STATE(2345), + [sym_negated_command] = STATE(2345), + [sym_test_command] = STATE(2345), + [sym_declaration_command] = STATE(2345), + [sym_unset_command] = STATE(2345), + [sym_command] = STATE(2345), + [sym_command_name] = STATE(1930), + [sym_variable_assignment] = STATE(2346), + [sym_subscript] = STATE(1932), + [sym_file_redirect] = STATE(1935), + [sym_concatenation] = STATE(1933), + [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), + [aux_sym_command_repeat1] = STATE(1935), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), + [sym_variable_name] = ACTIONS(4418), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(4426), + [anon_sym_typeset] = ACTIONS(4426), + [anon_sym_export] = ACTIONS(4426), + [anon_sym_readonly] = ACTIONS(4426), + [anon_sym_local] = ACTIONS(4426), + [anon_sym_unset] = ACTIONS(4428), + [anon_sym_unsetenv] = ACTIONS(4428), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(4430), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_DOLLAR] = ACTIONS(4434), + [sym_raw_string] = ACTIONS(4436), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4440), + [anon_sym_BQUOTE] = ACTIONS(4442), + [anon_sym_LT_LPAREN] = ACTIONS(4444), + [anon_sym_GT_LPAREN] = ACTIONS(4444), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4446), }, - [2177] = { - [sym__terminated_statement] = STATE(2351), - [sym_for_statement] = STATE(2349), - [sym_c_style_for_statement] = STATE(2349), - [sym_while_statement] = STATE(2349), - [sym_if_statement] = STATE(2349), - [sym_case_statement] = STATE(2349), - [sym_function_definition] = STATE(2349), - [sym_subshell] = STATE(2349), - [sym_pipeline] = STATE(2349), - [sym_list] = STATE(2349), - [sym_negated_command] = STATE(2349), - [sym_test_command] = STATE(2349), - [sym_declaration_command] = STATE(2349), - [sym_unset_command] = STATE(2349), - [sym_command] = STATE(2349), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(2350), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(2351), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [2167] = { + [sym_concatenation] = STATE(511), + [sym_string] = STATE(2350), + [sym_simple_expansion] = STATE(2350), + [sym_string_expansion] = STATE(2350), + [sym_expansion] = STATE(2350), + [sym_command_substitution] = STATE(2350), + [sym_process_substitution] = STATE(2350), + [sym__special_characters] = ACTIONS(5402), + [anon_sym_DQUOTE] = ACTIONS(5404), + [anon_sym_DOLLAR] = ACTIONS(5406), + [sym_raw_string] = ACTIONS(5408), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5412), + [anon_sym_BQUOTE] = ACTIONS(5414), + [anon_sym_LT_LPAREN] = ACTIONS(5416), + [anon_sym_GT_LPAREN] = ACTIONS(5416), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5408), }, - [2178] = { - [anon_sym_EQ] = ACTIONS(5348), - [anon_sym_PLUS_EQ] = ACTIONS(5348), - [sym_comment] = ACTIONS(55), + [2168] = { + [sym_concatenation] = STATE(515), + [sym_string] = STATE(2356), + [sym_simple_expansion] = STATE(2356), + [sym_string_expansion] = STATE(2356), + [sym_expansion] = STATE(2356), + [sym_command_substitution] = STATE(2356), + [sym_process_substitution] = STATE(2356), + [sym__special_characters] = ACTIONS(5418), + [anon_sym_DQUOTE] = ACTIONS(5404), + [anon_sym_DOLLAR] = ACTIONS(5406), + [sym_raw_string] = ACTIONS(5420), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5412), + [anon_sym_BQUOTE] = ACTIONS(5414), + [anon_sym_LT_LPAREN] = ACTIONS(5416), + [anon_sym_GT_LPAREN] = ACTIONS(5416), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5420), }, - [2179] = { - [sym_variable_assignment] = STATE(2352), - [sym_subscript] = STATE(2178), - [sym_concatenation] = STATE(2352), + [2169] = { + [anon_sym_SEMI] = ACTIONS(5422), + [anon_sym_SEMI_SEMI] = ACTIONS(5424), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5424), + [anon_sym_AMP] = ACTIONS(5424), + }, + [2170] = { + [sym_file_redirect] = STATE(2358), + [sym_heredoc_redirect] = STATE(2358), + [sym_herestring_redirect] = STATE(2358), + [aux_sym_redirected_statement_repeat1] = STATE(2358), + [sym__simple_heredoc_body] = ACTIONS(947), + [sym__heredoc_body_beginning] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(5031), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_esac] = ACTIONS(947), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_SEMI_SEMI] = ACTIONS(947), + [anon_sym_PIPE_AMP] = ACTIONS(947), + [anon_sym_AMP_AMP] = ACTIONS(947), + [anon_sym_PIPE_PIPE] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(5045), + [anon_sym_GT] = ACTIONS(5045), + [anon_sym_GT_GT] = ACTIONS(5047), + [anon_sym_AMP_GT] = ACTIONS(5045), + [anon_sym_AMP_GT_GT] = ACTIONS(5047), + [anon_sym_LT_AMP] = ACTIONS(5047), + [anon_sym_GT_AMP] = ACTIONS(5047), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(5049), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(947), + [anon_sym_AMP] = ACTIONS(949), + }, + [2171] = { + [sym_concatenation] = STATE(2359), + [sym_string] = STATE(2361), + [sym_simple_expansion] = STATE(2361), + [sym_string_expansion] = STATE(2361), + [sym_expansion] = STATE(2361), + [sym_command_substitution] = STATE(2361), + [sym_process_substitution] = STATE(2361), + [sym_regex] = ACTIONS(5426), + [sym__special_characters] = ACTIONS(5428), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_DOLLAR] = ACTIONS(4434), + [sym_raw_string] = ACTIONS(5430), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4440), + [anon_sym_BQUOTE] = ACTIONS(4442), + [anon_sym_LT_LPAREN] = ACTIONS(4444), + [anon_sym_GT_LPAREN] = ACTIONS(4444), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5430), + }, + [2172] = { + [aux_sym_concatenation_repeat1] = STATE(2142), + [sym__simple_heredoc_body] = ACTIONS(957), + [sym__heredoc_body_beginning] = ACTIONS(957), + [sym_file_descriptor] = ACTIONS(957), + [sym__concat] = ACTIONS(5007), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_esac] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(959), + [anon_sym_SEMI_SEMI] = ACTIONS(957), + [anon_sym_PIPE_AMP] = ACTIONS(957), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_EQ_TILDE] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(957), + [anon_sym_AMP_GT] = ACTIONS(959), + [anon_sym_AMP_GT_GT] = ACTIONS(957), + [anon_sym_LT_AMP] = ACTIONS(957), + [anon_sym_GT_AMP] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_LT_LT_DASH] = ACTIONS(957), + [anon_sym_LT_LT_LT] = ACTIONS(957), + [sym__special_characters] = ACTIONS(957), + [anon_sym_DQUOTE] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(959), + [sym_raw_string] = ACTIONS(957), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), + [anon_sym_BQUOTE] = ACTIONS(957), + [anon_sym_LT_LPAREN] = ACTIONS(957), + [anon_sym_GT_LPAREN] = ACTIONS(957), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(959), + [anon_sym_LF] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), + }, + [2173] = { + [aux_sym_concatenation_repeat1] = STATE(2142), + [sym__simple_heredoc_body] = ACTIONS(961), + [sym__heredoc_body_beginning] = ACTIONS(961), + [sym_file_descriptor] = ACTIONS(961), + [sym__concat] = ACTIONS(5007), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_esac] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_SEMI_SEMI] = ACTIONS(961), + [anon_sym_PIPE_AMP] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_EQ_TILDE] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(963), + [anon_sym_GT] = ACTIONS(963), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_AMP_GT] = ACTIONS(963), + [anon_sym_AMP_GT_GT] = ACTIONS(961), + [anon_sym_LT_AMP] = ACTIONS(961), + [anon_sym_GT_AMP] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(963), + [anon_sym_LT_LT_DASH] = ACTIONS(961), + [anon_sym_LT_LT_LT] = ACTIONS(961), + [sym__special_characters] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(963), + [sym_raw_string] = ACTIONS(961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(961), + [anon_sym_BQUOTE] = ACTIONS(961), + [anon_sym_LT_LPAREN] = ACTIONS(961), + [anon_sym_GT_LPAREN] = ACTIONS(961), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(963), + [anon_sym_LF] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + }, + [2174] = { + [sym_concatenation] = STATE(2362), [sym_string] = STATE(2173), [sym_simple_expansion] = STATE(2173), [sym_string_expansion] = STATE(2173), [sym_expansion] = STATE(2173), [sym_command_substitution] = STATE(2173), [sym_process_substitution] = STATE(2173), - [aux_sym_declaration_command_repeat1] = STATE(2352), - [sym_variable_name] = ACTIONS(5009), - [anon_sym_SEMI] = ACTIONS(731), - [anon_sym_esac] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_SEMI_SEMI] = ACTIONS(729), - [anon_sym_PIPE_AMP] = ACTIONS(729), - [anon_sym_AMP_AMP] = ACTIONS(729), - [anon_sym_PIPE_PIPE] = ACTIONS(729), - [sym__special_characters] = ACTIONS(5011), - [anon_sym_DQUOTE] = ACTIONS(5013), - [anon_sym_DOLLAR] = ACTIONS(5015), - [sym_raw_string] = ACTIONS(5017), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LT_LPAREN] = ACTIONS(5025), - [anon_sym_GT_LPAREN] = ACTIONS(5025), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5374), - [sym_word] = ACTIONS(5029), - [anon_sym_LF] = ACTIONS(729), - [anon_sym_AMP] = ACTIONS(731), + [aux_sym_command_repeat2] = STATE(2362), + [sym__simple_heredoc_body] = ACTIONS(965), + [sym__heredoc_body_beginning] = ACTIONS(965), + [sym_file_descriptor] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_esac] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(965), + [anon_sym_PIPE_AMP] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(965), + [anon_sym_EQ_TILDE] = ACTIONS(5053), + [anon_sym_EQ_EQ] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(965), + [anon_sym_AMP_GT] = ACTIONS(967), + [anon_sym_AMP_GT_GT] = ACTIONS(965), + [anon_sym_LT_AMP] = ACTIONS(965), + [anon_sym_GT_AMP] = ACTIONS(965), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(965), + [anon_sym_LT_LT_LT] = ACTIONS(965), + [sym__special_characters] = ACTIONS(5055), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_DOLLAR] = ACTIONS(4434), + [sym_raw_string] = ACTIONS(5057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4440), + [anon_sym_BQUOTE] = ACTIONS(4442), + [anon_sym_LT_LPAREN] = ACTIONS(4444), + [anon_sym_GT_LPAREN] = ACTIONS(4444), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5059), + [anon_sym_LF] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), + }, + [2175] = { + [anon_sym_esac] = ACTIONS(5396), + [sym__special_characters] = ACTIONS(5400), + [anon_sym_DQUOTE] = ACTIONS(5400), + [anon_sym_DOLLAR] = ACTIONS(5398), + [sym_raw_string] = ACTIONS(5400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5400), + [anon_sym_BQUOTE] = ACTIONS(5400), + [anon_sym_LT_LPAREN] = ACTIONS(5400), + [anon_sym_GT_LPAREN] = ACTIONS(5400), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5398), + }, + [2176] = { + [sym_file_redirect] = STATE(2170), + [sym_heredoc_redirect] = STATE(2170), + [sym_heredoc_body] = STATE(2169), + [sym_herestring_redirect] = STATE(2170), + [aux_sym_redirected_statement_repeat1] = STATE(2170), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(5031), + [anon_sym_SEMI] = ACTIONS(5033), + [anon_sym_esac] = ACTIONS(5432), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_SEMI_SEMI] = ACTIONS(5434), + [anon_sym_PIPE_AMP] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE_PIPE] = ACTIONS(5043), + [anon_sym_LT] = ACTIONS(5045), + [anon_sym_GT] = ACTIONS(5045), + [anon_sym_GT_GT] = ACTIONS(5047), + [anon_sym_AMP_GT] = ACTIONS(5045), + [anon_sym_AMP_GT_GT] = ACTIONS(5047), + [anon_sym_LT_AMP] = ACTIONS(5047), + [anon_sym_GT_AMP] = ACTIONS(5047), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(5049), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5051), + [anon_sym_AMP] = ACTIONS(5033), + }, + [2177] = { + [sym_file_redirect] = STATE(2170), + [sym_heredoc_redirect] = STATE(2170), + [sym_heredoc_body] = STATE(2169), + [sym_herestring_redirect] = STATE(2170), + [aux_sym_redirected_statement_repeat1] = STATE(2170), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5033), + [anon_sym_esac] = ACTIONS(5396), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_SEMI_SEMI] = ACTIONS(5434), + [anon_sym_PIPE_AMP] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE_PIPE] = ACTIONS(5043), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(5049), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5051), + [anon_sym_AMP] = ACTIONS(5033), + }, + [2178] = { + [sym__terminated_statement] = STATE(2178), + [sym_redirected_statement] = STATE(2364), + [sym_for_statement] = STATE(2364), + [sym_c_style_for_statement] = STATE(2364), + [sym_while_statement] = STATE(2364), + [sym_if_statement] = STATE(2364), + [sym_case_statement] = STATE(2364), + [sym_function_definition] = STATE(2364), + [sym_compound_statement] = STATE(2364), + [sym_subshell] = STATE(2364), + [sym_pipeline] = STATE(2364), + [sym_list] = STATE(2364), + [sym_negated_command] = STATE(2364), + [sym_test_command] = STATE(2364), + [sym_declaration_command] = STATE(2364), + [sym_unset_command] = STATE(2364), + [sym_command] = STATE(2364), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(2365), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(2178), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(973), + [sym_variable_name] = ACTIONS(976), + [anon_sym_for] = ACTIONS(979), + [anon_sym_LPAREN_LPAREN] = ACTIONS(982), + [anon_sym_while] = ACTIONS(985), + [anon_sym_if] = ACTIONS(988), + [anon_sym_case] = ACTIONS(991), + [anon_sym_esac] = ACTIONS(3596), + [anon_sym_SEMI_SEMI] = ACTIONS(1441), + [anon_sym_function] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(997), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1009), + [anon_sym_declare] = ACTIONS(1012), + [anon_sym_typeset] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1012), + [anon_sym_readonly] = ACTIONS(1012), + [anon_sym_local] = ACTIONS(1012), + [anon_sym_unset] = ACTIONS(1015), + [anon_sym_unsetenv] = ACTIONS(1015), + [anon_sym_LT] = ACTIONS(1018), + [anon_sym_GT] = ACTIONS(1018), + [anon_sym_GT_GT] = ACTIONS(1021), + [anon_sym_AMP_GT] = ACTIONS(1018), + [anon_sym_AMP_GT_GT] = ACTIONS(1021), + [anon_sym_LT_AMP] = ACTIONS(1021), + [anon_sym_GT_AMP] = ACTIONS(1021), + [sym__special_characters] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1027), + [anon_sym_DOLLAR] = ACTIONS(1030), + [sym_raw_string] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), + [anon_sym_BQUOTE] = ACTIONS(1042), + [anon_sym_LT_LPAREN] = ACTIONS(1045), + [anon_sym_GT_LPAREN] = ACTIONS(1045), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1048), + }, + [2179] = { + [sym_concatenation] = STATE(2366), + [sym_string] = STATE(2173), + [sym_simple_expansion] = STATE(2173), + [sym_string_expansion] = STATE(2173), + [sym_expansion] = STATE(2173), + [sym_command_substitution] = STATE(2173), + [sym_process_substitution] = STATE(2173), + [aux_sym_command_repeat2] = STATE(2366), + [sym__simple_heredoc_body] = ACTIONS(965), + [sym__heredoc_body_beginning] = ACTIONS(965), + [sym_file_descriptor] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_esac] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_SEMI_SEMI] = ACTIONS(965), + [anon_sym_PIPE_AMP] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(965), + [anon_sym_EQ_TILDE] = ACTIONS(5053), + [anon_sym_EQ_EQ] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(965), + [anon_sym_AMP_GT] = ACTIONS(967), + [anon_sym_AMP_GT_GT] = ACTIONS(965), + [anon_sym_LT_AMP] = ACTIONS(965), + [anon_sym_GT_AMP] = ACTIONS(965), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_LT_LT_DASH] = ACTIONS(965), + [anon_sym_LT_LT_LT] = ACTIONS(965), + [sym__special_characters] = ACTIONS(5055), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_DOLLAR] = ACTIONS(4434), + [sym_raw_string] = ACTIONS(5057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4440), + [anon_sym_BQUOTE] = ACTIONS(4442), + [anon_sym_LT_LPAREN] = ACTIONS(4444), + [anon_sym_GT_LPAREN] = ACTIONS(4444), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5059), + [anon_sym_LF] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(967), }, [2180] = { - [aux_sym_concatenation_repeat1] = STATE(2354), - [sym__concat] = ACTIONS(5376), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_esac] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [sym__special_characters] = ACTIONS(737), - [anon_sym_DQUOTE] = ACTIONS(737), - [anon_sym_DOLLAR] = ACTIONS(739), - [sym_raw_string] = ACTIONS(737), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(737), - [anon_sym_BQUOTE] = ACTIONS(737), - [anon_sym_LT_LPAREN] = ACTIONS(737), - [anon_sym_GT_LPAREN] = ACTIONS(737), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(739), - [sym_word] = ACTIONS(739), - [anon_sym_LF] = ACTIONS(737), - [anon_sym_AMP] = ACTIONS(739), - }, - [2181] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(2357), - [anon_sym_DQUOTE] = ACTIONS(5378), - [anon_sym_DOLLAR] = ACTIONS(5380), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), - }, - [2182] = { - [sym_string] = STATE(2359), - [anon_sym_DASH] = ACTIONS(5382), - [anon_sym_DQUOTE] = ACTIONS(5033), - [anon_sym_DOLLAR] = ACTIONS(5382), - [sym_raw_string] = ACTIONS(5384), - [anon_sym_POUND] = ACTIONS(5382), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5386), - [anon_sym_STAR] = ACTIONS(5388), - [anon_sym_AT] = ACTIONS(5388), - [anon_sym_QMARK] = ACTIONS(5388), - [anon_sym_0] = ACTIONS(5386), - [anon_sym__] = ACTIONS(5386), - }, - [2183] = { - [aux_sym_concatenation_repeat1] = STATE(2354), - [sym__concat] = ACTIONS(5376), - [anon_sym_SEMI] = ACTIONS(755), - [anon_sym_esac] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(755), - [anon_sym_SEMI_SEMI] = ACTIONS(753), - [anon_sym_PIPE_AMP] = ACTIONS(753), - [anon_sym_AMP_AMP] = ACTIONS(753), - [anon_sym_PIPE_PIPE] = ACTIONS(753), - [sym__special_characters] = ACTIONS(753), - [anon_sym_DQUOTE] = ACTIONS(753), - [anon_sym_DOLLAR] = ACTIONS(755), - [sym_raw_string] = ACTIONS(753), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(753), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(753), - [anon_sym_LT_LPAREN] = ACTIONS(753), - [anon_sym_GT_LPAREN] = ACTIONS(753), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(755), - [sym_word] = ACTIONS(755), - [anon_sym_LF] = ACTIONS(753), - [anon_sym_AMP] = ACTIONS(755), - }, - [2184] = { - [sym_subscript] = STATE(2364), - [sym_variable_name] = ACTIONS(5390), - [anon_sym_BANG] = ACTIONS(5392), - [anon_sym_DASH] = ACTIONS(5394), - [anon_sym_DOLLAR] = ACTIONS(5394), - [anon_sym_POUND] = ACTIONS(5392), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5396), - [anon_sym_STAR] = ACTIONS(5398), - [anon_sym_AT] = ACTIONS(5398), - [anon_sym_QMARK] = ACTIONS(5398), - [anon_sym_0] = ACTIONS(5396), - [anon_sym__] = ACTIONS(5396), - }, - [2185] = { - [sym__terminated_statement] = STATE(2367), - [sym_for_statement] = STATE(2365), - [sym_c_style_for_statement] = STATE(2365), - [sym_while_statement] = STATE(2365), - [sym_if_statement] = STATE(2365), - [sym_case_statement] = STATE(2365), - [sym_function_definition] = STATE(2365), - [sym_subshell] = STATE(2365), - [sym_pipeline] = STATE(2365), - [sym_list] = STATE(2365), - [sym_negated_command] = STATE(2365), - [sym_test_command] = STATE(2365), - [sym_declaration_command] = STATE(2365), - [sym_unset_command] = STATE(2365), - [sym_command] = STATE(2365), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(2366), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(2367), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), - }, - [2186] = { - [sym__terminated_statement] = STATE(2370), + [sym__terminated_statement] = STATE(2178), + [sym_redirected_statement] = STATE(2368), [sym_for_statement] = STATE(2368), [sym_c_style_for_statement] = STATE(2368), [sym_while_statement] = STATE(2368), [sym_if_statement] = STATE(2368), [sym_case_statement] = STATE(2368), [sym_function_definition] = STATE(2368), + [sym_compound_statement] = STATE(2368), [sym_subshell] = STATE(2368), [sym_pipeline] = STATE(2368), [sym_list] = STATE(2368), @@ -63911,3496 +69538,3586 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(2368), [sym_unset_command] = STATE(2368), [sym_command] = STATE(2368), - [sym_command_name] = STATE(173), + [sym_command_name] = STATE(1930), [sym_variable_assignment] = STATE(2369), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(2370), - [aux_sym_command_repeat1] = STATE(176), + [sym_subscript] = STATE(1932), + [sym_file_redirect] = STATE(1935), + [sym_concatenation] = STATE(1933), + [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), + [aux_sym__statements_repeat1] = STATE(2178), + [aux_sym_command_repeat1] = STATE(1935), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), + [sym_variable_name] = ACTIONS(4418), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), + [anon_sym_esac] = ACTIONS(5396), + [anon_sym_SEMI_SEMI] = ACTIONS(5436), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(4426), + [anon_sym_typeset] = ACTIONS(4426), + [anon_sym_export] = ACTIONS(4426), + [anon_sym_readonly] = ACTIONS(4426), + [anon_sym_local] = ACTIONS(4426), + [anon_sym_unset] = ACTIONS(4428), + [anon_sym_unsetenv] = ACTIONS(4428), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(4430), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_DOLLAR] = ACTIONS(4434), + [sym_raw_string] = ACTIONS(4436), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4440), + [anon_sym_BQUOTE] = ACTIONS(4442), + [anon_sym_LT_LPAREN] = ACTIONS(4444), + [anon_sym_GT_LPAREN] = ACTIONS(4444), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4446), + }, + [2181] = { + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_esac] = ACTIONS(5438), + [anon_sym_SEMI_SEMI] = ACTIONS(927), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(5440), + [anon_sym_DQUOTE] = ACTIONS(5442), + [anon_sym_DOLLAR] = ACTIONS(5440), + [sym_raw_string] = ACTIONS(5442), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5442), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5442), + [anon_sym_BQUOTE] = ACTIONS(5442), + [anon_sym_LT_LPAREN] = ACTIONS(5442), + [anon_sym_GT_LPAREN] = ACTIONS(5442), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5440), + }, + [2182] = { + [anon_sym_esac] = ACTIONS(5438), + [sym__special_characters] = ACTIONS(5442), + [anon_sym_DQUOTE] = ACTIONS(5442), + [anon_sym_DOLLAR] = ACTIONS(5440), + [sym_raw_string] = ACTIONS(5442), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5442), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5442), + [anon_sym_BQUOTE] = ACTIONS(5442), + [anon_sym_LT_LPAREN] = ACTIONS(5442), + [anon_sym_GT_LPAREN] = ACTIONS(5442), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5440), + }, + [2183] = { + [sym_file_redirect] = STATE(2170), + [sym_heredoc_redirect] = STATE(2170), + [sym_heredoc_body] = STATE(2169), + [sym_herestring_redirect] = STATE(2170), + [aux_sym_redirected_statement_repeat1] = STATE(2170), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(5031), + [anon_sym_SEMI] = ACTIONS(5033), + [anon_sym_esac] = ACTIONS(5444), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_SEMI_SEMI] = ACTIONS(5446), + [anon_sym_PIPE_AMP] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE_PIPE] = ACTIONS(5043), + [anon_sym_LT] = ACTIONS(5045), + [anon_sym_GT] = ACTIONS(5045), + [anon_sym_GT_GT] = ACTIONS(5047), + [anon_sym_AMP_GT] = ACTIONS(5045), + [anon_sym_AMP_GT_GT] = ACTIONS(5047), + [anon_sym_LT_AMP] = ACTIONS(5047), + [anon_sym_GT_AMP] = ACTIONS(5047), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(5049), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5051), + [anon_sym_AMP] = ACTIONS(5033), + }, + [2184] = { + [sym_file_redirect] = STATE(2170), + [sym_heredoc_redirect] = STATE(2170), + [sym_heredoc_body] = STATE(2169), + [sym_herestring_redirect] = STATE(2170), + [aux_sym_redirected_statement_repeat1] = STATE(2170), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5033), + [anon_sym_esac] = ACTIONS(5438), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_SEMI_SEMI] = ACTIONS(5446), + [anon_sym_PIPE_AMP] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE_PIPE] = ACTIONS(5043), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(5049), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5051), + [anon_sym_AMP] = ACTIONS(5033), + }, + [2185] = { + [sym__terminated_statement] = STATE(2178), + [sym_redirected_statement] = STATE(2372), + [sym_for_statement] = STATE(2372), + [sym_c_style_for_statement] = STATE(2372), + [sym_while_statement] = STATE(2372), + [sym_if_statement] = STATE(2372), + [sym_case_statement] = STATE(2372), + [sym_function_definition] = STATE(2372), + [sym_compound_statement] = STATE(2372), + [sym_subshell] = STATE(2372), + [sym_pipeline] = STATE(2372), + [sym_list] = STATE(2372), + [sym_negated_command] = STATE(2372), + [sym_test_command] = STATE(2372), + [sym_declaration_command] = STATE(2372), + [sym_unset_command] = STATE(2372), + [sym_command] = STATE(2372), + [sym_command_name] = STATE(1930), + [sym_variable_assignment] = STATE(2373), + [sym_subscript] = STATE(1932), + [sym_file_redirect] = STATE(1935), + [sym_concatenation] = STATE(1933), + [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), + [aux_sym__statements_repeat1] = STATE(2178), + [aux_sym_command_repeat1] = STATE(1935), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(4418), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_esac] = ACTIONS(5438), + [anon_sym_SEMI_SEMI] = ACTIONS(5448), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(4424), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(4426), + [anon_sym_typeset] = ACTIONS(4426), + [anon_sym_export] = ACTIONS(4426), + [anon_sym_readonly] = ACTIONS(4426), + [anon_sym_local] = ACTIONS(4426), + [anon_sym_unset] = ACTIONS(4428), + [anon_sym_unsetenv] = ACTIONS(4428), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(4430), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_DOLLAR] = ACTIONS(4434), + [sym_raw_string] = ACTIONS(4436), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4440), + [anon_sym_BQUOTE] = ACTIONS(4442), + [anon_sym_LT_LPAREN] = ACTIONS(4444), + [anon_sym_GT_LPAREN] = ACTIONS(4444), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4446), + }, + [2186] = { + [sym__terminated_statement] = STATE(2377), + [sym_redirected_statement] = STATE(2375), + [sym_for_statement] = STATE(2375), + [sym_c_style_for_statement] = STATE(2375), + [sym_while_statement] = STATE(2375), + [sym_if_statement] = STATE(2375), + [sym_case_statement] = STATE(2375), + [sym_function_definition] = STATE(2375), + [sym_compound_statement] = STATE(2375), + [sym_subshell] = STATE(2375), + [sym_pipeline] = STATE(2375), + [sym_list] = STATE(2375), + [sym_negated_command] = STATE(2375), + [sym_test_command] = STATE(2375), + [sym_declaration_command] = STATE(2375), + [sym_unset_command] = STATE(2375), + [sym_command] = STATE(2375), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(2376), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(2377), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_SEMI_SEMI] = ACTIONS(5450), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_typeset] = ACTIONS(101), + [anon_sym_export] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_local] = ACTIONS(101), + [anon_sym_unset] = ACTIONS(103), + [anon_sym_unsetenv] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [2187] = { - [sym__terminated_statement] = STATE(2373), - [sym_for_statement] = STATE(2371), - [sym_c_style_for_statement] = STATE(2371), - [sym_while_statement] = STATE(2371), - [sym_if_statement] = STATE(2371), - [sym_case_statement] = STATE(2371), - [sym_function_definition] = STATE(2371), - [sym_subshell] = STATE(2371), - [sym_pipeline] = STATE(2371), - [sym_list] = STATE(2371), - [sym_negated_command] = STATE(2371), - [sym_test_command] = STATE(2371), - [sym_declaration_command] = STATE(2371), - [sym_unset_command] = STATE(2371), - [sym_command] = STATE(2371), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(2372), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(2373), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [aux_sym_case_item_repeat1] = STATE(1937), + [anon_sym_PIPE] = ACTIONS(3617), + [anon_sym_RPAREN] = ACTIONS(5452), + [sym_comment] = ACTIONS(57), }, [2188] = { - [sym_concatenation] = STATE(2374), - [sym_string] = STATE(2183), - [sym_simple_expansion] = STATE(2183), - [sym_string_expansion] = STATE(2183), - [sym_expansion] = STATE(2183), - [sym_command_substitution] = STATE(2183), - [sym_process_substitution] = STATE(2183), - [aux_sym_unset_command_repeat1] = STATE(2374), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_esac] = ACTIONS(769), - [anon_sym_PIPE] = ACTIONS(769), - [anon_sym_SEMI_SEMI] = ACTIONS(767), - [anon_sym_PIPE_AMP] = ACTIONS(767), - [anon_sym_AMP_AMP] = ACTIONS(767), - [anon_sym_PIPE_PIPE] = ACTIONS(767), - [sym__special_characters] = ACTIONS(5031), - [anon_sym_DQUOTE] = ACTIONS(5033), - [anon_sym_DOLLAR] = ACTIONS(5035), - [sym_raw_string] = ACTIONS(5037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5041), - [anon_sym_BQUOTE] = ACTIONS(5043), - [anon_sym_LT_LPAREN] = ACTIONS(5045), - [anon_sym_GT_LPAREN] = ACTIONS(5045), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5400), - [sym_word] = ACTIONS(5049), - [anon_sym_LF] = ACTIONS(767), - [anon_sym_AMP] = ACTIONS(769), + [sym__terminated_statement] = STATE(2382), + [sym_redirected_statement] = STATE(2380), + [sym_for_statement] = STATE(2380), + [sym_c_style_for_statement] = STATE(2380), + [sym_while_statement] = STATE(2380), + [sym_if_statement] = STATE(2380), + [sym_case_statement] = STATE(2380), + [sym_function_definition] = STATE(2380), + [sym_compound_statement] = STATE(2380), + [sym_subshell] = STATE(2380), + [sym_pipeline] = STATE(2380), + [sym_list] = STATE(2380), + [sym_negated_command] = STATE(2380), + [sym_test_command] = STATE(2380), + [sym_declaration_command] = STATE(2380), + [sym_unset_command] = STATE(2380), + [sym_command] = STATE(2380), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(2381), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(2382), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_SEMI_SEMI] = ACTIONS(5454), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_typeset] = ACTIONS(101), + [anon_sym_export] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_local] = ACTIONS(101), + [anon_sym_unset] = ACTIONS(103), + [anon_sym_unsetenv] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [2189] = { - [sym_string] = STATE(2375), - [sym_simple_expansion] = STATE(2375), - [sym_string_expansion] = STATE(2375), - [sym_expansion] = STATE(2375), - [sym_command_substitution] = STATE(2375), - [sym_process_substitution] = STATE(2375), - [sym__special_characters] = ACTIONS(5402), - [anon_sym_DQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [sym_raw_string] = ACTIONS(5402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), - [anon_sym_BQUOTE] = ACTIONS(4479), - [anon_sym_LT_LPAREN] = ACTIONS(4481), - [anon_sym_GT_LPAREN] = ACTIONS(4481), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5402), + [aux_sym_case_item_repeat1] = STATE(1937), + [anon_sym_PIPE] = ACTIONS(3617), + [anon_sym_RPAREN] = ACTIONS(5456), + [sym_comment] = ACTIONS(57), }, [2190] = { - [aux_sym_concatenation_repeat1] = STATE(2376), - [sym__simple_heredoc_body] = ACTIONS(807), - [sym__heredoc_body_beginning] = ACTIONS(807), - [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(5051), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_esac] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_EQ_TILDE] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(809), - [anon_sym_AMP_GT_GT] = ACTIONS(807), - [anon_sym_LT_AMP] = ACTIONS(807), - [anon_sym_GT_AMP] = ACTIONS(807), - [anon_sym_LT_LT] = ACTIONS(809), - [anon_sym_LT_LT_DASH] = ACTIONS(807), - [anon_sym_LT_LT_LT] = ACTIONS(807), - [sym__special_characters] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_LT_LPAREN] = ACTIONS(807), - [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(809), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), + [sym__simple_heredoc_body] = ACTIONS(5458), + [sym__heredoc_body_beginning] = ACTIONS(5458), + [sym_file_descriptor] = ACTIONS(5458), + [ts_builtin_sym_end] = ACTIONS(5458), + [anon_sym_SEMI] = ACTIONS(5460), + [anon_sym_esac] = ACTIONS(5458), + [anon_sym_PIPE] = ACTIONS(5460), + [anon_sym_RPAREN] = ACTIONS(5458), + [anon_sym_SEMI_SEMI] = ACTIONS(5458), + [anon_sym_PIPE_AMP] = ACTIONS(5458), + [anon_sym_AMP_AMP] = ACTIONS(5458), + [anon_sym_PIPE_PIPE] = ACTIONS(5458), + [anon_sym_LT] = ACTIONS(5460), + [anon_sym_GT] = ACTIONS(5460), + [anon_sym_GT_GT] = ACTIONS(5458), + [anon_sym_AMP_GT] = ACTIONS(5460), + [anon_sym_AMP_GT_GT] = ACTIONS(5458), + [anon_sym_LT_AMP] = ACTIONS(5458), + [anon_sym_GT_AMP] = ACTIONS(5458), + [anon_sym_LT_LT] = ACTIONS(5460), + [anon_sym_LT_LT_DASH] = ACTIONS(5458), + [anon_sym_LT_LT_LT] = ACTIONS(5458), + [anon_sym_BQUOTE] = ACTIONS(5458), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5458), + [anon_sym_AMP] = ACTIONS(5460), }, [2191] = { - [sym__simple_heredoc_body] = ACTIONS(811), - [sym__heredoc_body_beginning] = ACTIONS(811), - [sym_file_descriptor] = ACTIONS(811), - [sym__concat] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(813), - [anon_sym_esac] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(813), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_EQ_TILDE] = ACTIONS(813), - [anon_sym_EQ_EQ] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_AMP_GT] = ACTIONS(813), - [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_LT_AMP] = ACTIONS(811), - [anon_sym_GT_AMP] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(813), - [anon_sym_LT_LT_DASH] = ACTIONS(811), - [anon_sym_LT_LT_LT] = ACTIONS(811), - [sym__special_characters] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(813), - [sym_raw_string] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(813), - [anon_sym_LF] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(813), + [sym__simple_heredoc_body] = ACTIONS(5462), + [sym__heredoc_body_beginning] = ACTIONS(5462), + [sym_file_descriptor] = ACTIONS(5462), + [ts_builtin_sym_end] = ACTIONS(5462), + [anon_sym_SEMI] = ACTIONS(5464), + [anon_sym_esac] = ACTIONS(5462), + [anon_sym_PIPE] = ACTIONS(5464), + [anon_sym_RPAREN] = ACTIONS(5462), + [anon_sym_SEMI_SEMI] = ACTIONS(5462), + [anon_sym_PIPE_AMP] = ACTIONS(5462), + [anon_sym_AMP_AMP] = ACTIONS(5462), + [anon_sym_PIPE_PIPE] = ACTIONS(5462), + [anon_sym_LT] = ACTIONS(5464), + [anon_sym_GT] = ACTIONS(5464), + [anon_sym_GT_GT] = ACTIONS(5462), + [anon_sym_AMP_GT] = ACTIONS(5464), + [anon_sym_AMP_GT_GT] = ACTIONS(5462), + [anon_sym_LT_AMP] = ACTIONS(5462), + [anon_sym_GT_AMP] = ACTIONS(5462), + [anon_sym_LT_LT] = ACTIONS(5464), + [anon_sym_LT_LT_DASH] = ACTIONS(5462), + [anon_sym_LT_LT_LT] = ACTIONS(5462), + [anon_sym_BQUOTE] = ACTIONS(5462), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5462), + [anon_sym_AMP] = ACTIONS(5464), }, [2192] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(5404), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [sym__concat] = ACTIONS(5168), + [anon_sym_in] = ACTIONS(5168), + [anon_sym_SEMI] = ACTIONS(5170), + [anon_sym_SEMI_SEMI] = ACTIONS(5168), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5168), + [anon_sym_AMP] = ACTIONS(5168), }, [2193] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(473), - [anon_sym_DQUOTE] = ACTIONS(5404), - [anon_sym_DOLLAR] = ACTIONS(5406), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym__concat] = ACTIONS(5172), + [anon_sym_in] = ACTIONS(5172), + [anon_sym_SEMI] = ACTIONS(5174), + [anon_sym_SEMI_SEMI] = ACTIONS(5172), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5172), + [anon_sym_AMP] = ACTIONS(5172), }, [2194] = { - [sym__simple_heredoc_body] = ACTIONS(845), - [sym__heredoc_body_beginning] = ACTIONS(845), - [sym_file_descriptor] = ACTIONS(845), - [sym__concat] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_esac] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_SEMI_SEMI] = ACTIONS(845), - [anon_sym_PIPE_AMP] = ACTIONS(845), - [anon_sym_AMP_AMP] = ACTIONS(845), - [anon_sym_PIPE_PIPE] = ACTIONS(845), - [anon_sym_EQ_TILDE] = ACTIONS(847), - [anon_sym_EQ_EQ] = ACTIONS(847), - [anon_sym_LT] = ACTIONS(847), - [anon_sym_GT] = ACTIONS(847), - [anon_sym_GT_GT] = ACTIONS(845), - [anon_sym_AMP_GT] = ACTIONS(847), - [anon_sym_AMP_GT_GT] = ACTIONS(845), - [anon_sym_LT_AMP] = ACTIONS(845), - [anon_sym_GT_AMP] = ACTIONS(845), - [anon_sym_LT_LT] = ACTIONS(847), - [anon_sym_LT_LT_DASH] = ACTIONS(845), - [anon_sym_LT_LT_LT] = ACTIONS(845), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(845), - [anon_sym_DOLLAR] = ACTIONS(847), - [sym_raw_string] = ACTIONS(845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(845), - [anon_sym_LT_LPAREN] = ACTIONS(845), - [anon_sym_GT_LPAREN] = ACTIONS(845), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(847), - [anon_sym_LF] = ACTIONS(845), - [anon_sym_AMP] = ACTIONS(847), + [sym__concat] = ACTIONS(5168), + [anon_sym_AMP_AMP] = ACTIONS(5168), + [anon_sym_PIPE_PIPE] = ACTIONS(5168), + [anon_sym_RBRACK] = ACTIONS(5168), + [anon_sym_EQ_TILDE] = ACTIONS(5168), + [anon_sym_EQ_EQ] = ACTIONS(5168), + [anon_sym_EQ] = ACTIONS(5170), + [anon_sym_PLUS_EQ] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5170), + [anon_sym_GT] = ACTIONS(5170), + [anon_sym_BANG_EQ] = ACTIONS(5168), + [anon_sym_PLUS] = ACTIONS(5170), + [anon_sym_DASH] = ACTIONS(5170), + [anon_sym_DASH_EQ] = ACTIONS(5168), + [anon_sym_LT_EQ] = ACTIONS(5168), + [anon_sym_GT_EQ] = ACTIONS(5168), + [anon_sym_PLUS_PLUS] = ACTIONS(5168), + [anon_sym_DASH_DASH] = ACTIONS(5168), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5168), }, [2195] = { - [sym__simple_heredoc_body] = ACTIONS(849), - [sym__heredoc_body_beginning] = ACTIONS(849), - [sym_file_descriptor] = ACTIONS(849), - [sym__concat] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_esac] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_SEMI_SEMI] = ACTIONS(849), - [anon_sym_PIPE_AMP] = ACTIONS(849), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [anon_sym_EQ_TILDE] = ACTIONS(851), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(851), - [anon_sym_GT_GT] = ACTIONS(849), - [anon_sym_AMP_GT] = ACTIONS(851), - [anon_sym_AMP_GT_GT] = ACTIONS(849), - [anon_sym_LT_AMP] = ACTIONS(849), - [anon_sym_GT_AMP] = ACTIONS(849), - [anon_sym_LT_LT] = ACTIONS(851), - [anon_sym_LT_LT_DASH] = ACTIONS(849), - [anon_sym_LT_LT_LT] = ACTIONS(849), - [sym__special_characters] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(851), - [sym_raw_string] = ACTIONS(849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(849), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(851), - [anon_sym_LF] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(851), + [sym__concat] = ACTIONS(5172), + [anon_sym_AMP_AMP] = ACTIONS(5172), + [anon_sym_PIPE_PIPE] = ACTIONS(5172), + [anon_sym_RBRACK] = ACTIONS(5172), + [anon_sym_EQ_TILDE] = ACTIONS(5172), + [anon_sym_EQ_EQ] = ACTIONS(5172), + [anon_sym_EQ] = ACTIONS(5174), + [anon_sym_PLUS_EQ] = ACTIONS(5172), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_BANG_EQ] = ACTIONS(5172), + [anon_sym_PLUS] = ACTIONS(5174), + [anon_sym_DASH] = ACTIONS(5174), + [anon_sym_DASH_EQ] = ACTIONS(5172), + [anon_sym_LT_EQ] = ACTIONS(5172), + [anon_sym_GT_EQ] = ACTIONS(5172), + [anon_sym_PLUS_PLUS] = ACTIONS(5172), + [anon_sym_DASH_DASH] = ACTIONS(5172), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5172), }, [2196] = { - [sym__simple_heredoc_body] = ACTIONS(853), - [sym__heredoc_body_beginning] = ACTIONS(853), - [sym_file_descriptor] = ACTIONS(853), - [sym__concat] = ACTIONS(853), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_esac] = ACTIONS(855), - [anon_sym_PIPE] = ACTIONS(855), - [anon_sym_SEMI_SEMI] = ACTIONS(853), - [anon_sym_PIPE_AMP] = ACTIONS(853), - [anon_sym_AMP_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(853), - [anon_sym_EQ_TILDE] = ACTIONS(855), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(855), - [anon_sym_GT_GT] = ACTIONS(853), - [anon_sym_AMP_GT] = ACTIONS(855), - [anon_sym_AMP_GT_GT] = ACTIONS(853), - [anon_sym_LT_AMP] = ACTIONS(853), - [anon_sym_GT_AMP] = ACTIONS(853), - [anon_sym_LT_LT] = ACTIONS(855), - [anon_sym_LT_LT_DASH] = ACTIONS(853), - [anon_sym_LT_LT_LT] = ACTIONS(853), - [sym__special_characters] = ACTIONS(853), - [anon_sym_DQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(855), - [sym_raw_string] = ACTIONS(853), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), - [anon_sym_BQUOTE] = ACTIONS(853), - [anon_sym_LT_LPAREN] = ACTIONS(853), - [anon_sym_GT_LPAREN] = ACTIONS(853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(855), - [anon_sym_LF] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(855), + [sym__simple_heredoc_body] = ACTIONS(5168), + [sym__heredoc_body_beginning] = ACTIONS(5168), + [sym_file_descriptor] = ACTIONS(5168), + [sym__concat] = ACTIONS(5168), + [sym_variable_name] = ACTIONS(5168), + [ts_builtin_sym_end] = ACTIONS(5168), + [anon_sym_SEMI] = ACTIONS(5170), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_RPAREN] = ACTIONS(5168), + [anon_sym_SEMI_SEMI] = ACTIONS(5168), + [anon_sym_PIPE_AMP] = ACTIONS(5168), + [anon_sym_AMP_AMP] = ACTIONS(5168), + [anon_sym_PIPE_PIPE] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5170), + [anon_sym_GT] = ACTIONS(5170), + [anon_sym_GT_GT] = ACTIONS(5168), + [anon_sym_AMP_GT] = ACTIONS(5170), + [anon_sym_AMP_GT_GT] = ACTIONS(5168), + [anon_sym_LT_AMP] = ACTIONS(5168), + [anon_sym_GT_AMP] = ACTIONS(5168), + [anon_sym_LT_LT] = ACTIONS(5170), + [anon_sym_LT_LT_DASH] = ACTIONS(5168), + [anon_sym_LT_LT_LT] = ACTIONS(5168), + [sym__special_characters] = ACTIONS(5168), + [anon_sym_DQUOTE] = ACTIONS(5168), + [anon_sym_DOLLAR] = ACTIONS(5170), + [sym_raw_string] = ACTIONS(5168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5168), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5168), + [anon_sym_BQUOTE] = ACTIONS(5168), + [anon_sym_LT_LPAREN] = ACTIONS(5168), + [anon_sym_GT_LPAREN] = ACTIONS(5168), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5170), + [sym_word] = ACTIONS(5170), + [anon_sym_LF] = ACTIONS(5168), + [anon_sym_AMP] = ACTIONS(5170), }, [2197] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(5408), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(5172), + [sym__heredoc_body_beginning] = ACTIONS(5172), + [sym_file_descriptor] = ACTIONS(5172), + [sym__concat] = ACTIONS(5172), + [sym_variable_name] = ACTIONS(5172), + [ts_builtin_sym_end] = ACTIONS(5172), + [anon_sym_SEMI] = ACTIONS(5174), + [anon_sym_PIPE] = ACTIONS(5174), + [anon_sym_RPAREN] = ACTIONS(5172), + [anon_sym_SEMI_SEMI] = ACTIONS(5172), + [anon_sym_PIPE_AMP] = ACTIONS(5172), + [anon_sym_AMP_AMP] = ACTIONS(5172), + [anon_sym_PIPE_PIPE] = ACTIONS(5172), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_GT_GT] = ACTIONS(5172), + [anon_sym_AMP_GT] = ACTIONS(5174), + [anon_sym_AMP_GT_GT] = ACTIONS(5172), + [anon_sym_LT_AMP] = ACTIONS(5172), + [anon_sym_GT_AMP] = ACTIONS(5172), + [anon_sym_LT_LT] = ACTIONS(5174), + [anon_sym_LT_LT_DASH] = ACTIONS(5172), + [anon_sym_LT_LT_LT] = ACTIONS(5172), + [sym__special_characters] = ACTIONS(5172), + [anon_sym_DQUOTE] = ACTIONS(5172), + [anon_sym_DOLLAR] = ACTIONS(5174), + [sym_raw_string] = ACTIONS(5172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5172), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5172), + [anon_sym_BQUOTE] = ACTIONS(5172), + [anon_sym_LT_LPAREN] = ACTIONS(5172), + [anon_sym_GT_LPAREN] = ACTIONS(5172), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5174), + [sym_word] = ACTIONS(5174), + [anon_sym_LF] = ACTIONS(5172), + [anon_sym_AMP] = ACTIONS(5174), }, [2198] = { - [sym_subscript] = STATE(2382), - [sym_variable_name] = ACTIONS(5410), - [anon_sym_DASH] = ACTIONS(5412), - [anon_sym_DOLLAR] = ACTIONS(5412), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5414), - [anon_sym_STAR] = ACTIONS(5416), - [anon_sym_AT] = ACTIONS(5416), - [anon_sym_QMARK] = ACTIONS(5416), - [anon_sym_0] = ACTIONS(5414), - [anon_sym__] = ACTIONS(5414), + [sym__simple_heredoc_body] = ACTIONS(5168), + [sym__heredoc_body_beginning] = ACTIONS(5168), + [sym_file_descriptor] = ACTIONS(5168), + [sym__concat] = ACTIONS(5168), + [ts_builtin_sym_end] = ACTIONS(5168), + [anon_sym_SEMI] = ACTIONS(5170), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_RPAREN] = ACTIONS(5168), + [anon_sym_SEMI_SEMI] = ACTIONS(5168), + [anon_sym_PIPE_AMP] = ACTIONS(5168), + [anon_sym_AMP_AMP] = ACTIONS(5168), + [anon_sym_PIPE_PIPE] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5170), + [anon_sym_GT] = ACTIONS(5170), + [anon_sym_GT_GT] = ACTIONS(5168), + [anon_sym_AMP_GT] = ACTIONS(5170), + [anon_sym_AMP_GT_GT] = ACTIONS(5168), + [anon_sym_LT_AMP] = ACTIONS(5168), + [anon_sym_GT_AMP] = ACTIONS(5168), + [anon_sym_LT_LT] = ACTIONS(5170), + [anon_sym_LT_LT_DASH] = ACTIONS(5168), + [anon_sym_LT_LT_LT] = ACTIONS(5168), + [sym__special_characters] = ACTIONS(5168), + [anon_sym_DQUOTE] = ACTIONS(5168), + [anon_sym_DOLLAR] = ACTIONS(5170), + [sym_raw_string] = ACTIONS(5168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5168), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5168), + [anon_sym_BQUOTE] = ACTIONS(5168), + [anon_sym_LT_LPAREN] = ACTIONS(5168), + [anon_sym_GT_LPAREN] = ACTIONS(5168), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5170), + [sym_word] = ACTIONS(5170), + [anon_sym_LF] = ACTIONS(5168), + [anon_sym_AMP] = ACTIONS(5170), }, [2199] = { - [sym_concatenation] = STATE(2385), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2385), - [anon_sym_RBRACE] = ACTIONS(5418), - [anon_sym_EQ] = ACTIONS(5420), - [anon_sym_DASH] = ACTIONS(5420), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5422), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(5424), - [anon_sym_COLON] = ACTIONS(5420), - [anon_sym_COLON_QMARK] = ACTIONS(5420), - [anon_sym_COLON_DASH] = ACTIONS(5420), - [anon_sym_PERCENT] = ACTIONS(5420), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(5172), + [sym__heredoc_body_beginning] = ACTIONS(5172), + [sym_file_descriptor] = ACTIONS(5172), + [sym__concat] = ACTIONS(5172), + [ts_builtin_sym_end] = ACTIONS(5172), + [anon_sym_SEMI] = ACTIONS(5174), + [anon_sym_PIPE] = ACTIONS(5174), + [anon_sym_RPAREN] = ACTIONS(5172), + [anon_sym_SEMI_SEMI] = ACTIONS(5172), + [anon_sym_PIPE_AMP] = ACTIONS(5172), + [anon_sym_AMP_AMP] = ACTIONS(5172), + [anon_sym_PIPE_PIPE] = ACTIONS(5172), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_GT_GT] = ACTIONS(5172), + [anon_sym_AMP_GT] = ACTIONS(5174), + [anon_sym_AMP_GT_GT] = ACTIONS(5172), + [anon_sym_LT_AMP] = ACTIONS(5172), + [anon_sym_GT_AMP] = ACTIONS(5172), + [anon_sym_LT_LT] = ACTIONS(5174), + [anon_sym_LT_LT_DASH] = ACTIONS(5172), + [anon_sym_LT_LT_LT] = ACTIONS(5172), + [sym__special_characters] = ACTIONS(5172), + [anon_sym_DQUOTE] = ACTIONS(5172), + [anon_sym_DOLLAR] = ACTIONS(5174), + [sym_raw_string] = ACTIONS(5172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5172), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5172), + [anon_sym_BQUOTE] = ACTIONS(5172), + [anon_sym_LT_LPAREN] = ACTIONS(5172), + [anon_sym_GT_LPAREN] = ACTIONS(5172), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5174), + [sym_word] = ACTIONS(5174), + [anon_sym_LF] = ACTIONS(5172), + [anon_sym_AMP] = ACTIONS(5174), }, [2200] = { - [sym_concatenation] = STATE(2388), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2388), - [anon_sym_RBRACE] = ACTIONS(5426), - [anon_sym_EQ] = ACTIONS(5428), - [anon_sym_DASH] = ACTIONS(5428), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5430), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(5432), - [anon_sym_COLON] = ACTIONS(5428), - [anon_sym_COLON_QMARK] = ACTIONS(5428), - [anon_sym_COLON_DASH] = ACTIONS(5428), - [anon_sym_PERCENT] = ACTIONS(5428), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(5168), + [sym__concat] = ACTIONS(5168), + [sym_variable_name] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5170), + [anon_sym_GT] = ACTIONS(5170), + [anon_sym_GT_GT] = ACTIONS(5168), + [anon_sym_AMP_GT] = ACTIONS(5170), + [anon_sym_AMP_GT_GT] = ACTIONS(5168), + [anon_sym_LT_AMP] = ACTIONS(5168), + [anon_sym_GT_AMP] = ACTIONS(5168), + [sym__special_characters] = ACTIONS(5168), + [anon_sym_DQUOTE] = ACTIONS(5168), + [anon_sym_DOLLAR] = ACTIONS(5170), + [sym_raw_string] = ACTIONS(5168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5168), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5168), + [anon_sym_BQUOTE] = ACTIONS(5168), + [anon_sym_LT_LPAREN] = ACTIONS(5168), + [anon_sym_GT_LPAREN] = ACTIONS(5168), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5168), }, [2201] = { - [anon_sym_SEMI] = ACTIONS(5434), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(5436), - [anon_sym_SEMI_SEMI] = ACTIONS(5438), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5438), - [anon_sym_AMP] = ACTIONS(5434), + [sym_file_descriptor] = ACTIONS(5172), + [sym__concat] = ACTIONS(5172), + [sym_variable_name] = ACTIONS(5172), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_GT_GT] = ACTIONS(5172), + [anon_sym_AMP_GT] = ACTIONS(5174), + [anon_sym_AMP_GT_GT] = ACTIONS(5172), + [anon_sym_LT_AMP] = ACTIONS(5172), + [anon_sym_GT_AMP] = ACTIONS(5172), + [sym__special_characters] = ACTIONS(5172), + [anon_sym_DQUOTE] = ACTIONS(5172), + [anon_sym_DOLLAR] = ACTIONS(5174), + [sym_raw_string] = ACTIONS(5172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5172), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5172), + [anon_sym_BQUOTE] = ACTIONS(5172), + [anon_sym_LT_LPAREN] = ACTIONS(5172), + [anon_sym_GT_LPAREN] = ACTIONS(5172), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5172), }, [2202] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(5434), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(5436), - [anon_sym_SEMI_SEMI] = ACTIONS(5438), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(5438), - [anon_sym_AMP] = ACTIONS(5434), + [sym__concat] = ACTIONS(5168), + [anon_sym_DQUOTE] = ACTIONS(5170), + [anon_sym_DOLLAR] = ACTIONS(5170), + [sym__string_content] = ACTIONS(5168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5170), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5170), + [anon_sym_BQUOTE] = ACTIONS(5170), + [sym_comment] = ACTIONS(265), }, [2203] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(2391), - [sym_c_style_for_statement] = STATE(2391), - [sym_while_statement] = STATE(2391), - [sym_if_statement] = STATE(2391), - [sym_case_statement] = STATE(2391), - [sym_function_definition] = STATE(2391), - [sym_subshell] = STATE(2391), - [sym_pipeline] = STATE(2391), - [sym_list] = STATE(2391), - [sym_negated_command] = STATE(2391), - [sym_test_command] = STATE(2391), - [sym_declaration_command] = STATE(2391), - [sym_unset_command] = STATE(2391), - [sym_command] = STATE(2391), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(2392), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym__concat] = ACTIONS(5172), + [anon_sym_DQUOTE] = ACTIONS(5174), + [anon_sym_DOLLAR] = ACTIONS(5174), + [sym__string_content] = ACTIONS(5172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5174), + [anon_sym_BQUOTE] = ACTIONS(5174), + [sym_comment] = ACTIONS(265), }, [2204] = { - [anon_sym_SEMI] = ACTIONS(5440), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(5442), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(5436), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5442), - [anon_sym_AMP] = ACTIONS(5440), + [sym__concat] = ACTIONS(3921), + [anon_sym_RBRACE] = ACTIONS(3921), + [sym_comment] = ACTIONS(57), }, [2205] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(5440), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(5442), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(5436), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(5442), - [anon_sym_AMP] = ACTIONS(5440), + [sym__concat] = ACTIONS(3929), + [anon_sym_RBRACE] = ACTIONS(3929), + [sym_comment] = ACTIONS(57), }, [2206] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(2394), - [sym_c_style_for_statement] = STATE(2394), - [sym_while_statement] = STATE(2394), - [sym_if_statement] = STATE(2394), - [sym_case_statement] = STATE(2394), - [sym_function_definition] = STATE(2394), - [sym_subshell] = STATE(2394), - [sym_pipeline] = STATE(2394), - [sym_list] = STATE(2394), - [sym_negated_command] = STATE(2394), - [sym_test_command] = STATE(2394), - [sym_declaration_command] = STATE(2394), - [sym_unset_command] = STATE(2394), - [sym_command] = STATE(2394), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(2395), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(5466), + [sym_comment] = ACTIONS(57), }, [2207] = { - [anon_sym_SEMI] = ACTIONS(5444), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(5446), - [anon_sym_SEMI_SEMI] = ACTIONS(5448), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5448), - [anon_sym_AMP] = ACTIONS(5444), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(5468), + [sym_comment] = ACTIONS(57), }, [2208] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(5444), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(5446), - [anon_sym_SEMI_SEMI] = ACTIONS(5448), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(5448), - [anon_sym_AMP] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(5468), + [sym_comment] = ACTIONS(57), }, [2209] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(2398), - [sym_c_style_for_statement] = STATE(2398), - [sym_while_statement] = STATE(2398), - [sym_if_statement] = STATE(2398), - [sym_case_statement] = STATE(2398), - [sym_function_definition] = STATE(2398), - [sym_subshell] = STATE(2398), - [sym_pipeline] = STATE(2398), - [sym_list] = STATE(2398), - [sym_negated_command] = STATE(2398), - [sym_test_command] = STATE(2398), - [sym_declaration_command] = STATE(2398), - [sym_unset_command] = STATE(2398), - [sym_command] = STATE(2398), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(2399), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_concatenation] = STATE(2387), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2387), + [anon_sym_RBRACE] = ACTIONS(5470), + [anon_sym_EQ] = ACTIONS(5472), + [anon_sym_DASH] = ACTIONS(5472), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(5472), + [anon_sym_COLON_QMARK] = ACTIONS(5472), + [anon_sym_COLON_DASH] = ACTIONS(5472), + [anon_sym_PERCENT] = ACTIONS(5472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2210] = { - [anon_sym_RPAREN] = ACTIONS(5450), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(3985), + [anon_sym_RBRACE] = ACTIONS(3985), + [sym_comment] = ACTIONS(57), }, [2211] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_esac] = ACTIONS(947), - [anon_sym_SEMI_SEMI] = ACTIONS(943), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5470), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2212] = { - [sym_for_statement] = STATE(521), - [sym_c_style_for_statement] = STATE(521), - [sym_while_statement] = STATE(521), - [sym_if_statement] = STATE(521), - [sym_case_statement] = STATE(521), - [sym_function_definition] = STATE(521), - [sym_subshell] = STATE(521), - [sym_pipeline] = STATE(521), - [sym_list] = STATE(521), - [sym_negated_command] = STATE(521), - [sym_test_command] = STATE(521), - [sym_declaration_command] = STATE(521), - [sym_unset_command] = STATE(521), - [sym_command] = STATE(521), - [sym_command_name] = STATE(1969), - [sym_variable_assignment] = STATE(2401), - [sym_subscript] = STATE(1971), - [sym_file_redirect] = STATE(1974), - [sym_concatenation] = STATE(1972), - [sym_string] = STATE(1962), - [sym_simple_expansion] = STATE(1962), - [sym_string_expansion] = STATE(1962), - [sym_expansion] = STATE(1962), - [sym_command_substitution] = STATE(1962), - [sym_process_substitution] = STATE(1962), - [aux_sym_command_repeat1] = STATE(1974), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4445), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(4447), - [anon_sym_while] = ACTIONS(4449), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4461), - [anon_sym_declare] = ACTIONS(4463), - [anon_sym_typeset] = ACTIONS(4463), - [anon_sym_export] = ACTIONS(4463), - [anon_sym_readonly] = ACTIONS(4463), - [anon_sym_local] = ACTIONS(4463), - [anon_sym_unset] = ACTIONS(4465), - [anon_sym_unsetenv] = ACTIONS(4465), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(4467), - [anon_sym_DQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [sym_raw_string] = ACTIONS(4473), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), - [anon_sym_BQUOTE] = ACTIONS(4479), - [anon_sym_LT_LPAREN] = ACTIONS(4481), - [anon_sym_GT_LPAREN] = ACTIONS(4481), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4483), + [sym_concatenation] = STATE(2388), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2388), + [anon_sym_RBRACE] = ACTIONS(5468), + [anon_sym_EQ] = ACTIONS(5476), + [anon_sym_DASH] = ACTIONS(5476), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5478), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(5476), + [anon_sym_COLON_QMARK] = ACTIONS(5476), + [anon_sym_COLON_DASH] = ACTIONS(5476), + [anon_sym_PERCENT] = ACTIONS(5476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2213] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_esac] = ACTIONS(5452), - [anon_sym_SEMI_SEMI] = ACTIONS(943), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(5454), - [anon_sym_DQUOTE] = ACTIONS(5456), - [anon_sym_DOLLAR] = ACTIONS(5454), - [sym_raw_string] = ACTIONS(5456), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5456), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5456), - [anon_sym_BQUOTE] = ACTIONS(5456), - [anon_sym_LT_LPAREN] = ACTIONS(5456), - [anon_sym_GT_LPAREN] = ACTIONS(5456), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5454), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5468), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2214] = { - [sym_for_statement] = STATE(2402), - [sym_c_style_for_statement] = STATE(2402), - [sym_while_statement] = STATE(2402), - [sym_if_statement] = STATE(2402), - [sym_case_statement] = STATE(2402), - [sym_function_definition] = STATE(2402), - [sym_subshell] = STATE(2402), - [sym_pipeline] = STATE(2402), - [sym_list] = STATE(2402), - [sym_negated_command] = STATE(2402), - [sym_test_command] = STATE(2402), - [sym_declaration_command] = STATE(2402), - [sym_unset_command] = STATE(2402), - [sym_command] = STATE(2402), - [sym_command_name] = STATE(1969), - [sym_variable_assignment] = STATE(2403), - [sym_subscript] = STATE(1971), - [sym_file_redirect] = STATE(1974), - [sym_concatenation] = STATE(1972), - [sym_string] = STATE(1962), - [sym_simple_expansion] = STATE(1962), - [sym_string_expansion] = STATE(1962), - [sym_expansion] = STATE(1962), - [sym_command_substitution] = STATE(1962), - [sym_process_substitution] = STATE(1962), - [aux_sym_command_repeat1] = STATE(1974), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4445), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(4447), - [anon_sym_while] = ACTIONS(4449), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4461), - [anon_sym_declare] = ACTIONS(4463), - [anon_sym_typeset] = ACTIONS(4463), - [anon_sym_export] = ACTIONS(4463), - [anon_sym_readonly] = ACTIONS(4463), - [anon_sym_local] = ACTIONS(4463), - [anon_sym_unset] = ACTIONS(4465), - [anon_sym_unsetenv] = ACTIONS(4465), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(4467), - [anon_sym_DQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [sym_raw_string] = ACTIONS(4473), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), - [anon_sym_BQUOTE] = ACTIONS(4479), - [anon_sym_LT_LPAREN] = ACTIONS(4481), - [anon_sym_GT_LPAREN] = ACTIONS(4481), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4483), + [sym__concat] = ACTIONS(4030), + [anon_sym_RBRACE] = ACTIONS(4030), + [sym_comment] = ACTIONS(57), }, [2215] = { - [anon_sym_LT] = ACTIONS(5458), - [anon_sym_GT] = ACTIONS(5458), - [anon_sym_GT_GT] = ACTIONS(5460), - [anon_sym_AMP_GT] = ACTIONS(5458), - [anon_sym_AMP_GT_GT] = ACTIONS(5460), - [anon_sym_LT_AMP] = ACTIONS(5460), - [anon_sym_GT_AMP] = ACTIONS(5460), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5480), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2216] = { - [sym_concatenation] = STATE(2405), - [sym_string] = STATE(2407), - [sym_simple_expansion] = STATE(2407), - [sym_string_expansion] = STATE(2407), - [sym_expansion] = STATE(2407), - [sym_command_substitution] = STATE(2407), - [sym_process_substitution] = STATE(2407), - [sym_regex] = ACTIONS(5462), - [sym__special_characters] = ACTIONS(5464), - [anon_sym_DQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [sym_raw_string] = ACTIONS(5466), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), - [anon_sym_BQUOTE] = ACTIONS(4479), - [anon_sym_LT_LPAREN] = ACTIONS(4481), - [anon_sym_GT_LPAREN] = ACTIONS(4481), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5466), + [sym__concat] = ACTIONS(4064), + [anon_sym_RBRACE] = ACTIONS(4064), + [sym_comment] = ACTIONS(57), }, [2217] = { - [sym_concatenation] = STATE(535), - [sym_string] = STATE(2411), - [sym_simple_expansion] = STATE(2411), - [sym_string_expansion] = STATE(2411), - [sym_expansion] = STATE(2411), - [sym_command_substitution] = STATE(2411), - [sym_process_substitution] = STATE(2411), - [sym__special_characters] = ACTIONS(5468), - [anon_sym_DQUOTE] = ACTIONS(5470), - [anon_sym_DOLLAR] = ACTIONS(5472), - [sym_raw_string] = ACTIONS(5474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5478), - [anon_sym_BQUOTE] = ACTIONS(5480), - [anon_sym_LT_LPAREN] = ACTIONS(5482), - [anon_sym_GT_LPAREN] = ACTIONS(5482), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5474), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(5482), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [2218] = { - [sym_concatenation] = STATE(539), - [sym_string] = STATE(2417), - [sym_simple_expansion] = STATE(2417), - [sym_string_expansion] = STATE(2417), - [sym_expansion] = STATE(2417), - [sym_command_substitution] = STATE(2417), - [sym_process_substitution] = STATE(2417), - [sym__special_characters] = ACTIONS(5484), - [anon_sym_DQUOTE] = ACTIONS(5470), - [anon_sym_DOLLAR] = ACTIONS(5472), - [sym_raw_string] = ACTIONS(5486), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5478), - [anon_sym_BQUOTE] = ACTIONS(5480), - [anon_sym_LT_LPAREN] = ACTIONS(5482), - [anon_sym_GT_LPAREN] = ACTIONS(5482), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5486), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(5482), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [2219] = { - [aux_sym_concatenation_repeat1] = STATE(2190), - [sym__simple_heredoc_body] = ACTIONS(981), - [sym__heredoc_body_beginning] = ACTIONS(981), - [sym_file_descriptor] = ACTIONS(981), - [sym__concat] = ACTIONS(5051), - [anon_sym_SEMI] = ACTIONS(983), - [anon_sym_esac] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(983), - [anon_sym_SEMI_SEMI] = ACTIONS(981), - [anon_sym_PIPE_AMP] = ACTIONS(981), - [anon_sym_AMP_AMP] = ACTIONS(981), - [anon_sym_PIPE_PIPE] = ACTIONS(981), - [anon_sym_EQ_TILDE] = ACTIONS(983), - [anon_sym_EQ_EQ] = ACTIONS(983), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(983), - [anon_sym_GT_GT] = ACTIONS(981), - [anon_sym_AMP_GT] = ACTIONS(983), - [anon_sym_AMP_GT_GT] = ACTIONS(981), - [anon_sym_LT_AMP] = ACTIONS(981), - [anon_sym_GT_AMP] = ACTIONS(981), - [anon_sym_LT_LT] = ACTIONS(983), - [anon_sym_LT_LT_DASH] = ACTIONS(981), - [anon_sym_LT_LT_LT] = ACTIONS(981), - [sym__special_characters] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(983), - [sym_raw_string] = ACTIONS(981), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(981), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(981), - [anon_sym_BQUOTE] = ACTIONS(981), - [anon_sym_LT_LPAREN] = ACTIONS(981), - [anon_sym_GT_LPAREN] = ACTIONS(981), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(983), - [anon_sym_LF] = ACTIONS(981), - [anon_sym_AMP] = ACTIONS(983), + [sym__concat] = ACTIONS(4070), + [anon_sym_RBRACE] = ACTIONS(4070), + [sym_comment] = ACTIONS(57), }, [2220] = { - [aux_sym_concatenation_repeat1] = STATE(2190), - [sym__simple_heredoc_body] = ACTIONS(985), - [sym__heredoc_body_beginning] = ACTIONS(985), - [sym_file_descriptor] = ACTIONS(985), - [sym__concat] = ACTIONS(5051), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_esac] = ACTIONS(987), - [anon_sym_PIPE] = ACTIONS(987), - [anon_sym_SEMI_SEMI] = ACTIONS(985), - [anon_sym_PIPE_AMP] = ACTIONS(985), - [anon_sym_AMP_AMP] = ACTIONS(985), - [anon_sym_PIPE_PIPE] = ACTIONS(985), - [anon_sym_EQ_TILDE] = ACTIONS(987), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_LT] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(987), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_AMP_GT] = ACTIONS(987), - [anon_sym_AMP_GT_GT] = ACTIONS(985), - [anon_sym_LT_AMP] = ACTIONS(985), - [anon_sym_GT_AMP] = ACTIONS(985), - [anon_sym_LT_LT] = ACTIONS(987), - [anon_sym_LT_LT_DASH] = ACTIONS(985), - [anon_sym_LT_LT_LT] = ACTIONS(985), - [sym__special_characters] = ACTIONS(985), - [anon_sym_DQUOTE] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(987), - [sym_raw_string] = ACTIONS(985), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(985), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(985), - [anon_sym_BQUOTE] = ACTIONS(985), - [anon_sym_LT_LPAREN] = ACTIONS(985), - [anon_sym_GT_LPAREN] = ACTIONS(985), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(987), - [anon_sym_LF] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(987), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(5484), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [2221] = { - [sym_file_redirect] = STATE(2418), - [sym_heredoc_redirect] = STATE(2418), - [sym_heredoc_body] = STATE(540), - [sym_herestring_redirect] = STATE(2418), - [aux_sym_while_statement_repeat1] = STATE(2418), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_esac] = ACTIONS(989), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_SEMI_SEMI] = ACTIONS(989), - [anon_sym_PIPE_AMP] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(989), - [anon_sym_PIPE_PIPE] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(5095), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_GT_GT] = ACTIONS(5097), - [anon_sym_AMP_GT] = ACTIONS(5095), - [anon_sym_AMP_GT_GT] = ACTIONS(5097), - [anon_sym_LT_AMP] = ACTIONS(5097), - [anon_sym_GT_AMP] = ACTIONS(5097), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(5099), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [sym__concat] = ACTIONS(4687), + [anon_sym_RBRACE] = ACTIONS(4687), + [anon_sym_EQ] = ACTIONS(4689), + [anon_sym_DASH] = ACTIONS(4689), + [sym__special_characters] = ACTIONS(4689), + [anon_sym_DQUOTE] = ACTIONS(4687), + [anon_sym_DOLLAR] = ACTIONS(4689), + [sym_raw_string] = ACTIONS(4687), + [anon_sym_POUND] = ACTIONS(4687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4687), + [anon_sym_COLON] = ACTIONS(4689), + [anon_sym_COLON_QMARK] = ACTIONS(4689), + [anon_sym_COLON_DASH] = ACTIONS(4689), + [anon_sym_PERCENT] = ACTIONS(4689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4687), + [anon_sym_BQUOTE] = ACTIONS(4687), + [anon_sym_LT_LPAREN] = ACTIONS(4687), + [anon_sym_GT_LPAREN] = ACTIONS(4687), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(4689), }, [2222] = { - [sym_file_redirect] = STATE(2419), - [sym_heredoc_redirect] = STATE(2419), - [sym_heredoc_body] = STATE(540), - [sym_herestring_redirect] = STATE(2419), - [sym_concatenation] = STATE(2420), - [sym_string] = STATE(2220), - [sym_simple_expansion] = STATE(2220), - [sym_string_expansion] = STATE(2220), - [sym_expansion] = STATE(2220), - [sym_command_substitution] = STATE(2220), - [sym_process_substitution] = STATE(2220), - [aux_sym_while_statement_repeat1] = STATE(2419), - [aux_sym_command_repeat2] = STATE(2420), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_esac] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_SEMI_SEMI] = ACTIONS(989), - [anon_sym_PIPE_AMP] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(989), - [anon_sym_PIPE_PIPE] = ACTIONS(989), - [anon_sym_EQ_TILDE] = ACTIONS(5093), - [anon_sym_EQ_EQ] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5095), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_GT_GT] = ACTIONS(5097), - [anon_sym_AMP_GT] = ACTIONS(5095), - [anon_sym_AMP_GT_GT] = ACTIONS(5097), - [anon_sym_LT_AMP] = ACTIONS(5097), - [anon_sym_GT_AMP] = ACTIONS(5097), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(5099), - [sym__special_characters] = ACTIONS(5101), - [anon_sym_DQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [sym_raw_string] = ACTIONS(5103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), - [anon_sym_BQUOTE] = ACTIONS(4479), - [anon_sym_LT_LPAREN] = ACTIONS(4481), - [anon_sym_GT_LPAREN] = ACTIONS(4481), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5105), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [sym__concat] = ACTIONS(4691), + [anon_sym_RBRACE] = ACTIONS(4691), + [anon_sym_EQ] = ACTIONS(4693), + [anon_sym_DASH] = ACTIONS(4693), + [sym__special_characters] = ACTIONS(4693), + [anon_sym_DQUOTE] = ACTIONS(4691), + [anon_sym_DOLLAR] = ACTIONS(4693), + [sym_raw_string] = ACTIONS(4691), + [anon_sym_POUND] = ACTIONS(4691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4691), + [anon_sym_COLON] = ACTIONS(4693), + [anon_sym_COLON_QMARK] = ACTIONS(4693), + [anon_sym_COLON_DASH] = ACTIONS(4693), + [anon_sym_PERCENT] = ACTIONS(4693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4691), + [anon_sym_BQUOTE] = ACTIONS(4691), + [anon_sym_LT_LPAREN] = ACTIONS(4691), + [anon_sym_GT_LPAREN] = ACTIONS(4691), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(4693), }, [2223] = { - [anon_sym_esac] = ACTIONS(5452), - [sym__special_characters] = ACTIONS(5456), - [anon_sym_DQUOTE] = ACTIONS(5456), - [anon_sym_DOLLAR] = ACTIONS(5454), - [sym_raw_string] = ACTIONS(5456), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5456), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5456), - [anon_sym_BQUOTE] = ACTIONS(5456), - [anon_sym_LT_LPAREN] = ACTIONS(5456), - [anon_sym_GT_LPAREN] = ACTIONS(5456), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5454), + [sym__concat] = ACTIONS(4695), + [anon_sym_RBRACE] = ACTIONS(4695), + [anon_sym_EQ] = ACTIONS(4697), + [anon_sym_DASH] = ACTIONS(4697), + [sym__special_characters] = ACTIONS(4697), + [anon_sym_DQUOTE] = ACTIONS(4695), + [anon_sym_DOLLAR] = ACTIONS(4697), + [sym_raw_string] = ACTIONS(4695), + [anon_sym_POUND] = ACTIONS(4695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4695), + [anon_sym_COLON] = ACTIONS(4697), + [anon_sym_COLON_QMARK] = ACTIONS(4697), + [anon_sym_COLON_DASH] = ACTIONS(4697), + [anon_sym_PERCENT] = ACTIONS(4697), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4695), + [anon_sym_BQUOTE] = ACTIONS(4695), + [anon_sym_LT_LPAREN] = ACTIONS(4695), + [anon_sym_GT_LPAREN] = ACTIONS(4695), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(4697), }, [2224] = { - [anon_sym_SEMI] = ACTIONS(5077), - [anon_sym_esac] = ACTIONS(5488), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_SEMI_SEMI] = ACTIONS(5490), - [anon_sym_PIPE_AMP] = ACTIONS(5085), - [anon_sym_AMP_AMP] = ACTIONS(5087), - [anon_sym_PIPE_PIPE] = ACTIONS(5087), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5089), - [anon_sym_AMP] = ACTIONS(5077), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5486), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2225] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(5077), - [anon_sym_esac] = ACTIONS(5452), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_SEMI_SEMI] = ACTIONS(5490), - [anon_sym_PIPE_AMP] = ACTIONS(5085), - [anon_sym_AMP_AMP] = ACTIONS(5087), - [anon_sym_PIPE_PIPE] = ACTIONS(5087), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(5089), - [anon_sym_AMP] = ACTIONS(5077), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5488), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2226] = { - [sym__terminated_statement] = STATE(2226), - [sym_for_statement] = STATE(2422), - [sym_c_style_for_statement] = STATE(2422), - [sym_while_statement] = STATE(2422), - [sym_if_statement] = STATE(2422), - [sym_case_statement] = STATE(2422), - [sym_function_definition] = STATE(2422), - [sym_subshell] = STATE(2422), - [sym_pipeline] = STATE(2422), - [sym_list] = STATE(2422), - [sym_negated_command] = STATE(2422), - [sym_test_command] = STATE(2422), - [sym_declaration_command] = STATE(2422), - [sym_unset_command] = STATE(2422), - [sym_command] = STATE(2422), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(2423), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(2226), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(997), - [sym_variable_name] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1003), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1009), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1015), - [anon_sym_esac] = ACTIONS(3645), - [anon_sym_SEMI_SEMI] = ACTIONS(3728), - [anon_sym_function] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1027), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym_declare] = ACTIONS(1033), - [anon_sym_typeset] = ACTIONS(1033), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_readonly] = ACTIONS(1033), - [anon_sym_local] = ACTIONS(1033), - [anon_sym_unset] = ACTIONS(1036), - [anon_sym_unsetenv] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1039), - [anon_sym_GT_GT] = ACTIONS(1042), - [anon_sym_AMP_GT] = ACTIONS(1039), - [anon_sym_AMP_GT_GT] = ACTIONS(1042), - [anon_sym_LT_AMP] = ACTIONS(1042), - [anon_sym_GT_AMP] = ACTIONS(1042), - [sym__special_characters] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_DOLLAR] = ACTIONS(1051), - [sym_raw_string] = ACTIONS(1054), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1060), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1069), + [sym__concat] = ACTIONS(4731), + [anon_sym_RBRACE] = ACTIONS(4731), + [anon_sym_EQ] = ACTIONS(4733), + [anon_sym_DASH] = ACTIONS(4733), + [sym__special_characters] = ACTIONS(4733), + [anon_sym_DQUOTE] = ACTIONS(4731), + [anon_sym_DOLLAR] = ACTIONS(4733), + [sym_raw_string] = ACTIONS(4731), + [anon_sym_POUND] = ACTIONS(4731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4731), + [anon_sym_COLON] = ACTIONS(4733), + [anon_sym_COLON_QMARK] = ACTIONS(4733), + [anon_sym_COLON_DASH] = ACTIONS(4733), + [anon_sym_PERCENT] = ACTIONS(4733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4731), + [anon_sym_BQUOTE] = ACTIONS(4731), + [anon_sym_LT_LPAREN] = ACTIONS(4731), + [anon_sym_GT_LPAREN] = ACTIONS(4731), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(4733), }, [2227] = { - [sym_file_redirect] = STATE(2419), - [sym_heredoc_redirect] = STATE(2419), - [sym_heredoc_body] = STATE(540), - [sym_herestring_redirect] = STATE(2419), - [sym_concatenation] = STATE(2424), - [sym_string] = STATE(2220), - [sym_simple_expansion] = STATE(2220), - [sym_string_expansion] = STATE(2220), - [sym_expansion] = STATE(2220), - [sym_command_substitution] = STATE(2220), - [sym_process_substitution] = STATE(2220), - [aux_sym_while_statement_repeat1] = STATE(2419), - [aux_sym_command_repeat2] = STATE(2424), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_esac] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_SEMI_SEMI] = ACTIONS(989), - [anon_sym_PIPE_AMP] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(989), - [anon_sym_PIPE_PIPE] = ACTIONS(989), - [anon_sym_EQ_TILDE] = ACTIONS(5093), - [anon_sym_EQ_EQ] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5095), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_GT_GT] = ACTIONS(5097), - [anon_sym_AMP_GT] = ACTIONS(5095), - [anon_sym_AMP_GT_GT] = ACTIONS(5097), - [anon_sym_LT_AMP] = ACTIONS(5097), - [anon_sym_GT_AMP] = ACTIONS(5097), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(5099), - [sym__special_characters] = ACTIONS(5101), - [anon_sym_DQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [sym_raw_string] = ACTIONS(5103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), - [anon_sym_BQUOTE] = ACTIONS(4479), - [anon_sym_LT_LPAREN] = ACTIONS(4481), - [anon_sym_GT_LPAREN] = ACTIONS(4481), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5105), - [anon_sym_LF] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(991), + [sym__concat] = ACTIONS(4751), + [anon_sym_RBRACE] = ACTIONS(4751), + [anon_sym_EQ] = ACTIONS(4753), + [anon_sym_DASH] = ACTIONS(4753), + [sym__special_characters] = ACTIONS(4753), + [anon_sym_DQUOTE] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4753), + [sym_raw_string] = ACTIONS(4751), + [anon_sym_POUND] = ACTIONS(4751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4751), + [anon_sym_COLON] = ACTIONS(4753), + [anon_sym_COLON_QMARK] = ACTIONS(4753), + [anon_sym_COLON_DASH] = ACTIONS(4753), + [anon_sym_PERCENT] = ACTIONS(4753), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4751), + [anon_sym_BQUOTE] = ACTIONS(4751), + [anon_sym_LT_LPAREN] = ACTIONS(4751), + [anon_sym_GT_LPAREN] = ACTIONS(4751), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(4753), }, [2228] = { - [sym__terminated_statement] = STATE(2226), - [sym_for_statement] = STATE(2426), - [sym_c_style_for_statement] = STATE(2426), - [sym_while_statement] = STATE(2426), - [sym_if_statement] = STATE(2426), - [sym_case_statement] = STATE(2426), - [sym_function_definition] = STATE(2426), - [sym_subshell] = STATE(2426), - [sym_pipeline] = STATE(2426), - [sym_list] = STATE(2426), - [sym_negated_command] = STATE(2426), - [sym_test_command] = STATE(2426), - [sym_declaration_command] = STATE(2426), - [sym_unset_command] = STATE(2426), - [sym_command] = STATE(2426), - [sym_command_name] = STATE(1969), - [sym_variable_assignment] = STATE(2427), - [sym_subscript] = STATE(1971), - [sym_file_redirect] = STATE(1974), - [sym_concatenation] = STATE(1972), - [sym_string] = STATE(1962), - [sym_simple_expansion] = STATE(1962), - [sym_string_expansion] = STATE(1962), - [sym_expansion] = STATE(1962), - [sym_command_substitution] = STATE(1962), - [sym_process_substitution] = STATE(1962), - [aux_sym__statements_repeat1] = STATE(2226), - [aux_sym_command_repeat1] = STATE(1974), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4445), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(4447), - [anon_sym_while] = ACTIONS(4449), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_esac] = ACTIONS(5452), - [anon_sym_SEMI_SEMI] = ACTIONS(5492), - [anon_sym_function] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4461), - [anon_sym_declare] = ACTIONS(4463), - [anon_sym_typeset] = ACTIONS(4463), - [anon_sym_export] = ACTIONS(4463), - [anon_sym_readonly] = ACTIONS(4463), - [anon_sym_local] = ACTIONS(4463), - [anon_sym_unset] = ACTIONS(4465), - [anon_sym_unsetenv] = ACTIONS(4465), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(4467), - [anon_sym_DQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [sym_raw_string] = ACTIONS(4473), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), - [anon_sym_BQUOTE] = ACTIONS(4479), - [anon_sym_LT_LPAREN] = ACTIONS(4481), - [anon_sym_GT_LPAREN] = ACTIONS(4481), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4483), + [sym__concat] = ACTIONS(4755), + [anon_sym_RBRACE] = ACTIONS(4755), + [anon_sym_EQ] = ACTIONS(4757), + [anon_sym_DASH] = ACTIONS(4757), + [sym__special_characters] = ACTIONS(4757), + [anon_sym_DQUOTE] = ACTIONS(4755), + [anon_sym_DOLLAR] = ACTIONS(4757), + [sym_raw_string] = ACTIONS(4755), + [anon_sym_POUND] = ACTIONS(4755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4755), + [anon_sym_COLON] = ACTIONS(4757), + [anon_sym_COLON_QMARK] = ACTIONS(4757), + [anon_sym_COLON_DASH] = ACTIONS(4757), + [anon_sym_PERCENT] = ACTIONS(4757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4755), + [anon_sym_BQUOTE] = ACTIONS(4755), + [anon_sym_LT_LPAREN] = ACTIONS(4755), + [anon_sym_GT_LPAREN] = ACTIONS(4755), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(4757), }, [2229] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_esac] = ACTIONS(5494), - [anon_sym_SEMI_SEMI] = ACTIONS(943), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(5496), - [anon_sym_DQUOTE] = ACTIONS(5498), - [anon_sym_DOLLAR] = ACTIONS(5496), - [sym_raw_string] = ACTIONS(5498), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5498), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5498), - [anon_sym_BQUOTE] = ACTIONS(5498), - [anon_sym_LT_LPAREN] = ACTIONS(5498), - [anon_sym_GT_LPAREN] = ACTIONS(5498), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5496), + [sym__heredoc_body_middle] = ACTIONS(4687), + [sym__heredoc_body_end] = ACTIONS(4687), + [anon_sym_DOLLAR] = ACTIONS(4689), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4687), + [sym_comment] = ACTIONS(57), }, [2230] = { - [anon_sym_esac] = ACTIONS(5494), - [sym__special_characters] = ACTIONS(5498), - [anon_sym_DQUOTE] = ACTIONS(5498), - [anon_sym_DOLLAR] = ACTIONS(5496), - [sym_raw_string] = ACTIONS(5498), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5498), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5498), - [anon_sym_BQUOTE] = ACTIONS(5498), - [anon_sym_LT_LPAREN] = ACTIONS(5498), - [anon_sym_GT_LPAREN] = ACTIONS(5498), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5496), + [sym__heredoc_body_middle] = ACTIONS(4691), + [sym__heredoc_body_end] = ACTIONS(4691), + [anon_sym_DOLLAR] = ACTIONS(4693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4691), + [sym_comment] = ACTIONS(57), }, [2231] = { - [anon_sym_SEMI] = ACTIONS(5077), - [anon_sym_esac] = ACTIONS(5500), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_SEMI_SEMI] = ACTIONS(5502), - [anon_sym_PIPE_AMP] = ACTIONS(5085), - [anon_sym_AMP_AMP] = ACTIONS(5087), - [anon_sym_PIPE_PIPE] = ACTIONS(5087), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5089), - [anon_sym_AMP] = ACTIONS(5077), + [sym__heredoc_body_middle] = ACTIONS(4695), + [sym__heredoc_body_end] = ACTIONS(4695), + [anon_sym_DOLLAR] = ACTIONS(4697), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4695), + [sym_comment] = ACTIONS(57), }, [2232] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(5077), - [anon_sym_esac] = ACTIONS(5494), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_SEMI_SEMI] = ACTIONS(5502), - [anon_sym_PIPE_AMP] = ACTIONS(5085), - [anon_sym_AMP_AMP] = ACTIONS(5087), - [anon_sym_PIPE_PIPE] = ACTIONS(5087), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(5089), - [anon_sym_AMP] = ACTIONS(5077), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5490), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2233] = { - [sym__terminated_statement] = STATE(2226), - [sym_for_statement] = STATE(2430), - [sym_c_style_for_statement] = STATE(2430), - [sym_while_statement] = STATE(2430), - [sym_if_statement] = STATE(2430), - [sym_case_statement] = STATE(2430), - [sym_function_definition] = STATE(2430), - [sym_subshell] = STATE(2430), - [sym_pipeline] = STATE(2430), - [sym_list] = STATE(2430), - [sym_negated_command] = STATE(2430), - [sym_test_command] = STATE(2430), - [sym_declaration_command] = STATE(2430), - [sym_unset_command] = STATE(2430), - [sym_command] = STATE(2430), - [sym_command_name] = STATE(1969), - [sym_variable_assignment] = STATE(2431), - [sym_subscript] = STATE(1971), - [sym_file_redirect] = STATE(1974), - [sym_concatenation] = STATE(1972), - [sym_string] = STATE(1962), - [sym_simple_expansion] = STATE(1962), - [sym_string_expansion] = STATE(1962), - [sym_expansion] = STATE(1962), - [sym_command_substitution] = STATE(1962), - [sym_process_substitution] = STATE(1962), - [aux_sym__statements_repeat1] = STATE(2226), - [aux_sym_command_repeat1] = STATE(1974), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(4445), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(4447), - [anon_sym_while] = ACTIONS(4449), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_esac] = ACTIONS(5494), - [anon_sym_SEMI_SEMI] = ACTIONS(5504), - [anon_sym_function] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(4457), - [anon_sym_LBRACK] = ACTIONS(4459), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4461), - [anon_sym_declare] = ACTIONS(4463), - [anon_sym_typeset] = ACTIONS(4463), - [anon_sym_export] = ACTIONS(4463), - [anon_sym_readonly] = ACTIONS(4463), - [anon_sym_local] = ACTIONS(4463), - [anon_sym_unset] = ACTIONS(4465), - [anon_sym_unsetenv] = ACTIONS(4465), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(4467), - [anon_sym_DQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [sym_raw_string] = ACTIONS(4473), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), - [anon_sym_BQUOTE] = ACTIONS(4479), - [anon_sym_LT_LPAREN] = ACTIONS(4481), - [anon_sym_GT_LPAREN] = ACTIONS(4481), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4483), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5492), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2234] = { - [sym__terminated_statement] = STATE(2435), - [sym_for_statement] = STATE(2433), - [sym_c_style_for_statement] = STATE(2433), - [sym_while_statement] = STATE(2433), - [sym_if_statement] = STATE(2433), - [sym_case_statement] = STATE(2433), - [sym_function_definition] = STATE(2433), - [sym_subshell] = STATE(2433), - [sym_pipeline] = STATE(2433), - [sym_list] = STATE(2433), - [sym_negated_command] = STATE(2433), - [sym_test_command] = STATE(2433), - [sym_declaration_command] = STATE(2433), - [sym_unset_command] = STATE(2433), - [sym_command] = STATE(2433), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(2434), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(2435), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_SEMI_SEMI] = ACTIONS(5506), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [sym__heredoc_body_middle] = ACTIONS(4731), + [sym__heredoc_body_end] = ACTIONS(4731), + [anon_sym_DOLLAR] = ACTIONS(4733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4731), + [sym_comment] = ACTIONS(57), }, [2235] = { - [aux_sym_case_item_repeat1] = STATE(1976), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_RPAREN] = ACTIONS(5508), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(4687), + [anon_sym_RPAREN] = ACTIONS(4687), + [sym__special_characters] = ACTIONS(4687), + [anon_sym_DQUOTE] = ACTIONS(4687), + [anon_sym_DOLLAR] = ACTIONS(4689), + [sym_raw_string] = ACTIONS(4687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4687), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4687), + [anon_sym_BQUOTE] = ACTIONS(4687), + [anon_sym_LT_LPAREN] = ACTIONS(4687), + [anon_sym_GT_LPAREN] = ACTIONS(4687), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4687), }, [2236] = { - [sym__terminated_statement] = STATE(2440), - [sym_for_statement] = STATE(2438), - [sym_c_style_for_statement] = STATE(2438), - [sym_while_statement] = STATE(2438), - [sym_if_statement] = STATE(2438), - [sym_case_statement] = STATE(2438), - [sym_function_definition] = STATE(2438), - [sym_subshell] = STATE(2438), - [sym_pipeline] = STATE(2438), - [sym_list] = STATE(2438), - [sym_negated_command] = STATE(2438), - [sym_test_command] = STATE(2438), - [sym_declaration_command] = STATE(2438), - [sym_unset_command] = STATE(2438), - [sym_command] = STATE(2438), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(2439), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(2440), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_SEMI_SEMI] = ACTIONS(5510), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [sym__concat] = ACTIONS(4691), + [anon_sym_RPAREN] = ACTIONS(4691), + [sym__special_characters] = ACTIONS(4691), + [anon_sym_DQUOTE] = ACTIONS(4691), + [anon_sym_DOLLAR] = ACTIONS(4693), + [sym_raw_string] = ACTIONS(4691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4691), + [anon_sym_BQUOTE] = ACTIONS(4691), + [anon_sym_LT_LPAREN] = ACTIONS(4691), + [anon_sym_GT_LPAREN] = ACTIONS(4691), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4691), }, [2237] = { - [aux_sym_case_item_repeat1] = STATE(1976), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_RPAREN] = ACTIONS(5512), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(4695), + [anon_sym_RPAREN] = ACTIONS(4695), + [sym__special_characters] = ACTIONS(4695), + [anon_sym_DQUOTE] = ACTIONS(4695), + [anon_sym_DOLLAR] = ACTIONS(4697), + [sym_raw_string] = ACTIONS(4695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4695), + [anon_sym_BQUOTE] = ACTIONS(4695), + [anon_sym_LT_LPAREN] = ACTIONS(4695), + [anon_sym_GT_LPAREN] = ACTIONS(4695), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4695), }, [2238] = { - [ts_builtin_sym_end] = ACTIONS(5514), - [anon_sym_SEMI] = ACTIONS(5516), - [anon_sym_esac] = ACTIONS(5514), - [anon_sym_PIPE] = ACTIONS(5516), - [anon_sym_RPAREN] = ACTIONS(5514), - [anon_sym_SEMI_SEMI] = ACTIONS(5514), - [anon_sym_PIPE_AMP] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(5514), - [anon_sym_PIPE_PIPE] = ACTIONS(5514), - [anon_sym_BQUOTE] = ACTIONS(5514), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(5516), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5494), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2239] = { - [ts_builtin_sym_end] = ACTIONS(5518), - [anon_sym_SEMI] = ACTIONS(5520), - [anon_sym_esac] = ACTIONS(5518), - [anon_sym_PIPE] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(5518), - [anon_sym_SEMI_SEMI] = ACTIONS(5518), - [anon_sym_PIPE_AMP] = ACTIONS(5518), - [anon_sym_AMP_AMP] = ACTIONS(5518), - [anon_sym_PIPE_PIPE] = ACTIONS(5518), - [anon_sym_BQUOTE] = ACTIONS(5518), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5518), - [anon_sym_AMP] = ACTIONS(5520), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5496), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2240] = { - [sym__concat] = ACTIONS(5202), - [anon_sym_in] = ACTIONS(5202), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_SEMI_SEMI] = ACTIONS(5202), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5202), + [sym__concat] = ACTIONS(4731), + [anon_sym_RPAREN] = ACTIONS(4731), + [sym__special_characters] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4731), + [anon_sym_DOLLAR] = ACTIONS(4733), + [sym_raw_string] = ACTIONS(4731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4731), + [anon_sym_BQUOTE] = ACTIONS(4731), + [anon_sym_LT_LPAREN] = ACTIONS(4731), + [anon_sym_GT_LPAREN] = ACTIONS(4731), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4731), }, [2241] = { - [sym__concat] = ACTIONS(5206), - [anon_sym_in] = ACTIONS(5206), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym_SEMI_SEMI] = ACTIONS(5206), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5206), + [sym__concat] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4751), + [sym__special_characters] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4753), + [sym_raw_string] = ACTIONS(4751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4751), + [anon_sym_BQUOTE] = ACTIONS(4751), + [anon_sym_LT_LPAREN] = ACTIONS(4751), + [anon_sym_GT_LPAREN] = ACTIONS(4751), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4751), }, [2242] = { - [aux_sym_concatenation_repeat1] = STATE(2242), - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(4936), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_LT_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT_LT] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym__concat] = ACTIONS(4755), + [anon_sym_RPAREN] = ACTIONS(4755), + [sym__special_characters] = ACTIONS(4755), + [anon_sym_DQUOTE] = ACTIONS(4755), + [anon_sym_DOLLAR] = ACTIONS(4757), + [sym_raw_string] = ACTIONS(4755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4755), + [anon_sym_BQUOTE] = ACTIONS(4755), + [anon_sym_LT_LPAREN] = ACTIONS(4755), + [anon_sym_GT_LPAREN] = ACTIONS(4755), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4755), }, [2243] = { - [aux_sym_concatenation_repeat1] = STATE(2243), - [sym__concat] = ACTIONS(2807), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym__simple_heredoc_body] = ACTIONS(5168), + [sym__heredoc_body_beginning] = ACTIONS(5168), + [sym_file_descriptor] = ACTIONS(5168), + [sym__concat] = ACTIONS(5168), + [sym_variable_name] = ACTIONS(5168), + [ts_builtin_sym_end] = ACTIONS(5168), + [anon_sym_SEMI] = ACTIONS(5170), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_RPAREN] = ACTIONS(5168), + [anon_sym_SEMI_SEMI] = ACTIONS(5168), + [anon_sym_PIPE_AMP] = ACTIONS(5168), + [anon_sym_AMP_AMP] = ACTIONS(5168), + [anon_sym_PIPE_PIPE] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5170), + [anon_sym_GT] = ACTIONS(5170), + [anon_sym_GT_GT] = ACTIONS(5168), + [anon_sym_AMP_GT] = ACTIONS(5170), + [anon_sym_AMP_GT_GT] = ACTIONS(5168), + [anon_sym_LT_AMP] = ACTIONS(5168), + [anon_sym_GT_AMP] = ACTIONS(5168), + [anon_sym_LT_LT] = ACTIONS(5170), + [anon_sym_LT_LT_DASH] = ACTIONS(5168), + [anon_sym_LT_LT_LT] = ACTIONS(5168), + [sym__special_characters] = ACTIONS(5168), + [anon_sym_DQUOTE] = ACTIONS(5168), + [anon_sym_DOLLAR] = ACTIONS(5170), + [sym_raw_string] = ACTIONS(5168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5168), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5168), + [anon_sym_BQUOTE] = ACTIONS(5168), + [anon_sym_LT_LPAREN] = ACTIONS(5168), + [anon_sym_GT_LPAREN] = ACTIONS(5168), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5170), + [anon_sym_LF] = ACTIONS(5168), + [anon_sym_AMP] = ACTIONS(5170), }, [2244] = { - [sym__concat] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_PIPE_PIPE] = ACTIONS(5202), - [anon_sym_RBRACK] = ACTIONS(5202), - [anon_sym_EQ_TILDE] = ACTIONS(5202), - [anon_sym_EQ_EQ] = ACTIONS(5202), - [anon_sym_EQ] = ACTIONS(5204), - [anon_sym_PLUS_EQ] = ACTIONS(5202), - [anon_sym_LT] = ACTIONS(5204), - [anon_sym_GT] = ACTIONS(5204), - [anon_sym_BANG_EQ] = ACTIONS(5202), - [anon_sym_PLUS] = ACTIONS(5204), - [anon_sym_DASH] = ACTIONS(5204), - [anon_sym_DASH_EQ] = ACTIONS(5202), - [anon_sym_LT_EQ] = ACTIONS(5202), - [anon_sym_GT_EQ] = ACTIONS(5202), - [anon_sym_PLUS_PLUS] = ACTIONS(5202), - [anon_sym_DASH_DASH] = ACTIONS(5202), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(5202), + [sym__simple_heredoc_body] = ACTIONS(5172), + [sym__heredoc_body_beginning] = ACTIONS(5172), + [sym_file_descriptor] = ACTIONS(5172), + [sym__concat] = ACTIONS(5172), + [sym_variable_name] = ACTIONS(5172), + [ts_builtin_sym_end] = ACTIONS(5172), + [anon_sym_SEMI] = ACTIONS(5174), + [anon_sym_PIPE] = ACTIONS(5174), + [anon_sym_RPAREN] = ACTIONS(5172), + [anon_sym_SEMI_SEMI] = ACTIONS(5172), + [anon_sym_PIPE_AMP] = ACTIONS(5172), + [anon_sym_AMP_AMP] = ACTIONS(5172), + [anon_sym_PIPE_PIPE] = ACTIONS(5172), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_GT_GT] = ACTIONS(5172), + [anon_sym_AMP_GT] = ACTIONS(5174), + [anon_sym_AMP_GT_GT] = ACTIONS(5172), + [anon_sym_LT_AMP] = ACTIONS(5172), + [anon_sym_GT_AMP] = ACTIONS(5172), + [anon_sym_LT_LT] = ACTIONS(5174), + [anon_sym_LT_LT_DASH] = ACTIONS(5172), + [anon_sym_LT_LT_LT] = ACTIONS(5172), + [sym__special_characters] = ACTIONS(5172), + [anon_sym_DQUOTE] = ACTIONS(5172), + [anon_sym_DOLLAR] = ACTIONS(5174), + [sym_raw_string] = ACTIONS(5172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5172), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5172), + [anon_sym_BQUOTE] = ACTIONS(5172), + [anon_sym_LT_LPAREN] = ACTIONS(5172), + [anon_sym_GT_LPAREN] = ACTIONS(5172), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5174), + [anon_sym_LF] = ACTIONS(5172), + [anon_sym_AMP] = ACTIONS(5174), }, [2245] = { - [sym__concat] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [anon_sym_RBRACK] = ACTIONS(5206), - [anon_sym_EQ_TILDE] = ACTIONS(5206), - [anon_sym_EQ_EQ] = ACTIONS(5206), - [anon_sym_EQ] = ACTIONS(5208), - [anon_sym_PLUS_EQ] = ACTIONS(5206), - [anon_sym_LT] = ACTIONS(5208), - [anon_sym_GT] = ACTIONS(5208), - [anon_sym_BANG_EQ] = ACTIONS(5206), - [anon_sym_PLUS] = ACTIONS(5208), - [anon_sym_DASH] = ACTIONS(5208), - [anon_sym_DASH_EQ] = ACTIONS(5206), - [anon_sym_LT_EQ] = ACTIONS(5206), - [anon_sym_GT_EQ] = ACTIONS(5206), - [anon_sym_PLUS_PLUS] = ACTIONS(5206), - [anon_sym_DASH_DASH] = ACTIONS(5206), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(5206), + [sym__simple_heredoc_body] = ACTIONS(5498), + [sym__heredoc_body_beginning] = ACTIONS(5498), + [sym_file_descriptor] = ACTIONS(5498), + [ts_builtin_sym_end] = ACTIONS(5498), + [anon_sym_SEMI] = ACTIONS(5500), + [anon_sym_esac] = ACTIONS(5498), + [anon_sym_PIPE] = ACTIONS(5500), + [anon_sym_RPAREN] = ACTIONS(5498), + [anon_sym_SEMI_SEMI] = ACTIONS(5498), + [anon_sym_PIPE_AMP] = ACTIONS(5498), + [anon_sym_AMP_AMP] = ACTIONS(5498), + [anon_sym_PIPE_PIPE] = ACTIONS(5498), + [anon_sym_LT] = ACTIONS(5500), + [anon_sym_GT] = ACTIONS(5500), + [anon_sym_GT_GT] = ACTIONS(5498), + [anon_sym_AMP_GT] = ACTIONS(5500), + [anon_sym_AMP_GT_GT] = ACTIONS(5498), + [anon_sym_LT_AMP] = ACTIONS(5498), + [anon_sym_GT_AMP] = ACTIONS(5498), + [anon_sym_LT_LT] = ACTIONS(5500), + [anon_sym_LT_LT_DASH] = ACTIONS(5498), + [anon_sym_LT_LT_LT] = ACTIONS(5498), + [anon_sym_BQUOTE] = ACTIONS(5498), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5498), + [anon_sym_AMP] = ACTIONS(5500), }, [2246] = { - [sym__concat] = ACTIONS(5202), - [sym_variable_name] = ACTIONS(5202), - [ts_builtin_sym_end] = ACTIONS(5202), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5202), - [anon_sym_SEMI_SEMI] = ACTIONS(5202), - [anon_sym_PIPE_AMP] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_PIPE_PIPE] = ACTIONS(5202), - [sym__special_characters] = ACTIONS(5202), - [anon_sym_DQUOTE] = ACTIONS(5202), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), - [anon_sym_BQUOTE] = ACTIONS(5202), - [anon_sym_LT_LPAREN] = ACTIONS(5202), - [anon_sym_GT_LPAREN] = ACTIONS(5202), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5204), - [sym_word] = ACTIONS(5204), - [anon_sym_LF] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5204), + [sym__concat] = ACTIONS(5168), + [anon_sym_SEMI] = ACTIONS(5170), + [anon_sym_SEMI_SEMI] = ACTIONS(5168), + [anon_sym_AMP_AMP] = ACTIONS(5168), + [anon_sym_PIPE_PIPE] = ACTIONS(5168), + [anon_sym_EQ_TILDE] = ACTIONS(5168), + [anon_sym_EQ_EQ] = ACTIONS(5168), + [anon_sym_EQ] = ACTIONS(5170), + [anon_sym_PLUS_EQ] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5170), + [anon_sym_GT] = ACTIONS(5170), + [anon_sym_BANG_EQ] = ACTIONS(5168), + [anon_sym_PLUS] = ACTIONS(5170), + [anon_sym_DASH] = ACTIONS(5170), + [anon_sym_DASH_EQ] = ACTIONS(5168), + [anon_sym_LT_EQ] = ACTIONS(5168), + [anon_sym_GT_EQ] = ACTIONS(5168), + [anon_sym_PLUS_PLUS] = ACTIONS(5168), + [anon_sym_DASH_DASH] = ACTIONS(5168), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5168), + [anon_sym_LF] = ACTIONS(5168), + [anon_sym_AMP] = ACTIONS(5170), }, [2247] = { - [sym__concat] = ACTIONS(5206), - [sym_variable_name] = ACTIONS(5206), - [ts_builtin_sym_end] = ACTIONS(5206), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_RPAREN] = ACTIONS(5206), - [anon_sym_SEMI_SEMI] = ACTIONS(5206), - [anon_sym_PIPE_AMP] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [sym__special_characters] = ACTIONS(5206), - [anon_sym_DQUOTE] = ACTIONS(5206), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), - [anon_sym_BQUOTE] = ACTIONS(5206), - [anon_sym_LT_LPAREN] = ACTIONS(5206), - [anon_sym_GT_LPAREN] = ACTIONS(5206), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5208), - [sym_word] = ACTIONS(5208), - [anon_sym_LF] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5208), + [sym__concat] = ACTIONS(5172), + [anon_sym_SEMI] = ACTIONS(5174), + [anon_sym_SEMI_SEMI] = ACTIONS(5172), + [anon_sym_AMP_AMP] = ACTIONS(5172), + [anon_sym_PIPE_PIPE] = ACTIONS(5172), + [anon_sym_EQ_TILDE] = ACTIONS(5172), + [anon_sym_EQ_EQ] = ACTIONS(5172), + [anon_sym_EQ] = ACTIONS(5174), + [anon_sym_PLUS_EQ] = ACTIONS(5172), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_BANG_EQ] = ACTIONS(5172), + [anon_sym_PLUS] = ACTIONS(5174), + [anon_sym_DASH] = ACTIONS(5174), + [anon_sym_DASH_EQ] = ACTIONS(5172), + [anon_sym_LT_EQ] = ACTIONS(5172), + [anon_sym_GT_EQ] = ACTIONS(5172), + [anon_sym_PLUS_PLUS] = ACTIONS(5172), + [anon_sym_DASH_DASH] = ACTIONS(5172), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5172), + [anon_sym_LF] = ACTIONS(5172), + [anon_sym_AMP] = ACTIONS(5174), }, [2248] = { - [sym__concat] = ACTIONS(5202), - [ts_builtin_sym_end] = ACTIONS(5202), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5202), - [anon_sym_SEMI_SEMI] = ACTIONS(5202), - [anon_sym_PIPE_AMP] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_PIPE_PIPE] = ACTIONS(5202), - [sym__special_characters] = ACTIONS(5202), - [anon_sym_DQUOTE] = ACTIONS(5202), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), - [anon_sym_BQUOTE] = ACTIONS(5202), - [anon_sym_LT_LPAREN] = ACTIONS(5202), - [anon_sym_GT_LPAREN] = ACTIONS(5202), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5204), - [sym_word] = ACTIONS(5204), - [anon_sym_LF] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5204), + [sym_do_group] = STATE(2398), + [sym_compound_statement] = STATE(2398), + [anon_sym_do] = ACTIONS(493), + [anon_sym_LBRACE] = ACTIONS(25), + [sym_comment] = ACTIONS(57), }, [2249] = { - [sym__concat] = ACTIONS(5206), - [ts_builtin_sym_end] = ACTIONS(5206), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_RPAREN] = ACTIONS(5206), - [anon_sym_SEMI_SEMI] = ACTIONS(5206), - [anon_sym_PIPE_AMP] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [sym__special_characters] = ACTIONS(5206), - [anon_sym_DQUOTE] = ACTIONS(5206), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), - [anon_sym_BQUOTE] = ACTIONS(5206), - [anon_sym_LT_LPAREN] = ACTIONS(5206), - [anon_sym_GT_LPAREN] = ACTIONS(5206), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5208), - [sym_word] = ACTIONS(5208), - [anon_sym_LF] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5208), + [sym__concat] = ACTIONS(4687), + [anon_sym_SEMI] = ACTIONS(4689), + [anon_sym_SEMI_SEMI] = ACTIONS(4687), + [sym__special_characters] = ACTIONS(4687), + [anon_sym_DQUOTE] = ACTIONS(4687), + [anon_sym_DOLLAR] = ACTIONS(4689), + [sym_raw_string] = ACTIONS(4687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4687), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4687), + [anon_sym_BQUOTE] = ACTIONS(4687), + [anon_sym_LT_LPAREN] = ACTIONS(4687), + [anon_sym_GT_LPAREN] = ACTIONS(4687), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4689), + [anon_sym_LF] = ACTIONS(4687), + [anon_sym_AMP] = ACTIONS(4687), }, [2250] = { - [sym_file_descriptor] = ACTIONS(5202), - [sym__concat] = ACTIONS(5202), - [sym_variable_name] = ACTIONS(5202), - [anon_sym_LT] = ACTIONS(5204), - [anon_sym_GT] = ACTIONS(5204), - [anon_sym_GT_GT] = ACTIONS(5202), - [anon_sym_AMP_GT] = ACTIONS(5204), - [anon_sym_AMP_GT_GT] = ACTIONS(5202), - [anon_sym_LT_AMP] = ACTIONS(5202), - [anon_sym_GT_AMP] = ACTIONS(5202), - [sym__special_characters] = ACTIONS(5202), - [anon_sym_DQUOTE] = ACTIONS(5202), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), - [anon_sym_BQUOTE] = ACTIONS(5202), - [anon_sym_LT_LPAREN] = ACTIONS(5202), - [anon_sym_GT_LPAREN] = ACTIONS(5202), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5202), + [sym__concat] = ACTIONS(4691), + [anon_sym_SEMI] = ACTIONS(4693), + [anon_sym_SEMI_SEMI] = ACTIONS(4691), + [sym__special_characters] = ACTIONS(4691), + [anon_sym_DQUOTE] = ACTIONS(4691), + [anon_sym_DOLLAR] = ACTIONS(4693), + [sym_raw_string] = ACTIONS(4691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4691), + [anon_sym_BQUOTE] = ACTIONS(4691), + [anon_sym_LT_LPAREN] = ACTIONS(4691), + [anon_sym_GT_LPAREN] = ACTIONS(4691), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4693), + [anon_sym_LF] = ACTIONS(4691), + [anon_sym_AMP] = ACTIONS(4691), }, [2251] = { - [sym_file_descriptor] = ACTIONS(5206), - [sym__concat] = ACTIONS(5206), - [sym_variable_name] = ACTIONS(5206), - [anon_sym_LT] = ACTIONS(5208), - [anon_sym_GT] = ACTIONS(5208), - [anon_sym_GT_GT] = ACTIONS(5206), - [anon_sym_AMP_GT] = ACTIONS(5208), - [anon_sym_AMP_GT_GT] = ACTIONS(5206), - [anon_sym_LT_AMP] = ACTIONS(5206), - [anon_sym_GT_AMP] = ACTIONS(5206), - [sym__special_characters] = ACTIONS(5206), - [anon_sym_DQUOTE] = ACTIONS(5206), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), - [anon_sym_BQUOTE] = ACTIONS(5206), - [anon_sym_LT_LPAREN] = ACTIONS(5206), - [anon_sym_GT_LPAREN] = ACTIONS(5206), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5206), + [sym__concat] = ACTIONS(4695), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym_SEMI_SEMI] = ACTIONS(4695), + [sym__special_characters] = ACTIONS(4695), + [anon_sym_DQUOTE] = ACTIONS(4695), + [anon_sym_DOLLAR] = ACTIONS(4697), + [sym_raw_string] = ACTIONS(4695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4695), + [anon_sym_BQUOTE] = ACTIONS(4695), + [anon_sym_LT_LPAREN] = ACTIONS(4695), + [anon_sym_GT_LPAREN] = ACTIONS(4695), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4697), + [anon_sym_LF] = ACTIONS(4695), + [anon_sym_AMP] = ACTIONS(4695), }, [2252] = { - [sym__concat] = ACTIONS(5202), - [anon_sym_DQUOTE] = ACTIONS(5204), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym__string_content] = ACTIONS(5202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5204), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5204), - [anon_sym_BQUOTE] = ACTIONS(5204), - [sym_comment] = ACTIONS(281), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5502), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2253] = { - [sym__concat] = ACTIONS(5206), - [anon_sym_DQUOTE] = ACTIONS(5208), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym__string_content] = ACTIONS(5206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5208), - [anon_sym_BQUOTE] = ACTIONS(5208), - [sym_comment] = ACTIONS(281), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5504), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2254] = { - [sym__concat] = ACTIONS(3934), - [anon_sym_RBRACE] = ACTIONS(3934), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(4731), + [anon_sym_SEMI] = ACTIONS(4733), + [anon_sym_SEMI_SEMI] = ACTIONS(4731), + [sym__special_characters] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4731), + [anon_sym_DOLLAR] = ACTIONS(4733), + [sym_raw_string] = ACTIONS(4731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4731), + [anon_sym_BQUOTE] = ACTIONS(4731), + [anon_sym_LT_LPAREN] = ACTIONS(4731), + [anon_sym_GT_LPAREN] = ACTIONS(4731), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4733), + [anon_sym_LF] = ACTIONS(4731), + [anon_sym_AMP] = ACTIONS(4731), }, [2255] = { - [sym__concat] = ACTIONS(3942), - [anon_sym_RBRACE] = ACTIONS(3942), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4753), + [anon_sym_SEMI_SEMI] = ACTIONS(4751), + [sym__special_characters] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4753), + [sym_raw_string] = ACTIONS(4751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4751), + [anon_sym_BQUOTE] = ACTIONS(4751), + [anon_sym_LT_LPAREN] = ACTIONS(4751), + [anon_sym_GT_LPAREN] = ACTIONS(4751), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4753), + [anon_sym_LF] = ACTIONS(4751), + [anon_sym_AMP] = ACTIONS(4751), }, [2256] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(5522), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4757), + [anon_sym_SEMI_SEMI] = ACTIONS(4755), + [sym__special_characters] = ACTIONS(4755), + [anon_sym_DQUOTE] = ACTIONS(4755), + [anon_sym_DOLLAR] = ACTIONS(4757), + [sym_raw_string] = ACTIONS(4755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4755), + [anon_sym_BQUOTE] = ACTIONS(4755), + [anon_sym_LT_LPAREN] = ACTIONS(4755), + [anon_sym_GT_LPAREN] = ACTIONS(4755), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4757), + [anon_sym_LF] = ACTIONS(4755), + [anon_sym_AMP] = ACTIONS(4755), }, [2257] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(5524), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(5168), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_RPAREN] = ACTIONS(5168), + [anon_sym_AMP_AMP] = ACTIONS(5168), + [anon_sym_PIPE_PIPE] = ACTIONS(5168), + [anon_sym_EQ_TILDE] = ACTIONS(5168), + [anon_sym_EQ_EQ] = ACTIONS(5168), + [anon_sym_EQ] = ACTIONS(5170), + [anon_sym_PLUS_EQ] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5170), + [anon_sym_GT] = ACTIONS(5170), + [anon_sym_BANG_EQ] = ACTIONS(5168), + [anon_sym_PLUS] = ACTIONS(5170), + [anon_sym_DASH] = ACTIONS(5170), + [anon_sym_DASH_EQ] = ACTIONS(5168), + [anon_sym_LT_EQ] = ACTIONS(5168), + [anon_sym_GT_EQ] = ACTIONS(5168), + [anon_sym_PLUS_PLUS] = ACTIONS(5168), + [anon_sym_DASH_DASH] = ACTIONS(5168), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5168), }, [2258] = { - [anon_sym_RBRACE] = ACTIONS(5524), - [sym_comment] = ACTIONS(55), + [sym__concat] = ACTIONS(5172), + [anon_sym_PIPE] = ACTIONS(5174), + [anon_sym_RPAREN] = ACTIONS(5172), + [anon_sym_AMP_AMP] = ACTIONS(5172), + [anon_sym_PIPE_PIPE] = ACTIONS(5172), + [anon_sym_EQ_TILDE] = ACTIONS(5172), + [anon_sym_EQ_EQ] = ACTIONS(5172), + [anon_sym_EQ] = ACTIONS(5174), + [anon_sym_PLUS_EQ] = ACTIONS(5172), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_BANG_EQ] = ACTIONS(5172), + [anon_sym_PLUS] = ACTIONS(5174), + [anon_sym_DASH] = ACTIONS(5174), + [anon_sym_DASH_EQ] = ACTIONS(5172), + [anon_sym_LT_EQ] = ACTIONS(5172), + [anon_sym_GT_EQ] = ACTIONS(5172), + [anon_sym_PLUS_PLUS] = ACTIONS(5172), + [anon_sym_DASH_DASH] = ACTIONS(5172), + [sym_comment] = ACTIONS(57), + [sym_test_operator] = ACTIONS(5172), }, [2259] = { - [sym_concatenation] = STATE(2445), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2445), - [anon_sym_RBRACE] = ACTIONS(5526), - [anon_sym_EQ] = ACTIONS(5528), - [anon_sym_DASH] = ACTIONS(5528), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5530), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(5528), - [anon_sym_COLON_QMARK] = ACTIONS(5528), - [anon_sym_COLON_DASH] = ACTIONS(5528), - [anon_sym_PERCENT] = ACTIONS(5528), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym_variable_name] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_esac] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1087), + [anon_sym_SEMI_SEMI] = ACTIONS(1085), + [anon_sym_PIPE_AMP] = ACTIONS(1085), + [anon_sym_AMP_AMP] = ACTIONS(1085), + [anon_sym_PIPE_PIPE] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_AMP_GT] = ACTIONS(1087), + [anon_sym_AMP_GT_GT] = ACTIONS(1085), + [anon_sym_LT_AMP] = ACTIONS(1085), + [anon_sym_GT_AMP] = ACTIONS(1085), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_LT_LT_DASH] = ACTIONS(1085), + [anon_sym_LT_LT_LT] = ACTIONS(1085), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1087), + [sym_raw_string] = ACTIONS(1085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_LT_LPAREN] = ACTIONS(1085), + [anon_sym_GT_LPAREN] = ACTIONS(1085), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1087), + [anon_sym_LF] = ACTIONS(1085), + [anon_sym_AMP] = ACTIONS(1087), }, [2260] = { - [sym__concat] = ACTIONS(3998), - [anon_sym_RBRACE] = ACTIONS(3998), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(2402), + [sym_string] = STATE(537), + [sym_simple_expansion] = STATE(537), + [sym_string_expansion] = STATE(537), + [sym_expansion] = STATE(537), + [sym_command_substitution] = STATE(537), + [sym_process_substitution] = STATE(537), + [aux_sym_for_statement_repeat1] = STATE(2402), + [anon_sym_RPAREN] = ACTIONS(5506), + [sym__special_characters] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1095), + [sym_raw_string] = ACTIONS(1097), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1099), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1103), + [anon_sym_LT_LPAREN] = ACTIONS(1105), + [anon_sym_GT_LPAREN] = ACTIONS(1105), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1097), }, [2261] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5526), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(2404), + [sym__simple_heredoc_body] = ACTIONS(1107), + [sym__heredoc_body_beginning] = ACTIONS(1107), + [sym_file_descriptor] = ACTIONS(1107), + [sym__concat] = ACTIONS(5508), + [sym_variable_name] = ACTIONS(1107), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_esac] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_SEMI_SEMI] = ACTIONS(1107), + [anon_sym_PIPE_AMP] = ACTIONS(1107), + [anon_sym_AMP_AMP] = ACTIONS(1107), + [anon_sym_PIPE_PIPE] = ACTIONS(1107), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1107), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1107), + [anon_sym_LT_AMP] = ACTIONS(1107), + [anon_sym_GT_AMP] = ACTIONS(1107), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_LT_LT_DASH] = ACTIONS(1107), + [anon_sym_LT_LT_LT] = ACTIONS(1107), + [sym__special_characters] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(1107), + [anon_sym_DOLLAR] = ACTIONS(1111), + [sym_raw_string] = ACTIONS(1107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1107), + [anon_sym_BQUOTE] = ACTIONS(1107), + [anon_sym_LT_LPAREN] = ACTIONS(1107), + [anon_sym_GT_LPAREN] = ACTIONS(1107), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1111), + [anon_sym_LF] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1111), }, [2262] = { - [sym_concatenation] = STATE(2446), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2446), - [anon_sym_RBRACE] = ACTIONS(5524), - [anon_sym_EQ] = ACTIONS(5532), - [anon_sym_DASH] = ACTIONS(5532), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5534), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(5532), - [anon_sym_COLON_QMARK] = ACTIONS(5532), - [anon_sym_COLON_DASH] = ACTIONS(5532), - [anon_sym_PERCENT] = ACTIONS(5532), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(2407), + [anon_sym_DQUOTE] = ACTIONS(5510), + [anon_sym_DOLLAR] = ACTIONS(5512), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [2263] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5524), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_string] = STATE(2409), + [anon_sym_DASH] = ACTIONS(5514), + [anon_sym_DQUOTE] = ACTIONS(5276), + [anon_sym_DOLLAR] = ACTIONS(5514), + [sym_raw_string] = ACTIONS(5516), + [anon_sym_POUND] = ACTIONS(5514), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5518), + [anon_sym_STAR] = ACTIONS(5520), + [anon_sym_AT] = ACTIONS(5520), + [anon_sym_QMARK] = ACTIONS(5520), + [anon_sym_0] = ACTIONS(5518), + [anon_sym__] = ACTIONS(5518), }, [2264] = { - [sym__concat] = ACTIONS(4043), - [anon_sym_RBRACE] = ACTIONS(4043), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(2404), + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(5508), + [sym_variable_name] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_esac] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1087), + [anon_sym_SEMI_SEMI] = ACTIONS(1085), + [anon_sym_PIPE_AMP] = ACTIONS(1085), + [anon_sym_AMP_AMP] = ACTIONS(1085), + [anon_sym_PIPE_PIPE] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_AMP_GT] = ACTIONS(1087), + [anon_sym_AMP_GT_GT] = ACTIONS(1085), + [anon_sym_LT_AMP] = ACTIONS(1085), + [anon_sym_GT_AMP] = ACTIONS(1085), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_LT_LT_DASH] = ACTIONS(1085), + [anon_sym_LT_LT_LT] = ACTIONS(1085), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1087), + [sym_raw_string] = ACTIONS(1085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_LT_LPAREN] = ACTIONS(1085), + [anon_sym_GT_LPAREN] = ACTIONS(1085), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1087), + [anon_sym_LF] = ACTIONS(1085), + [anon_sym_AMP] = ACTIONS(1087), }, [2265] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5536), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_subscript] = STATE(2414), + [sym_variable_name] = ACTIONS(5522), + [anon_sym_BANG] = ACTIONS(5524), + [anon_sym_DASH] = ACTIONS(5526), + [anon_sym_DOLLAR] = ACTIONS(5526), + [anon_sym_POUND] = ACTIONS(5524), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5528), + [anon_sym_STAR] = ACTIONS(5530), + [anon_sym_AT] = ACTIONS(5530), + [anon_sym_QMARK] = ACTIONS(5530), + [anon_sym_0] = ACTIONS(5528), + [anon_sym__] = ACTIONS(5528), }, [2266] = { - [sym__concat] = ACTIONS(4065), - [anon_sym_RBRACE] = ACTIONS(4065), - [sym_comment] = ACTIONS(55), + [sym__terminated_statement] = STATE(2417), + [sym_redirected_statement] = STATE(2415), + [sym_for_statement] = STATE(2415), + [sym_c_style_for_statement] = STATE(2415), + [sym_while_statement] = STATE(2415), + [sym_if_statement] = STATE(2415), + [sym_case_statement] = STATE(2415), + [sym_function_definition] = STATE(2415), + [sym_compound_statement] = STATE(2415), + [sym_subshell] = STATE(2415), + [sym_pipeline] = STATE(2415), + [sym_list] = STATE(2415), + [sym_negated_command] = STATE(2415), + [sym_test_command] = STATE(2415), + [sym_declaration_command] = STATE(2415), + [sym_unset_command] = STATE(2415), + [sym_command] = STATE(2415), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(2416), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(2417), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [2267] = { - [sym__concat] = ACTIONS(4089), - [anon_sym_RBRACE] = ACTIONS(4089), - [sym_comment] = ACTIONS(55), + [sym__terminated_statement] = STATE(2420), + [sym_redirected_statement] = STATE(2418), + [sym_for_statement] = STATE(2418), + [sym_c_style_for_statement] = STATE(2418), + [sym_while_statement] = STATE(2418), + [sym_if_statement] = STATE(2418), + [sym_case_statement] = STATE(2418), + [sym_function_definition] = STATE(2418), + [sym_compound_statement] = STATE(2418), + [sym_subshell] = STATE(2418), + [sym_pipeline] = STATE(2418), + [sym_list] = STATE(2418), + [sym_negated_command] = STATE(2418), + [sym_test_command] = STATE(2418), + [sym_declaration_command] = STATE(2418), + [sym_unset_command] = STATE(2418), + [sym_command] = STATE(2418), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(2419), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(2420), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [2268] = { - [sym__concat] = ACTIONS(4710), - [anon_sym_RBRACE] = ACTIONS(4710), - [anon_sym_EQ] = ACTIONS(4712), - [anon_sym_DASH] = ACTIONS(4712), - [sym__special_characters] = ACTIONS(4712), - [anon_sym_DQUOTE] = ACTIONS(4710), - [anon_sym_DOLLAR] = ACTIONS(4712), - [sym_raw_string] = ACTIONS(4710), - [anon_sym_POUND] = ACTIONS(4710), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), - [anon_sym_COLON] = ACTIONS(4712), - [anon_sym_COLON_QMARK] = ACTIONS(4712), - [anon_sym_COLON_DASH] = ACTIONS(4712), - [anon_sym_PERCENT] = ACTIONS(4712), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), - [anon_sym_BQUOTE] = ACTIONS(4710), - [anon_sym_LT_LPAREN] = ACTIONS(4710), - [anon_sym_GT_LPAREN] = ACTIONS(4710), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(4712), + [sym__terminated_statement] = STATE(2423), + [sym_redirected_statement] = STATE(2421), + [sym_for_statement] = STATE(2421), + [sym_c_style_for_statement] = STATE(2421), + [sym_while_statement] = STATE(2421), + [sym_if_statement] = STATE(2421), + [sym_case_statement] = STATE(2421), + [sym_function_definition] = STATE(2421), + [sym_compound_statement] = STATE(2421), + [sym_subshell] = STATE(2421), + [sym_pipeline] = STATE(2421), + [sym_list] = STATE(2421), + [sym_negated_command] = STATE(2421), + [sym_test_command] = STATE(2421), + [sym_declaration_command] = STATE(2421), + [sym_unset_command] = STATE(2421), + [sym_command] = STATE(2421), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(2422), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(2423), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [2269] = { - [sym__concat] = ACTIONS(4714), - [anon_sym_RBRACE] = ACTIONS(4714), - [anon_sym_EQ] = ACTIONS(4716), - [anon_sym_DASH] = ACTIONS(4716), - [sym__special_characters] = ACTIONS(4716), - [anon_sym_DQUOTE] = ACTIONS(4714), - [anon_sym_DOLLAR] = ACTIONS(4716), - [sym_raw_string] = ACTIONS(4714), - [anon_sym_POUND] = ACTIONS(4714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), - [anon_sym_COLON] = ACTIONS(4716), - [anon_sym_COLON_QMARK] = ACTIONS(4716), - [anon_sym_COLON_DASH] = ACTIONS(4716), - [anon_sym_PERCENT] = ACTIONS(4716), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), - [anon_sym_BQUOTE] = ACTIONS(4714), - [anon_sym_LT_LPAREN] = ACTIONS(4714), - [anon_sym_GT_LPAREN] = ACTIONS(4714), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(4716), + [sym_concatenation] = STATE(2424), + [sym_string] = STATE(2427), + [sym_array] = STATE(2424), + [sym_simple_expansion] = STATE(2427), + [sym_string_expansion] = STATE(2427), + [sym_expansion] = STATE(2427), + [sym_command_substitution] = STATE(2427), + [sym_process_substitution] = STATE(2427), + [sym__empty_value] = ACTIONS(5532), + [anon_sym_LPAREN] = ACTIONS(5534), + [sym__special_characters] = ACTIONS(5536), + [anon_sym_DQUOTE] = ACTIONS(4969), + [anon_sym_DOLLAR] = ACTIONS(4971), + [sym_raw_string] = ACTIONS(5538), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4977), + [anon_sym_BQUOTE] = ACTIONS(4979), + [anon_sym_LT_LPAREN] = ACTIONS(4981), + [anon_sym_GT_LPAREN] = ACTIONS(4981), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5538), }, [2270] = { - [sym__concat] = ACTIONS(4718), - [anon_sym_RBRACE] = ACTIONS(4718), - [anon_sym_EQ] = ACTIONS(4720), - [anon_sym_DASH] = ACTIONS(4720), - [sym__special_characters] = ACTIONS(4720), - [anon_sym_DQUOTE] = ACTIONS(4718), - [anon_sym_DOLLAR] = ACTIONS(4720), - [sym_raw_string] = ACTIONS(4718), - [anon_sym_POUND] = ACTIONS(4718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), - [anon_sym_COLON] = ACTIONS(4720), - [anon_sym_COLON_QMARK] = ACTIONS(4720), - [anon_sym_COLON_DASH] = ACTIONS(4720), - [anon_sym_PERCENT] = ACTIONS(4720), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), - [anon_sym_BQUOTE] = ACTIONS(4718), - [anon_sym_LT_LPAREN] = ACTIONS(4718), - [anon_sym_GT_LPAREN] = ACTIONS(4718), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(4720), + [sym_string] = STATE(2428), + [sym_simple_expansion] = STATE(2428), + [sym_string_expansion] = STATE(2428), + [sym_expansion] = STATE(2428), + [sym_command_substitution] = STATE(2428), + [sym_process_substitution] = STATE(2428), + [sym__special_characters] = ACTIONS(5540), + [anon_sym_DQUOTE] = ACTIONS(4969), + [anon_sym_DOLLAR] = ACTIONS(4971), + [sym_raw_string] = ACTIONS(5540), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4975), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4977), + [anon_sym_BQUOTE] = ACTIONS(4979), + [anon_sym_LT_LPAREN] = ACTIONS(4981), + [anon_sym_GT_LPAREN] = ACTIONS(4981), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5540), }, [2271] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5538), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(2429), + [sym__simple_heredoc_body] = ACTIONS(779), + [sym__heredoc_body_beginning] = ACTIONS(779), + [sym_file_descriptor] = ACTIONS(779), + [sym__concat] = ACTIONS(5292), + [sym_variable_name] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_esac] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [anon_sym_PIPE_AMP] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_AMP_GT] = ACTIONS(781), + [anon_sym_AMP_GT_GT] = ACTIONS(779), + [anon_sym_LT_AMP] = ACTIONS(779), + [anon_sym_GT_AMP] = ACTIONS(779), + [anon_sym_LT_LT] = ACTIONS(781), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_LT] = ACTIONS(779), + [sym__special_characters] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(781), + [sym_raw_string] = ACTIONS(779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(779), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), + [sym_word] = ACTIONS(781), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(781), }, [2272] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5540), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(783), + [sym__heredoc_body_beginning] = ACTIONS(783), + [sym_file_descriptor] = ACTIONS(783), + [sym__concat] = ACTIONS(783), + [sym_variable_name] = ACTIONS(783), + [anon_sym_SEMI] = ACTIONS(785), + [anon_sym_esac] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_SEMI_SEMI] = ACTIONS(783), + [anon_sym_PIPE_AMP] = ACTIONS(783), + [anon_sym_AMP_AMP] = ACTIONS(783), + [anon_sym_PIPE_PIPE] = ACTIONS(783), + [anon_sym_LT] = ACTIONS(785), + [anon_sym_GT] = ACTIONS(785), + [anon_sym_GT_GT] = ACTIONS(783), + [anon_sym_AMP_GT] = ACTIONS(785), + [anon_sym_AMP_GT_GT] = ACTIONS(783), + [anon_sym_LT_AMP] = ACTIONS(783), + [anon_sym_GT_AMP] = ACTIONS(783), + [anon_sym_LT_LT] = ACTIONS(785), + [anon_sym_LT_LT_DASH] = ACTIONS(783), + [anon_sym_LT_LT_LT] = ACTIONS(783), + [sym__special_characters] = ACTIONS(783), + [anon_sym_DQUOTE] = ACTIONS(783), + [anon_sym_DOLLAR] = ACTIONS(785), + [sym_raw_string] = ACTIONS(783), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(783), + [anon_sym_BQUOTE] = ACTIONS(783), + [anon_sym_LT_LPAREN] = ACTIONS(783), + [anon_sym_GT_LPAREN] = ACTIONS(783), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(785), + [sym_word] = ACTIONS(785), + [anon_sym_LF] = ACTIONS(783), + [anon_sym_AMP] = ACTIONS(785), }, [2273] = { - [sym__concat] = ACTIONS(4754), - [anon_sym_RBRACE] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4756), - [anon_sym_DASH] = ACTIONS(4756), - [sym__special_characters] = ACTIONS(4756), - [anon_sym_DQUOTE] = ACTIONS(4754), - [anon_sym_DOLLAR] = ACTIONS(4756), - [sym_raw_string] = ACTIONS(4754), - [anon_sym_POUND] = ACTIONS(4754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), - [anon_sym_COLON] = ACTIONS(4756), - [anon_sym_COLON_QMARK] = ACTIONS(4756), - [anon_sym_COLON_DASH] = ACTIONS(4756), - [anon_sym_PERCENT] = ACTIONS(4756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), - [anon_sym_BQUOTE] = ACTIONS(4754), - [anon_sym_LT_LPAREN] = ACTIONS(4754), - [anon_sym_GT_LPAREN] = ACTIONS(4754), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(4756), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(5542), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [2274] = { - [aux_sym_concatenation_repeat1] = STATE(2274), - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(4936), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_LT_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT_LT] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(455), + [anon_sym_DQUOTE] = ACTIONS(5542), + [anon_sym_DOLLAR] = ACTIONS(5544), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [2275] = { - [aux_sym_concatenation_repeat1] = STATE(2275), - [sym__concat] = ACTIONS(2807), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym__simple_heredoc_body] = ACTIONS(817), + [sym__heredoc_body_beginning] = ACTIONS(817), + [sym_file_descriptor] = ACTIONS(817), + [sym__concat] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_SEMI] = ACTIONS(819), + [anon_sym_esac] = ACTIONS(819), + [anon_sym_PIPE] = ACTIONS(819), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_PIPE_AMP] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [anon_sym_LT_LT] = ACTIONS(819), + [anon_sym_LT_LT_DASH] = ACTIONS(817), + [anon_sym_LT_LT_LT] = ACTIONS(817), + [sym__special_characters] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(819), + [sym_word] = ACTIONS(819), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(819), }, [2276] = { - [sym__heredoc_body_middle] = ACTIONS(4710), - [sym__heredoc_body_end] = ACTIONS(4710), - [anon_sym_DOLLAR] = ACTIONS(4712), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(821), + [sym__heredoc_body_beginning] = ACTIONS(821), + [sym_file_descriptor] = ACTIONS(821), + [sym__concat] = ACTIONS(821), + [sym_variable_name] = ACTIONS(821), + [anon_sym_SEMI] = ACTIONS(823), + [anon_sym_esac] = ACTIONS(823), + [anon_sym_PIPE] = ACTIONS(823), + [anon_sym_SEMI_SEMI] = ACTIONS(821), + [anon_sym_PIPE_AMP] = ACTIONS(821), + [anon_sym_AMP_AMP] = ACTIONS(821), + [anon_sym_PIPE_PIPE] = ACTIONS(821), + [anon_sym_LT] = ACTIONS(823), + [anon_sym_GT] = ACTIONS(823), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_AMP_GT] = ACTIONS(823), + [anon_sym_AMP_GT_GT] = ACTIONS(821), + [anon_sym_LT_AMP] = ACTIONS(821), + [anon_sym_GT_AMP] = ACTIONS(821), + [anon_sym_LT_LT] = ACTIONS(823), + [anon_sym_LT_LT_DASH] = ACTIONS(821), + [anon_sym_LT_LT_LT] = ACTIONS(821), + [sym__special_characters] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(823), + [sym_raw_string] = ACTIONS(821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(821), + [anon_sym_BQUOTE] = ACTIONS(821), + [anon_sym_LT_LPAREN] = ACTIONS(821), + [anon_sym_GT_LPAREN] = ACTIONS(821), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [sym_word] = ACTIONS(823), + [anon_sym_LF] = ACTIONS(821), + [anon_sym_AMP] = ACTIONS(823), }, [2277] = { - [sym__heredoc_body_middle] = ACTIONS(4714), - [sym__heredoc_body_end] = ACTIONS(4714), - [anon_sym_DOLLAR] = ACTIONS(4716), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(825), + [sym__heredoc_body_beginning] = ACTIONS(825), + [sym_file_descriptor] = ACTIONS(825), + [sym__concat] = ACTIONS(825), + [sym_variable_name] = ACTIONS(825), + [anon_sym_SEMI] = ACTIONS(827), + [anon_sym_esac] = ACTIONS(827), + [anon_sym_PIPE] = ACTIONS(827), + [anon_sym_SEMI_SEMI] = ACTIONS(825), + [anon_sym_PIPE_AMP] = ACTIONS(825), + [anon_sym_AMP_AMP] = ACTIONS(825), + [anon_sym_PIPE_PIPE] = ACTIONS(825), + [anon_sym_LT] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_GT_GT] = ACTIONS(825), + [anon_sym_AMP_GT] = ACTIONS(827), + [anon_sym_AMP_GT_GT] = ACTIONS(825), + [anon_sym_LT_AMP] = ACTIONS(825), + [anon_sym_GT_AMP] = ACTIONS(825), + [anon_sym_LT_LT] = ACTIONS(827), + [anon_sym_LT_LT_DASH] = ACTIONS(825), + [anon_sym_LT_LT_LT] = ACTIONS(825), + [sym__special_characters] = ACTIONS(825), + [anon_sym_DQUOTE] = ACTIONS(825), + [anon_sym_DOLLAR] = ACTIONS(827), + [sym_raw_string] = ACTIONS(825), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(825), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_LT_LPAREN] = ACTIONS(825), + [anon_sym_GT_LPAREN] = ACTIONS(825), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(827), + [sym_word] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(825), + [anon_sym_AMP] = ACTIONS(827), }, [2278] = { - [sym__heredoc_body_middle] = ACTIONS(4718), - [sym__heredoc_body_end] = ACTIONS(4718), - [anon_sym_DOLLAR] = ACTIONS(4720), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), - [sym_comment] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(5546), + [sym_comment] = ACTIONS(57), }, [2279] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5542), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_subscript] = STATE(2435), + [sym_variable_name] = ACTIONS(5548), + [anon_sym_DASH] = ACTIONS(5550), + [anon_sym_DOLLAR] = ACTIONS(5550), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5552), + [anon_sym_STAR] = ACTIONS(5554), + [anon_sym_AT] = ACTIONS(5554), + [anon_sym_QMARK] = ACTIONS(5554), + [anon_sym_0] = ACTIONS(5552), + [anon_sym__] = ACTIONS(5552), }, [2280] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5544), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(2438), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2438), + [anon_sym_RBRACE] = ACTIONS(5556), + [anon_sym_EQ] = ACTIONS(5558), + [anon_sym_DASH] = ACTIONS(5558), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5560), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(5562), + [anon_sym_COLON] = ACTIONS(5558), + [anon_sym_COLON_QMARK] = ACTIONS(5558), + [anon_sym_COLON_DASH] = ACTIONS(5558), + [anon_sym_PERCENT] = ACTIONS(5558), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2281] = { - [sym__heredoc_body_middle] = ACTIONS(4754), - [sym__heredoc_body_end] = ACTIONS(4754), - [anon_sym_DOLLAR] = ACTIONS(4756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(2441), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2441), + [anon_sym_RBRACE] = ACTIONS(5564), + [anon_sym_EQ] = ACTIONS(5566), + [anon_sym_DASH] = ACTIONS(5566), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5568), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(5570), + [anon_sym_COLON] = ACTIONS(5566), + [anon_sym_COLON_QMARK] = ACTIONS(5566), + [anon_sym_COLON_DASH] = ACTIONS(5566), + [anon_sym_PERCENT] = ACTIONS(5566), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2282] = { - [sym__concat] = ACTIONS(4710), - [anon_sym_RPAREN] = ACTIONS(4710), - [sym__special_characters] = ACTIONS(4710), - [anon_sym_DQUOTE] = ACTIONS(4710), - [anon_sym_DOLLAR] = ACTIONS(4712), - [sym_raw_string] = ACTIONS(4710), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), - [anon_sym_BQUOTE] = ACTIONS(4710), - [anon_sym_LT_LPAREN] = ACTIONS(4710), - [anon_sym_GT_LPAREN] = ACTIONS(4710), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4710), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2444), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(5572), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5574), + [anon_sym_SEMI_SEMI] = ACTIONS(5576), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5576), + [anon_sym_AMP] = ACTIONS(5572), }, [2283] = { - [sym__concat] = ACTIONS(4714), - [anon_sym_RPAREN] = ACTIONS(4714), - [sym__special_characters] = ACTIONS(4714), - [anon_sym_DQUOTE] = ACTIONS(4714), - [anon_sym_DOLLAR] = ACTIONS(4716), - [sym_raw_string] = ACTIONS(4714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), - [anon_sym_BQUOTE] = ACTIONS(4714), - [anon_sym_LT_LPAREN] = ACTIONS(4714), - [anon_sym_GT_LPAREN] = ACTIONS(4714), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4714), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2444), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5572), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5574), + [anon_sym_SEMI_SEMI] = ACTIONS(5576), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5576), + [anon_sym_AMP] = ACTIONS(5572), }, [2284] = { - [sym__concat] = ACTIONS(4718), - [anon_sym_RPAREN] = ACTIONS(4718), - [sym__special_characters] = ACTIONS(4718), - [anon_sym_DQUOTE] = ACTIONS(4718), - [anon_sym_DOLLAR] = ACTIONS(4720), - [sym_raw_string] = ACTIONS(4718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), - [anon_sym_BQUOTE] = ACTIONS(4718), - [anon_sym_LT_LPAREN] = ACTIONS(4718), - [anon_sym_GT_LPAREN] = ACTIONS(4718), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4718), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(2445), + [sym_for_statement] = STATE(2445), + [sym_c_style_for_statement] = STATE(2445), + [sym_while_statement] = STATE(2445), + [sym_if_statement] = STATE(2445), + [sym_case_statement] = STATE(2445), + [sym_function_definition] = STATE(2445), + [sym_compound_statement] = STATE(2445), + [sym_subshell] = STATE(2445), + [sym_pipeline] = STATE(2445), + [sym_list] = STATE(2445), + [sym_negated_command] = STATE(2445), + [sym_test_command] = STATE(2445), + [sym_declaration_command] = STATE(2445), + [sym_unset_command] = STATE(2445), + [sym_command] = STATE(2445), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(2446), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [2285] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5546), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(2448), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(5578), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(5580), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(5574), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5580), + [anon_sym_AMP] = ACTIONS(5578), }, [2286] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5548), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(2448), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5578), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(5580), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(5574), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5580), + [anon_sym_AMP] = ACTIONS(5578), }, [2287] = { - [sym__concat] = ACTIONS(4754), - [anon_sym_RPAREN] = ACTIONS(4754), - [sym__special_characters] = ACTIONS(4754), - [anon_sym_DQUOTE] = ACTIONS(4754), - [anon_sym_DOLLAR] = ACTIONS(4756), - [sym_raw_string] = ACTIONS(4754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), - [anon_sym_BQUOTE] = ACTIONS(4754), - [anon_sym_LT_LPAREN] = ACTIONS(4754), - [anon_sym_GT_LPAREN] = ACTIONS(4754), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4754), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(2449), + [sym_for_statement] = STATE(2449), + [sym_c_style_for_statement] = STATE(2449), + [sym_while_statement] = STATE(2449), + [sym_if_statement] = STATE(2449), + [sym_case_statement] = STATE(2449), + [sym_function_definition] = STATE(2449), + [sym_compound_statement] = STATE(2449), + [sym_subshell] = STATE(2449), + [sym_pipeline] = STATE(2449), + [sym_list] = STATE(2449), + [sym_negated_command] = STATE(2449), + [sym_test_command] = STATE(2449), + [sym_declaration_command] = STATE(2449), + [sym_unset_command] = STATE(2449), + [sym_command] = STATE(2449), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(2450), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [2288] = { - [sym_file_descriptor] = ACTIONS(5202), - [sym__concat] = ACTIONS(5202), - [sym_variable_name] = ACTIONS(5202), - [ts_builtin_sym_end] = ACTIONS(5202), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5202), - [anon_sym_SEMI_SEMI] = ACTIONS(5202), - [anon_sym_PIPE_AMP] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_PIPE_PIPE] = ACTIONS(5202), - [anon_sym_LT] = ACTIONS(5204), - [anon_sym_GT] = ACTIONS(5204), - [anon_sym_GT_GT] = ACTIONS(5202), - [anon_sym_AMP_GT] = ACTIONS(5204), - [anon_sym_AMP_GT_GT] = ACTIONS(5202), - [anon_sym_LT_AMP] = ACTIONS(5202), - [anon_sym_GT_AMP] = ACTIONS(5202), - [sym__special_characters] = ACTIONS(5202), - [anon_sym_DQUOTE] = ACTIONS(5202), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), - [anon_sym_BQUOTE] = ACTIONS(5202), - [anon_sym_LT_LPAREN] = ACTIONS(5202), - [anon_sym_GT_LPAREN] = ACTIONS(5202), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5204), - [anon_sym_LF] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5204), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2453), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(5582), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5584), + [anon_sym_SEMI_SEMI] = ACTIONS(5586), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5586), + [anon_sym_AMP] = ACTIONS(5582), }, [2289] = { - [sym_file_descriptor] = ACTIONS(5206), - [sym__concat] = ACTIONS(5206), - [sym_variable_name] = ACTIONS(5206), - [ts_builtin_sym_end] = ACTIONS(5206), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_RPAREN] = ACTIONS(5206), - [anon_sym_SEMI_SEMI] = ACTIONS(5206), - [anon_sym_PIPE_AMP] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [anon_sym_LT] = ACTIONS(5208), - [anon_sym_GT] = ACTIONS(5208), - [anon_sym_GT_GT] = ACTIONS(5206), - [anon_sym_AMP_GT] = ACTIONS(5208), - [anon_sym_AMP_GT_GT] = ACTIONS(5206), - [anon_sym_LT_AMP] = ACTIONS(5206), - [anon_sym_GT_AMP] = ACTIONS(5206), - [sym__special_characters] = ACTIONS(5206), - [anon_sym_DQUOTE] = ACTIONS(5206), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), - [anon_sym_BQUOTE] = ACTIONS(5206), - [anon_sym_LT_LPAREN] = ACTIONS(5206), - [anon_sym_GT_LPAREN] = ACTIONS(5206), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5208), - [anon_sym_LF] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5208), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2453), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5582), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5584), + [anon_sym_SEMI_SEMI] = ACTIONS(5586), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5586), + [anon_sym_AMP] = ACTIONS(5582), }, [2290] = { - [ts_builtin_sym_end] = ACTIONS(5550), - [anon_sym_SEMI] = ACTIONS(5552), - [anon_sym_esac] = ACTIONS(5550), - [anon_sym_PIPE] = ACTIONS(5552), - [anon_sym_RPAREN] = ACTIONS(5550), - [anon_sym_SEMI_SEMI] = ACTIONS(5550), - [anon_sym_PIPE_AMP] = ACTIONS(5550), - [anon_sym_AMP_AMP] = ACTIONS(5550), - [anon_sym_PIPE_PIPE] = ACTIONS(5550), - [anon_sym_BQUOTE] = ACTIONS(5550), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5550), - [anon_sym_AMP] = ACTIONS(5552), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(2454), + [sym_for_statement] = STATE(2454), + [sym_c_style_for_statement] = STATE(2454), + [sym_while_statement] = STATE(2454), + [sym_if_statement] = STATE(2454), + [sym_case_statement] = STATE(2454), + [sym_function_definition] = STATE(2454), + [sym_compound_statement] = STATE(2454), + [sym_subshell] = STATE(2454), + [sym_pipeline] = STATE(2454), + [sym_list] = STATE(2454), + [sym_negated_command] = STATE(2454), + [sym_test_command] = STATE(2454), + [sym_declaration_command] = STATE(2454), + [sym_unset_command] = STATE(2454), + [sym_command] = STATE(2454), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(2455), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [2291] = { - [sym__concat] = ACTIONS(5202), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_esac] = ACTIONS(5202), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_SEMI_SEMI] = ACTIONS(5202), - [anon_sym_PIPE_AMP] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_PIPE_PIPE] = ACTIONS(5202), - [anon_sym_EQ_TILDE] = ACTIONS(5202), - [anon_sym_EQ_EQ] = ACTIONS(5202), - [anon_sym_EQ] = ACTIONS(5204), - [anon_sym_PLUS_EQ] = ACTIONS(5202), - [anon_sym_LT] = ACTIONS(5204), - [anon_sym_GT] = ACTIONS(5204), - [anon_sym_BANG_EQ] = ACTIONS(5202), - [anon_sym_PLUS] = ACTIONS(5204), - [anon_sym_DASH] = ACTIONS(5204), - [anon_sym_DASH_EQ] = ACTIONS(5202), - [anon_sym_LT_EQ] = ACTIONS(5202), - [anon_sym_GT_EQ] = ACTIONS(5202), - [anon_sym_PLUS_PLUS] = ACTIONS(5202), - [anon_sym_DASH_DASH] = ACTIONS(5202), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(5202), - [anon_sym_LF] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5204), + [sym_variable_assignment] = STATE(2291), + [sym_subscript] = STATE(2130), + [sym_concatenation] = STATE(2291), + [sym_string] = STATE(2125), + [sym_simple_expansion] = STATE(2125), + [sym_string_expansion] = STATE(2125), + [sym_expansion] = STATE(2125), + [sym_command_substitution] = STATE(2125), + [sym_process_substitution] = STATE(2125), + [aux_sym_declaration_command_repeat1] = STATE(2291), + [sym__simple_heredoc_body] = ACTIONS(1559), + [sym__heredoc_body_beginning] = ACTIONS(1559), + [sym_file_descriptor] = ACTIONS(1559), + [sym_variable_name] = ACTIONS(5588), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_esac] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [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_LT] = ACTIONS(1564), + [anon_sym_GT] = ACTIONS(1564), + [anon_sym_GT_GT] = ACTIONS(1559), + [anon_sym_AMP_GT] = ACTIONS(1564), + [anon_sym_AMP_GT_GT] = ACTIONS(1559), + [anon_sym_LT_AMP] = ACTIONS(1559), + [anon_sym_GT_AMP] = ACTIONS(1559), + [anon_sym_LT_LT] = ACTIONS(1564), + [anon_sym_LT_LT_DASH] = ACTIONS(1559), + [anon_sym_LT_LT_LT] = ACTIONS(1559), + [sym__special_characters] = ACTIONS(5591), + [anon_sym_DQUOTE] = ACTIONS(5594), + [anon_sym_DOLLAR] = ACTIONS(5597), + [sym_raw_string] = ACTIONS(5600), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5603), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5606), + [anon_sym_BQUOTE] = ACTIONS(5609), + [anon_sym_LT_LPAREN] = ACTIONS(5612), + [anon_sym_GT_LPAREN] = ACTIONS(5612), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5615), + [sym_word] = ACTIONS(5618), + [anon_sym_LF] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1564), }, [2292] = { - [sym__concat] = ACTIONS(5206), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym_esac] = ACTIONS(5206), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_SEMI_SEMI] = ACTIONS(5206), - [anon_sym_PIPE_AMP] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [anon_sym_EQ_TILDE] = ACTIONS(5206), - [anon_sym_EQ_EQ] = ACTIONS(5206), - [anon_sym_EQ] = ACTIONS(5208), - [anon_sym_PLUS_EQ] = ACTIONS(5206), - [anon_sym_LT] = ACTIONS(5208), - [anon_sym_GT] = ACTIONS(5208), - [anon_sym_BANG_EQ] = ACTIONS(5206), - [anon_sym_PLUS] = ACTIONS(5208), - [anon_sym_DASH] = ACTIONS(5208), - [anon_sym_DASH_EQ] = ACTIONS(5206), - [anon_sym_LT_EQ] = ACTIONS(5206), - [anon_sym_GT_EQ] = ACTIONS(5206), - [anon_sym_PLUS_PLUS] = ACTIONS(5206), - [anon_sym_DASH_DASH] = ACTIONS(5206), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(5206), - [anon_sym_LF] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5208), + [sym_string] = STATE(2456), + [sym_simple_expansion] = STATE(2456), + [sym_string_expansion] = STATE(2456), + [sym_expansion] = STATE(2456), + [sym_command_substitution] = STATE(2456), + [sym_process_substitution] = STATE(2456), + [sym__special_characters] = ACTIONS(5621), + [anon_sym_DQUOTE] = ACTIONS(4989), + [anon_sym_DOLLAR] = ACTIONS(4991), + [sym_raw_string] = ACTIONS(5621), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4997), + [anon_sym_BQUOTE] = ACTIONS(4999), + [anon_sym_LT_LPAREN] = ACTIONS(5001), + [anon_sym_GT_LPAREN] = ACTIONS(5001), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5621), }, [2293] = { - [sym_do_group] = STATE(2454), - [sym_compound_statement] = STATE(2454), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(3350), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(2457), + [sym__simple_heredoc_body] = ACTIONS(779), + [sym__heredoc_body_beginning] = ACTIONS(779), + [sym_file_descriptor] = ACTIONS(779), + [sym__concat] = ACTIONS(5318), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_esac] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [anon_sym_PIPE_AMP] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_AMP_GT] = ACTIONS(781), + [anon_sym_AMP_GT_GT] = ACTIONS(779), + [anon_sym_LT_AMP] = ACTIONS(779), + [anon_sym_GT_AMP] = ACTIONS(779), + [anon_sym_LT_LT] = ACTIONS(781), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_LT] = ACTIONS(779), + [sym__special_characters] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(781), + [sym_raw_string] = ACTIONS(779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(779), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(781), + [sym_word] = ACTIONS(781), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(781), }, [2294] = { - [sym__concat] = ACTIONS(4710), - [anon_sym_SEMI] = ACTIONS(4712), - [anon_sym_SEMI_SEMI] = ACTIONS(4710), - [sym__special_characters] = ACTIONS(4710), - [anon_sym_DQUOTE] = ACTIONS(4710), - [anon_sym_DOLLAR] = ACTIONS(4712), - [sym_raw_string] = ACTIONS(4710), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), - [anon_sym_BQUOTE] = ACTIONS(4710), - [anon_sym_LT_LPAREN] = ACTIONS(4710), - [anon_sym_GT_LPAREN] = ACTIONS(4710), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4712), - [anon_sym_LF] = ACTIONS(4710), - [anon_sym_AMP] = ACTIONS(4710), + [sym__simple_heredoc_body] = ACTIONS(783), + [sym__heredoc_body_beginning] = ACTIONS(783), + [sym_file_descriptor] = ACTIONS(783), + [sym__concat] = ACTIONS(783), + [anon_sym_SEMI] = ACTIONS(785), + [anon_sym_esac] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_SEMI_SEMI] = ACTIONS(783), + [anon_sym_PIPE_AMP] = ACTIONS(783), + [anon_sym_AMP_AMP] = ACTIONS(783), + [anon_sym_PIPE_PIPE] = ACTIONS(783), + [anon_sym_LT] = ACTIONS(785), + [anon_sym_GT] = ACTIONS(785), + [anon_sym_GT_GT] = ACTIONS(783), + [anon_sym_AMP_GT] = ACTIONS(785), + [anon_sym_AMP_GT_GT] = ACTIONS(783), + [anon_sym_LT_AMP] = ACTIONS(783), + [anon_sym_GT_AMP] = ACTIONS(783), + [anon_sym_LT_LT] = ACTIONS(785), + [anon_sym_LT_LT_DASH] = ACTIONS(783), + [anon_sym_LT_LT_LT] = ACTIONS(783), + [sym__special_characters] = ACTIONS(783), + [anon_sym_DQUOTE] = ACTIONS(783), + [anon_sym_DOLLAR] = ACTIONS(785), + [sym_raw_string] = ACTIONS(783), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(783), + [anon_sym_BQUOTE] = ACTIONS(783), + [anon_sym_LT_LPAREN] = ACTIONS(783), + [anon_sym_GT_LPAREN] = ACTIONS(783), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(785), + [sym_word] = ACTIONS(785), + [anon_sym_LF] = ACTIONS(783), + [anon_sym_AMP] = ACTIONS(785), }, [2295] = { - [sym__concat] = ACTIONS(4714), - [anon_sym_SEMI] = ACTIONS(4716), - [anon_sym_SEMI_SEMI] = ACTIONS(4714), - [sym__special_characters] = ACTIONS(4714), - [anon_sym_DQUOTE] = ACTIONS(4714), - [anon_sym_DOLLAR] = ACTIONS(4716), - [sym_raw_string] = ACTIONS(4714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), - [anon_sym_BQUOTE] = ACTIONS(4714), - [anon_sym_LT_LPAREN] = ACTIONS(4714), - [anon_sym_GT_LPAREN] = ACTIONS(4714), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4716), - [anon_sym_LF] = ACTIONS(4714), - [anon_sym_AMP] = ACTIONS(4714), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(5623), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [2296] = { - [sym__concat] = ACTIONS(4718), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_SEMI_SEMI] = ACTIONS(4718), - [sym__special_characters] = ACTIONS(4718), - [anon_sym_DQUOTE] = ACTIONS(4718), - [anon_sym_DOLLAR] = ACTIONS(4720), - [sym_raw_string] = ACTIONS(4718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), - [anon_sym_BQUOTE] = ACTIONS(4718), - [anon_sym_LT_LPAREN] = ACTIONS(4718), - [anon_sym_GT_LPAREN] = ACTIONS(4718), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4720), - [anon_sym_LF] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4718), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(455), + [anon_sym_DQUOTE] = ACTIONS(5623), + [anon_sym_DOLLAR] = ACTIONS(5625), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [2297] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5554), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(817), + [sym__heredoc_body_beginning] = ACTIONS(817), + [sym_file_descriptor] = ACTIONS(817), + [sym__concat] = ACTIONS(817), + [anon_sym_SEMI] = ACTIONS(819), + [anon_sym_esac] = ACTIONS(819), + [anon_sym_PIPE] = ACTIONS(819), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_PIPE_AMP] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [anon_sym_LT_LT] = ACTIONS(819), + [anon_sym_LT_LT_DASH] = ACTIONS(817), + [anon_sym_LT_LT_LT] = ACTIONS(817), + [sym__special_characters] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(819), + [sym_word] = ACTIONS(819), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(819), }, [2298] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5556), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(821), + [sym__heredoc_body_beginning] = ACTIONS(821), + [sym_file_descriptor] = ACTIONS(821), + [sym__concat] = ACTIONS(821), + [anon_sym_SEMI] = ACTIONS(823), + [anon_sym_esac] = ACTIONS(823), + [anon_sym_PIPE] = ACTIONS(823), + [anon_sym_SEMI_SEMI] = ACTIONS(821), + [anon_sym_PIPE_AMP] = ACTIONS(821), + [anon_sym_AMP_AMP] = ACTIONS(821), + [anon_sym_PIPE_PIPE] = ACTIONS(821), + [anon_sym_LT] = ACTIONS(823), + [anon_sym_GT] = ACTIONS(823), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_AMP_GT] = ACTIONS(823), + [anon_sym_AMP_GT_GT] = ACTIONS(821), + [anon_sym_LT_AMP] = ACTIONS(821), + [anon_sym_GT_AMP] = ACTIONS(821), + [anon_sym_LT_LT] = ACTIONS(823), + [anon_sym_LT_LT_DASH] = ACTIONS(821), + [anon_sym_LT_LT_LT] = ACTIONS(821), + [sym__special_characters] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(823), + [sym_raw_string] = ACTIONS(821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(821), + [anon_sym_BQUOTE] = ACTIONS(821), + [anon_sym_LT_LPAREN] = ACTIONS(821), + [anon_sym_GT_LPAREN] = ACTIONS(821), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), + [sym_word] = ACTIONS(823), + [anon_sym_LF] = ACTIONS(821), + [anon_sym_AMP] = ACTIONS(823), }, [2299] = { - [sym__concat] = ACTIONS(4754), - [anon_sym_SEMI] = ACTIONS(4756), - [anon_sym_SEMI_SEMI] = ACTIONS(4754), - [sym__special_characters] = ACTIONS(4754), - [anon_sym_DQUOTE] = ACTIONS(4754), - [anon_sym_DOLLAR] = ACTIONS(4756), - [sym_raw_string] = ACTIONS(4754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), - [anon_sym_BQUOTE] = ACTIONS(4754), - [anon_sym_LT_LPAREN] = ACTIONS(4754), - [anon_sym_GT_LPAREN] = ACTIONS(4754), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4756), - [anon_sym_LF] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4754), + [sym__simple_heredoc_body] = ACTIONS(825), + [sym__heredoc_body_beginning] = ACTIONS(825), + [sym_file_descriptor] = ACTIONS(825), + [sym__concat] = ACTIONS(825), + [anon_sym_SEMI] = ACTIONS(827), + [anon_sym_esac] = ACTIONS(827), + [anon_sym_PIPE] = ACTIONS(827), + [anon_sym_SEMI_SEMI] = ACTIONS(825), + [anon_sym_PIPE_AMP] = ACTIONS(825), + [anon_sym_AMP_AMP] = ACTIONS(825), + [anon_sym_PIPE_PIPE] = ACTIONS(825), + [anon_sym_LT] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_GT_GT] = ACTIONS(825), + [anon_sym_AMP_GT] = ACTIONS(827), + [anon_sym_AMP_GT_GT] = ACTIONS(825), + [anon_sym_LT_AMP] = ACTIONS(825), + [anon_sym_GT_AMP] = ACTIONS(825), + [anon_sym_LT_LT] = ACTIONS(827), + [anon_sym_LT_LT_DASH] = ACTIONS(825), + [anon_sym_LT_LT_LT] = ACTIONS(825), + [sym__special_characters] = ACTIONS(825), + [anon_sym_DQUOTE] = ACTIONS(825), + [anon_sym_DOLLAR] = ACTIONS(827), + [sym_raw_string] = ACTIONS(825), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(825), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_LT_LPAREN] = ACTIONS(825), + [anon_sym_GT_LPAREN] = ACTIONS(825), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(827), + [sym_word] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(825), + [anon_sym_AMP] = ACTIONS(827), }, [2300] = { - [sym__concat] = ACTIONS(5202), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_PIPE_PIPE] = ACTIONS(5202), - [anon_sym_EQ_TILDE] = ACTIONS(5202), - [anon_sym_EQ_EQ] = ACTIONS(5202), - [anon_sym_EQ] = ACTIONS(5204), - [anon_sym_PLUS_EQ] = ACTIONS(5202), - [anon_sym_LT] = ACTIONS(5204), - [anon_sym_GT] = ACTIONS(5204), - [anon_sym_BANG_EQ] = ACTIONS(5202), - [anon_sym_PLUS] = ACTIONS(5204), - [anon_sym_DASH] = ACTIONS(5204), - [anon_sym_DASH_EQ] = ACTIONS(5202), - [anon_sym_LT_EQ] = ACTIONS(5202), - [anon_sym_GT_EQ] = ACTIONS(5202), - [anon_sym_PLUS_PLUS] = ACTIONS(5202), - [anon_sym_DASH_DASH] = ACTIONS(5202), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(5202), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(5627), + [sym_comment] = ACTIONS(57), }, [2301] = { - [sym__concat] = ACTIONS(5206), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_RPAREN] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [anon_sym_EQ_TILDE] = ACTIONS(5206), - [anon_sym_EQ_EQ] = ACTIONS(5206), - [anon_sym_EQ] = ACTIONS(5208), - [anon_sym_PLUS_EQ] = ACTIONS(5206), - [anon_sym_LT] = ACTIONS(5208), - [anon_sym_GT] = ACTIONS(5208), - [anon_sym_BANG_EQ] = ACTIONS(5206), - [anon_sym_PLUS] = ACTIONS(5208), - [anon_sym_DASH] = ACTIONS(5208), - [anon_sym_DASH_EQ] = ACTIONS(5206), - [anon_sym_LT_EQ] = ACTIONS(5206), - [anon_sym_GT_EQ] = ACTIONS(5206), - [anon_sym_PLUS_PLUS] = ACTIONS(5206), - [anon_sym_DASH_DASH] = ACTIONS(5206), - [sym_comment] = ACTIONS(55), - [sym_test_operator] = ACTIONS(5206), + [sym_subscript] = STATE(2463), + [sym_variable_name] = ACTIONS(5629), + [anon_sym_DASH] = ACTIONS(5631), + [anon_sym_DOLLAR] = ACTIONS(5631), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5633), + [anon_sym_STAR] = ACTIONS(5635), + [anon_sym_AT] = ACTIONS(5635), + [anon_sym_QMARK] = ACTIONS(5635), + [anon_sym_0] = ACTIONS(5633), + [anon_sym__] = ACTIONS(5633), }, [2302] = { - [sym_file_descriptor] = ACTIONS(3934), - [sym__concat] = ACTIONS(3934), - [ts_builtin_sym_end] = ACTIONS(3934), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym_esac] = ACTIONS(3934), - [anon_sym_PIPE] = ACTIONS(3936), - [anon_sym_RPAREN] = ACTIONS(3934), - [anon_sym_SEMI_SEMI] = ACTIONS(3934), - [anon_sym_PIPE_AMP] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_LT] = ACTIONS(3936), - [anon_sym_GT] = ACTIONS(3936), - [anon_sym_GT_GT] = ACTIONS(3934), - [anon_sym_AMP_GT] = ACTIONS(3936), - [anon_sym_AMP_GT_GT] = ACTIONS(3934), - [anon_sym_LT_AMP] = ACTIONS(3934), - [anon_sym_GT_AMP] = ACTIONS(3934), - [anon_sym_LT_LT] = ACTIONS(3936), - [anon_sym_LT_LT_DASH] = ACTIONS(3934), - [anon_sym_LT_LT_LT] = ACTIONS(3934), - [anon_sym_BQUOTE] = ACTIONS(3934), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3934), - [anon_sym_AMP] = ACTIONS(3936), + [sym_concatenation] = STATE(2466), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2466), + [anon_sym_RBRACE] = ACTIONS(5637), + [anon_sym_EQ] = ACTIONS(5639), + [anon_sym_DASH] = ACTIONS(5639), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5641), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(5643), + [anon_sym_COLON] = ACTIONS(5639), + [anon_sym_COLON_QMARK] = ACTIONS(5639), + [anon_sym_COLON_DASH] = ACTIONS(5639), + [anon_sym_PERCENT] = ACTIONS(5639), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2303] = { - [sym_file_descriptor] = ACTIONS(3942), - [sym__concat] = ACTIONS(3942), - [ts_builtin_sym_end] = ACTIONS(3942), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym_esac] = ACTIONS(3942), - [anon_sym_PIPE] = ACTIONS(3944), - [anon_sym_RPAREN] = ACTIONS(3942), - [anon_sym_SEMI_SEMI] = ACTIONS(3942), - [anon_sym_PIPE_AMP] = ACTIONS(3942), - [anon_sym_AMP_AMP] = ACTIONS(3942), - [anon_sym_PIPE_PIPE] = ACTIONS(3942), - [anon_sym_LT] = ACTIONS(3944), - [anon_sym_GT] = ACTIONS(3944), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_AMP_GT] = ACTIONS(3944), - [anon_sym_AMP_GT_GT] = ACTIONS(3942), - [anon_sym_LT_AMP] = ACTIONS(3942), - [anon_sym_GT_AMP] = ACTIONS(3942), - [anon_sym_LT_LT] = ACTIONS(3944), - [anon_sym_LT_LT_DASH] = ACTIONS(3942), - [anon_sym_LT_LT_LT] = ACTIONS(3942), - [anon_sym_BQUOTE] = ACTIONS(3942), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3942), - [anon_sym_AMP] = ACTIONS(3944), + [sym_concatenation] = STATE(2469), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2469), + [anon_sym_RBRACE] = ACTIONS(5645), + [anon_sym_EQ] = ACTIONS(5647), + [anon_sym_DASH] = ACTIONS(5647), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5649), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(5651), + [anon_sym_COLON] = ACTIONS(5647), + [anon_sym_COLON_QMARK] = ACTIONS(5647), + [anon_sym_COLON_DASH] = ACTIONS(5647), + [anon_sym_PERCENT] = ACTIONS(5647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2304] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(5558), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2472), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(5653), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5655), + [anon_sym_SEMI_SEMI] = ACTIONS(5657), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5657), + [anon_sym_AMP] = ACTIONS(5653), }, [2305] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(5560), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2472), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5653), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5655), + [anon_sym_SEMI_SEMI] = ACTIONS(5657), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5657), + [anon_sym_AMP] = ACTIONS(5653), }, [2306] = { - [anon_sym_RBRACE] = ACTIONS(5560), - [sym_comment] = ACTIONS(55), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(2473), + [sym_for_statement] = STATE(2473), + [sym_c_style_for_statement] = STATE(2473), + [sym_while_statement] = STATE(2473), + [sym_if_statement] = STATE(2473), + [sym_case_statement] = STATE(2473), + [sym_function_definition] = STATE(2473), + [sym_compound_statement] = STATE(2473), + [sym_subshell] = STATE(2473), + [sym_pipeline] = STATE(2473), + [sym_list] = STATE(2473), + [sym_negated_command] = STATE(2473), + [sym_test_command] = STATE(2473), + [sym_declaration_command] = STATE(2473), + [sym_unset_command] = STATE(2473), + [sym_command] = STATE(2473), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(2474), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [2307] = { - [sym_concatenation] = STATE(2460), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2460), - [anon_sym_RBRACE] = ACTIONS(5562), - [anon_sym_EQ] = ACTIONS(5564), - [anon_sym_DASH] = ACTIONS(5564), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5566), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(5564), - [anon_sym_COLON_QMARK] = ACTIONS(5564), - [anon_sym_COLON_DASH] = ACTIONS(5564), - [anon_sym_PERCENT] = ACTIONS(5564), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(2476), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(5659), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(5661), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(5655), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5661), + [anon_sym_AMP] = ACTIONS(5659), }, [2308] = { - [sym_file_descriptor] = ACTIONS(3998), - [sym__concat] = ACTIONS(3998), - [ts_builtin_sym_end] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym_esac] = ACTIONS(3998), - [anon_sym_PIPE] = ACTIONS(4000), - [anon_sym_RPAREN] = ACTIONS(3998), - [anon_sym_SEMI_SEMI] = ACTIONS(3998), - [anon_sym_PIPE_AMP] = ACTIONS(3998), - [anon_sym_AMP_AMP] = ACTIONS(3998), - [anon_sym_PIPE_PIPE] = ACTIONS(3998), - [anon_sym_LT] = ACTIONS(4000), - [anon_sym_GT] = ACTIONS(4000), - [anon_sym_GT_GT] = ACTIONS(3998), - [anon_sym_AMP_GT] = ACTIONS(4000), - [anon_sym_AMP_GT_GT] = ACTIONS(3998), - [anon_sym_LT_AMP] = ACTIONS(3998), - [anon_sym_GT_AMP] = ACTIONS(3998), - [anon_sym_LT_LT] = ACTIONS(4000), - [anon_sym_LT_LT_DASH] = ACTIONS(3998), - [anon_sym_LT_LT_LT] = ACTIONS(3998), - [anon_sym_BQUOTE] = ACTIONS(3998), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3998), - [anon_sym_AMP] = ACTIONS(4000), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(2476), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5659), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(5661), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(5655), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5661), + [anon_sym_AMP] = ACTIONS(5659), }, [2309] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5562), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2310] = { - [sym_concatenation] = STATE(2461), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2461), - [anon_sym_RBRACE] = ACTIONS(5560), - [anon_sym_EQ] = ACTIONS(5568), - [anon_sym_DASH] = ACTIONS(5568), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5570), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(5568), - [anon_sym_COLON_QMARK] = ACTIONS(5568), - [anon_sym_COLON_DASH] = ACTIONS(5568), - [anon_sym_PERCENT] = ACTIONS(5568), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2311] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5560), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2312] = { - [sym_file_descriptor] = ACTIONS(4043), - [sym__concat] = ACTIONS(4043), - [ts_builtin_sym_end] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4045), - [anon_sym_esac] = ACTIONS(4043), - [anon_sym_PIPE] = ACTIONS(4045), - [anon_sym_RPAREN] = ACTIONS(4043), - [anon_sym_SEMI_SEMI] = ACTIONS(4043), - [anon_sym_PIPE_AMP] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4045), - [anon_sym_GT] = ACTIONS(4045), - [anon_sym_GT_GT] = ACTIONS(4043), - [anon_sym_AMP_GT] = ACTIONS(4045), - [anon_sym_AMP_GT_GT] = ACTIONS(4043), - [anon_sym_LT_AMP] = ACTIONS(4043), - [anon_sym_GT_AMP] = ACTIONS(4043), - [anon_sym_LT_LT] = ACTIONS(4045), - [anon_sym_LT_LT_DASH] = ACTIONS(4043), - [anon_sym_LT_LT_LT] = ACTIONS(4043), - [anon_sym_BQUOTE] = ACTIONS(4043), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4043), - [anon_sym_AMP] = ACTIONS(4045), - }, - [2313] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5572), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2314] = { - [sym_file_descriptor] = ACTIONS(4065), - [sym__concat] = ACTIONS(4065), - [ts_builtin_sym_end] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_esac] = ACTIONS(4065), - [anon_sym_PIPE] = ACTIONS(4067), - [anon_sym_RPAREN] = ACTIONS(4065), - [anon_sym_SEMI_SEMI] = ACTIONS(4065), - [anon_sym_PIPE_AMP] = ACTIONS(4065), - [anon_sym_AMP_AMP] = ACTIONS(4065), - [anon_sym_PIPE_PIPE] = ACTIONS(4065), - [anon_sym_LT] = ACTIONS(4067), - [anon_sym_GT] = ACTIONS(4067), - [anon_sym_GT_GT] = ACTIONS(4065), - [anon_sym_AMP_GT] = ACTIONS(4067), - [anon_sym_AMP_GT_GT] = ACTIONS(4065), - [anon_sym_LT_AMP] = ACTIONS(4065), - [anon_sym_GT_AMP] = ACTIONS(4065), - [anon_sym_LT_LT] = ACTIONS(4067), - [anon_sym_LT_LT_DASH] = ACTIONS(4065), - [anon_sym_LT_LT_LT] = ACTIONS(4065), - [anon_sym_BQUOTE] = ACTIONS(4065), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4065), - [anon_sym_AMP] = ACTIONS(4067), - }, - [2315] = { - [sym_file_descriptor] = ACTIONS(4089), - [sym__concat] = ACTIONS(4089), - [ts_builtin_sym_end] = ACTIONS(4089), - [anon_sym_SEMI] = ACTIONS(4091), - [anon_sym_esac] = ACTIONS(4089), - [anon_sym_PIPE] = ACTIONS(4091), - [anon_sym_RPAREN] = ACTIONS(4089), - [anon_sym_SEMI_SEMI] = ACTIONS(4089), - [anon_sym_PIPE_AMP] = ACTIONS(4089), - [anon_sym_AMP_AMP] = ACTIONS(4089), - [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_LT] = ACTIONS(4091), - [anon_sym_GT] = ACTIONS(4091), - [anon_sym_GT_GT] = ACTIONS(4089), - [anon_sym_AMP_GT] = ACTIONS(4091), - [anon_sym_AMP_GT_GT] = ACTIONS(4089), - [anon_sym_LT_AMP] = ACTIONS(4089), - [anon_sym_GT_AMP] = ACTIONS(4089), - [anon_sym_LT_LT] = ACTIONS(4091), - [anon_sym_LT_LT_DASH] = ACTIONS(4089), - [anon_sym_LT_LT_LT] = ACTIONS(4089), - [anon_sym_BQUOTE] = ACTIONS(4089), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4089), - [anon_sym_AMP] = ACTIONS(4091), - }, - [2316] = { - [sym_file_descriptor] = ACTIONS(1106), - [sym_variable_name] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_esac] = ACTIONS(1108), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_SEMI_SEMI] = ACTIONS(1106), - [anon_sym_PIPE_AMP] = ACTIONS(1106), - [anon_sym_AMP_AMP] = ACTIONS(1106), - [anon_sym_PIPE_PIPE] = ACTIONS(1106), - [anon_sym_LT] = ACTIONS(1108), - [anon_sym_GT] = ACTIONS(1108), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_AMP_GT] = ACTIONS(1108), - [anon_sym_AMP_GT_GT] = ACTIONS(1106), - [anon_sym_LT_AMP] = ACTIONS(1106), - [anon_sym_GT_AMP] = ACTIONS(1106), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [sym_raw_string] = ACTIONS(1106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), - [anon_sym_BQUOTE] = ACTIONS(1106), - [anon_sym_LT_LPAREN] = ACTIONS(1106), - [anon_sym_GT_LPAREN] = ACTIONS(1106), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1108), - [anon_sym_LF] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), - }, - [2317] = { - [sym_concatenation] = STATE(2464), - [sym_string] = STATE(558), - [sym_simple_expansion] = STATE(558), - [sym_string_expansion] = STATE(558), - [sym_expansion] = STATE(558), - [sym_command_substitution] = STATE(558), - [sym_process_substitution] = STATE(558), - [aux_sym_for_statement_repeat1] = STATE(2464), - [anon_sym_RPAREN] = ACTIONS(5574), - [sym__special_characters] = ACTIONS(1112), - [anon_sym_DQUOTE] = ACTIONS(1114), - [anon_sym_DOLLAR] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), - [anon_sym_BQUOTE] = ACTIONS(1124), - [anon_sym_LT_LPAREN] = ACTIONS(1126), - [anon_sym_GT_LPAREN] = ACTIONS(1126), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1118), - }, - [2318] = { - [aux_sym_concatenation_repeat1] = STATE(2466), - [sym_file_descriptor] = ACTIONS(1128), - [sym__concat] = ACTIONS(5576), - [sym_variable_name] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1132), - [anon_sym_esac] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1132), - [anon_sym_SEMI_SEMI] = ACTIONS(1128), - [anon_sym_PIPE_AMP] = ACTIONS(1128), - [anon_sym_AMP_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(1132), - [anon_sym_GT] = ACTIONS(1132), - [anon_sym_GT_GT] = ACTIONS(1128), - [anon_sym_AMP_GT] = ACTIONS(1132), - [anon_sym_AMP_GT_GT] = ACTIONS(1128), - [anon_sym_LT_AMP] = ACTIONS(1128), - [anon_sym_GT_AMP] = ACTIONS(1128), - [sym__special_characters] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [anon_sym_DOLLAR] = ACTIONS(1132), - [sym_raw_string] = ACTIONS(1128), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1128), - [anon_sym_LT_LPAREN] = ACTIONS(1128), - [anon_sym_GT_LPAREN] = ACTIONS(1128), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1132), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1132), - }, - [2319] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(2469), - [anon_sym_DQUOTE] = ACTIONS(5578), - [anon_sym_DOLLAR] = ACTIONS(5580), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), - }, - [2320] = { - [sym_string] = STATE(2471), - [anon_sym_DASH] = ACTIONS(5582), - [anon_sym_DQUOTE] = ACTIONS(5330), - [anon_sym_DOLLAR] = ACTIONS(5582), - [sym_raw_string] = ACTIONS(5584), - [anon_sym_POUND] = ACTIONS(5582), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5586), - [anon_sym_STAR] = ACTIONS(5588), - [anon_sym_AT] = ACTIONS(5588), - [anon_sym_QMARK] = ACTIONS(5588), - [anon_sym_0] = ACTIONS(5586), - [anon_sym__] = ACTIONS(5586), - }, - [2321] = { - [aux_sym_concatenation_repeat1] = STATE(2466), - [sym_file_descriptor] = ACTIONS(1106), - [sym__concat] = ACTIONS(5576), - [sym_variable_name] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_esac] = ACTIONS(1108), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_SEMI_SEMI] = ACTIONS(1106), - [anon_sym_PIPE_AMP] = ACTIONS(1106), - [anon_sym_AMP_AMP] = ACTIONS(1106), - [anon_sym_PIPE_PIPE] = ACTIONS(1106), - [anon_sym_LT] = ACTIONS(1108), - [anon_sym_GT] = ACTIONS(1108), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_AMP_GT] = ACTIONS(1108), - [anon_sym_AMP_GT_GT] = ACTIONS(1106), - [anon_sym_LT_AMP] = ACTIONS(1106), - [anon_sym_GT_AMP] = ACTIONS(1106), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [sym_raw_string] = ACTIONS(1106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), - [anon_sym_BQUOTE] = ACTIONS(1106), - [anon_sym_LT_LPAREN] = ACTIONS(1106), - [anon_sym_GT_LPAREN] = ACTIONS(1106), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1108), - [anon_sym_LF] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), - }, - [2322] = { - [sym_subscript] = STATE(2476), - [sym_variable_name] = ACTIONS(5590), - [anon_sym_BANG] = ACTIONS(5592), - [anon_sym_DASH] = ACTIONS(5594), - [anon_sym_DOLLAR] = ACTIONS(5594), - [anon_sym_POUND] = ACTIONS(5592), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5596), - [anon_sym_STAR] = ACTIONS(5598), - [anon_sym_AT] = ACTIONS(5598), - [anon_sym_QMARK] = ACTIONS(5598), - [anon_sym_0] = ACTIONS(5596), - [anon_sym__] = ACTIONS(5596), - }, - [2323] = { - [sym__terminated_statement] = STATE(2479), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(2477), [sym_for_statement] = STATE(2477), [sym_c_style_for_statement] = STATE(2477), [sym_while_statement] = STATE(2477), [sym_if_statement] = STATE(2477), [sym_case_statement] = STATE(2477), [sym_function_definition] = STATE(2477), + [sym_compound_statement] = STATE(2477), [sym_subshell] = STATE(2477), [sym_pipeline] = STATE(2477), [sym_list] = STATE(2477), @@ -67409,14963 +73126,16611 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(2477), [sym_unset_command] = STATE(2477), [sym_command] = STATE(2477), - [sym_command_name] = STATE(92), + [sym_command_name] = STATE(162), [sym_variable_assignment] = STATE(2478), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(2479), - [aux_sym_command_repeat1] = STATE(96), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(165), [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), + [sym_variable_name] = ACTIONS(97), [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), [anon_sym_if] = ACTIONS(17), [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), + [anon_sym_function] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), + }, + [2310] = { + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2481), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5665), + [anon_sym_SEMI_SEMI] = ACTIONS(5667), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5667), + [anon_sym_AMP] = ACTIONS(5663), + }, + [2311] = { + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2481), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5665), + [anon_sym_SEMI_SEMI] = ACTIONS(5667), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5667), + [anon_sym_AMP] = ACTIONS(5663), + }, + [2312] = { + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(2482), + [sym_for_statement] = STATE(2482), + [sym_c_style_for_statement] = STATE(2482), + [sym_while_statement] = STATE(2482), + [sym_if_statement] = STATE(2482), + [sym_case_statement] = STATE(2482), + [sym_function_definition] = STATE(2482), + [sym_compound_statement] = STATE(2482), + [sym_subshell] = STATE(2482), + [sym_pipeline] = STATE(2482), + [sym_list] = STATE(2482), + [sym_negated_command] = STATE(2482), + [sym_test_command] = STATE(2482), + [sym_declaration_command] = STATE(2482), + [sym_unset_command] = STATE(2482), + [sym_command] = STATE(2482), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(2483), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), + }, + [2313] = { + [sym_concatenation] = STATE(2313), + [sym_string] = STATE(2135), + [sym_simple_expansion] = STATE(2135), + [sym_string_expansion] = STATE(2135), + [sym_expansion] = STATE(2135), + [sym_command_substitution] = STATE(2135), + [sym_process_substitution] = STATE(2135), + [aux_sym_unset_command_repeat1] = STATE(2313), + [sym__simple_heredoc_body] = ACTIONS(1644), + [sym__heredoc_body_beginning] = ACTIONS(1644), + [sym_file_descriptor] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1646), + [anon_sym_esac] = ACTIONS(1646), + [anon_sym_PIPE] = ACTIONS(1646), + [anon_sym_SEMI_SEMI] = ACTIONS(1644), + [anon_sym_PIPE_AMP] = ACTIONS(1644), + [anon_sym_AMP_AMP] = ACTIONS(1644), + [anon_sym_PIPE_PIPE] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1646), + [anon_sym_GT] = ACTIONS(1646), + [anon_sym_GT_GT] = ACTIONS(1644), + [anon_sym_AMP_GT] = ACTIONS(1646), + [anon_sym_AMP_GT_GT] = ACTIONS(1644), + [anon_sym_LT_AMP] = ACTIONS(1644), + [anon_sym_GT_AMP] = ACTIONS(1644), + [anon_sym_LT_LT] = ACTIONS(1646), + [anon_sym_LT_LT_DASH] = ACTIONS(1644), + [anon_sym_LT_LT_LT] = ACTIONS(1644), + [sym__special_characters] = ACTIONS(5669), + [anon_sym_DQUOTE] = ACTIONS(5672), + [anon_sym_DOLLAR] = ACTIONS(5675), + [sym_raw_string] = ACTIONS(5678), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5684), + [anon_sym_BQUOTE] = ACTIONS(5687), + [anon_sym_LT_LPAREN] = ACTIONS(5690), + [anon_sym_GT_LPAREN] = ACTIONS(5690), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5693), + [sym_word] = ACTIONS(5696), + [anon_sym_LF] = ACTIONS(1644), + [anon_sym_AMP] = ACTIONS(1646), + }, + [2314] = { + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_esac] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_EQ_TILDE] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), + }, + [2315] = { + [aux_sym_concatenation_repeat1] = STATE(2315), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(5699), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_esac] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_EQ_TILDE] = ACTIONS(1728), + [anon_sym_EQ_EQ] = ACTIONS(1728), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), + }, + [2316] = { + [sym__simple_heredoc_body] = ACTIONS(1733), + [sym__heredoc_body_beginning] = ACTIONS(1733), + [sym_file_descriptor] = ACTIONS(1733), + [sym__concat] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_esac] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1733), + [anon_sym_PIPE_AMP] = ACTIONS(1733), + [anon_sym_AMP_AMP] = ACTIONS(1733), + [anon_sym_PIPE_PIPE] = ACTIONS(1733), + [anon_sym_EQ_TILDE] = ACTIONS(1735), + [anon_sym_EQ_EQ] = ACTIONS(1735), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1733), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_AMP_GT_GT] = ACTIONS(1733), + [anon_sym_LT_AMP] = ACTIONS(1733), + [anon_sym_GT_AMP] = ACTIONS(1733), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_LT_LT_DASH] = ACTIONS(1733), + [anon_sym_LT_LT_LT] = ACTIONS(1733), + [sym__special_characters] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1733), + [anon_sym_BQUOTE] = ACTIONS(1733), + [anon_sym_LT_LPAREN] = ACTIONS(1733), + [anon_sym_GT_LPAREN] = ACTIONS(1733), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1733), + [anon_sym_AMP] = ACTIONS(1735), + }, + [2317] = { + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(5702), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + }, + [2318] = { + [sym_concatenation] = STATE(2488), + [sym_string] = STATE(2487), + [sym_simple_expansion] = STATE(2487), + [sym_string_expansion] = STATE(2487), + [sym_expansion] = STATE(2487), + [sym_command_substitution] = STATE(2487), + [sym_process_substitution] = STATE(2487), + [anon_sym_RBRACE] = ACTIONS(5704), + [sym__special_characters] = ACTIONS(5706), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(5708), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5708), + }, + [2319] = { + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(5710), + [sym_comment] = ACTIONS(57), + }, + [2320] = { + [sym_concatenation] = STATE(2492), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2492), + [anon_sym_RBRACE] = ACTIONS(5712), + [anon_sym_EQ] = ACTIONS(5714), + [anon_sym_DASH] = ACTIONS(5714), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5716), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(5718), + [anon_sym_COLON] = ACTIONS(5714), + [anon_sym_COLON_QMARK] = ACTIONS(5714), + [anon_sym_COLON_DASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2321] = { + [sym_concatenation] = STATE(2494), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2494), + [anon_sym_RBRACE] = ACTIONS(5704), + [anon_sym_EQ] = ACTIONS(5720), + [anon_sym_DASH] = ACTIONS(5720), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(5724), + [anon_sym_COLON] = ACTIONS(5720), + [anon_sym_COLON_QMARK] = ACTIONS(5720), + [anon_sym_COLON_DASH] = ACTIONS(5720), + [anon_sym_PERCENT] = ACTIONS(5720), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2322] = { + [sym__simple_heredoc_body] = ACTIONS(1834), + [sym__heredoc_body_beginning] = ACTIONS(1834), + [sym_file_descriptor] = ACTIONS(1834), + [sym__concat] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_esac] = ACTIONS(1836), + [anon_sym_PIPE] = ACTIONS(1836), + [anon_sym_SEMI_SEMI] = ACTIONS(1834), + [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP_AMP] = ACTIONS(1834), + [anon_sym_PIPE_PIPE] = ACTIONS(1834), + [anon_sym_EQ_TILDE] = ACTIONS(1836), + [anon_sym_EQ_EQ] = ACTIONS(1836), + [anon_sym_LT] = ACTIONS(1836), + [anon_sym_GT] = ACTIONS(1836), + [anon_sym_GT_GT] = ACTIONS(1834), + [anon_sym_AMP_GT] = ACTIONS(1836), + [anon_sym_AMP_GT_GT] = ACTIONS(1834), + [anon_sym_LT_AMP] = ACTIONS(1834), + [anon_sym_GT_AMP] = ACTIONS(1834), + [anon_sym_LT_LT] = ACTIONS(1836), + [anon_sym_LT_LT_DASH] = ACTIONS(1834), + [anon_sym_LT_LT_LT] = ACTIONS(1834), + [sym__special_characters] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1836), + [sym_raw_string] = ACTIONS(1834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), + [anon_sym_BQUOTE] = ACTIONS(1834), + [anon_sym_LT_LPAREN] = ACTIONS(1834), + [anon_sym_GT_LPAREN] = ACTIONS(1834), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1836), + [anon_sym_LF] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1836), + }, + [2323] = { + [sym_concatenation] = STATE(2497), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2497), + [sym_regex] = ACTIONS(5726), + [anon_sym_RBRACE] = ACTIONS(5728), + [anon_sym_EQ] = ACTIONS(5730), + [anon_sym_DASH] = ACTIONS(5730), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(5730), + [anon_sym_COLON_QMARK] = ACTIONS(5730), + [anon_sym_COLON_DASH] = ACTIONS(5730), + [anon_sym_PERCENT] = ACTIONS(5730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2324] = { - [sym__terminated_statement] = STATE(2482), - [sym_for_statement] = STATE(2480), - [sym_c_style_for_statement] = STATE(2480), - [sym_while_statement] = STATE(2480), - [sym_if_statement] = STATE(2480), - [sym_case_statement] = STATE(2480), - [sym_function_definition] = STATE(2480), - [sym_subshell] = STATE(2480), - [sym_pipeline] = STATE(2480), - [sym_list] = STATE(2480), - [sym_negated_command] = STATE(2480), - [sym_test_command] = STATE(2480), - [sym_declaration_command] = STATE(2480), - [sym_unset_command] = STATE(2480), - [sym_command] = STATE(2480), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(2481), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(2482), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5728), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2325] = { - [sym__terminated_statement] = STATE(2485), - [sym_for_statement] = STATE(2483), - [sym_c_style_for_statement] = STATE(2483), - [sym_while_statement] = STATE(2483), - [sym_if_statement] = STATE(2483), - [sym_case_statement] = STATE(2483), - [sym_function_definition] = STATE(2483), - [sym_subshell] = STATE(2483), - [sym_pipeline] = STATE(2483), - [sym_list] = STATE(2483), - [sym_negated_command] = STATE(2483), - [sym_test_command] = STATE(2483), - [sym_declaration_command] = STATE(2483), - [sym_unset_command] = STATE(2483), - [sym_command] = STATE(2483), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(2484), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(2485), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym__simple_heredoc_body] = ACTIONS(1882), + [sym__heredoc_body_beginning] = ACTIONS(1882), + [sym_file_descriptor] = ACTIONS(1882), + [sym__concat] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_esac] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1882), + [anon_sym_PIPE_AMP] = ACTIONS(1882), + [anon_sym_AMP_AMP] = ACTIONS(1882), + [anon_sym_PIPE_PIPE] = ACTIONS(1882), + [anon_sym_EQ_TILDE] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1882), + [anon_sym_AMP_GT] = ACTIONS(1884), + [anon_sym_AMP_GT_GT] = ACTIONS(1882), + [anon_sym_LT_AMP] = ACTIONS(1882), + [anon_sym_GT_AMP] = ACTIONS(1882), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1882), + [anon_sym_LT_LT_LT] = ACTIONS(1882), + [sym__special_characters] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1882), + [anon_sym_BQUOTE] = ACTIONS(1882), + [anon_sym_LT_LPAREN] = ACTIONS(1882), + [anon_sym_GT_LPAREN] = ACTIONS(1882), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1884), }, [2326] = { - [sym_file_redirect] = STATE(2489), - [sym_heredoc_redirect] = STATE(2489), - [sym_herestring_redirect] = STATE(2489), - [aux_sym_while_statement_repeat1] = STATE(2489), - [sym_file_descriptor] = ACTIONS(5600), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_esac] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1302), - [anon_sym_SEMI_SEMI] = ACTIONS(1300), - [anon_sym_PIPE_AMP] = ACTIONS(1300), - [anon_sym_AMP_AMP] = ACTIONS(1300), - [anon_sym_PIPE_PIPE] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(5602), - [anon_sym_GT] = ACTIONS(5602), - [anon_sym_GT_GT] = ACTIONS(5604), - [anon_sym_AMP_GT] = ACTIONS(5602), - [anon_sym_AMP_GT_GT] = ACTIONS(5604), - [anon_sym_LT_AMP] = ACTIONS(5604), - [anon_sym_GT_AMP] = ACTIONS(5604), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_LT_LT_DASH] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(5606), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1302), + [sym_concatenation] = STATE(2494), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2494), + [sym_regex] = ACTIONS(5734), + [anon_sym_RBRACE] = ACTIONS(5704), + [anon_sym_EQ] = ACTIONS(5720), + [anon_sym_DASH] = ACTIONS(5720), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(5720), + [anon_sym_COLON_QMARK] = ACTIONS(5720), + [anon_sym_COLON_DASH] = ACTIONS(5720), + [anon_sym_PERCENT] = ACTIONS(5720), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2327] = { - [sym_file_redirect] = STATE(2490), - [sym_heredoc_redirect] = STATE(2490), - [sym_heredoc_body] = STATE(699), - [sym_herestring_redirect] = STATE(2490), - [aux_sym_while_statement_repeat1] = STATE(2490), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym_esac] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(1340), - [anon_sym_SEMI_SEMI] = ACTIONS(1338), - [anon_sym_PIPE_AMP] = ACTIONS(1338), - [anon_sym_AMP_AMP] = ACTIONS(1338), - [anon_sym_PIPE_PIPE] = ACTIONS(1338), - [anon_sym_LT] = ACTIONS(5095), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_GT_GT] = ACTIONS(5097), - [anon_sym_AMP_GT] = ACTIONS(5095), - [anon_sym_AMP_GT_GT] = ACTIONS(5097), - [anon_sym_LT_AMP] = ACTIONS(5097), - [anon_sym_GT_AMP] = ACTIONS(5097), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(5099), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1340), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5704), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2328] = { - [anon_sym_RPAREN] = ACTIONS(5608), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(5736), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2329] = { - [sym_file_redirect] = STATE(756), - [sym_file_descriptor] = ACTIONS(5610), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_esac] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_SEMI_SEMI] = ACTIONS(1430), - [anon_sym_PIPE_AMP] = ACTIONS(1430), - [anon_sym_AMP_AMP] = ACTIONS(1430), - [anon_sym_PIPE_PIPE] = ACTIONS(1430), - [anon_sym_LT] = ACTIONS(5612), - [anon_sym_GT] = ACTIONS(5612), - [anon_sym_GT_GT] = ACTIONS(5614), - [anon_sym_AMP_GT] = ACTIONS(5612), - [anon_sym_AMP_GT_GT] = ACTIONS(5614), - [anon_sym_LT_AMP] = ACTIONS(5614), - [anon_sym_GT_AMP] = ACTIONS(5614), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1432), + [sym__simple_heredoc_body] = ACTIONS(1890), + [sym__heredoc_body_beginning] = ACTIONS(1890), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_esac] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = 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(1892), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1892), + [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(57), + [sym_word] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1892), }, [2330] = { - [sym_concatenation] = STATE(2494), - [sym_string] = STATE(2497), - [sym_array] = STATE(2494), - [sym_simple_expansion] = STATE(2497), - [sym_string_expansion] = STATE(2497), - [sym_expansion] = STATE(2497), - [sym_command_substitution] = STATE(2497), - [sym_process_substitution] = STATE(2497), - [sym__empty_value] = ACTIONS(5616), - [anon_sym_LPAREN] = ACTIONS(5618), - [sym__special_characters] = ACTIONS(5620), - [anon_sym_DQUOTE] = ACTIONS(5013), - [anon_sym_DOLLAR] = ACTIONS(5015), - [sym_raw_string] = ACTIONS(5622), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LT_LPAREN] = ACTIONS(5025), - [anon_sym_GT_LPAREN] = ACTIONS(5025), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5622), + [anon_sym_SEMI] = ACTIONS(5738), + [anon_sym_RPAREN] = ACTIONS(5736), + [anon_sym_SEMI_SEMI] = ACTIONS(5740), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5740), + [anon_sym_AMP] = ACTIONS(5740), }, [2331] = { - [sym_string] = STATE(2498), - [sym_simple_expansion] = STATE(2498), - [sym_string_expansion] = STATE(2498), - [sym_expansion] = STATE(2498), - [sym_command_substitution] = STATE(2498), - [sym_process_substitution] = STATE(2498), - [sym__special_characters] = ACTIONS(5624), - [anon_sym_DQUOTE] = ACTIONS(5013), - [anon_sym_DOLLAR] = ACTIONS(5015), - [sym_raw_string] = ACTIONS(5624), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LT_LPAREN] = ACTIONS(5025), - [anon_sym_GT_LPAREN] = ACTIONS(5025), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5624), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2502), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(5742), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5736), + [anon_sym_SEMI_SEMI] = ACTIONS(5744), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5744), + [anon_sym_AMP] = ACTIONS(5742), }, [2332] = { - [aux_sym_concatenation_repeat1] = STATE(2499), - [sym__concat] = ACTIONS(5350), - [sym_variable_name] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_esac] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [sym__special_characters] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_LT_LPAREN] = ACTIONS(807), - [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(809), - [sym_word] = ACTIONS(809), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2502), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5742), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5736), + [anon_sym_SEMI_SEMI] = ACTIONS(5744), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5744), + [anon_sym_AMP] = ACTIONS(5742), }, [2333] = { - [sym__concat] = ACTIONS(811), - [sym_variable_name] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(813), - [anon_sym_esac] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(813), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [sym__special_characters] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(813), - [sym_raw_string] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(813), - [sym_word] = ACTIONS(813), - [anon_sym_LF] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(813), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(5736), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2334] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(5626), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(5746), + [anon_sym_SEMI_SEMI] = ACTIONS(5748), + [anon_sym_BQUOTE] = ACTIONS(5736), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5748), + [anon_sym_AMP] = ACTIONS(5748), }, [2335] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(473), - [anon_sym_DQUOTE] = ACTIONS(5626), - [anon_sym_DOLLAR] = ACTIONS(5628), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(2505), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(5750), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(5752), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(5736), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5752), + [anon_sym_AMP] = ACTIONS(5750), }, [2336] = { - [sym__concat] = ACTIONS(845), - [sym_variable_name] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_esac] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_SEMI_SEMI] = ACTIONS(845), - [anon_sym_PIPE_AMP] = ACTIONS(845), - [anon_sym_AMP_AMP] = ACTIONS(845), - [anon_sym_PIPE_PIPE] = ACTIONS(845), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(845), - [anon_sym_DOLLAR] = ACTIONS(847), - [sym_raw_string] = ACTIONS(845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(845), - [anon_sym_LT_LPAREN] = ACTIONS(845), - [anon_sym_GT_LPAREN] = ACTIONS(845), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(847), - [sym_word] = ACTIONS(847), - [anon_sym_LF] = ACTIONS(845), - [anon_sym_AMP] = ACTIONS(847), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(2505), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5750), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(5752), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(5736), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5752), + [anon_sym_AMP] = ACTIONS(5750), }, [2337] = { - [sym__concat] = ACTIONS(849), - [sym_variable_name] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_esac] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_SEMI_SEMI] = ACTIONS(849), - [anon_sym_PIPE_AMP] = ACTIONS(849), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [sym__special_characters] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(851), - [sym_raw_string] = ACTIONS(849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(849), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(851), - [sym_word] = ACTIONS(851), - [anon_sym_LF] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(851), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(5754), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2338] = { - [sym__concat] = ACTIONS(853), - [sym_variable_name] = ACTIONS(853), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_esac] = ACTIONS(855), - [anon_sym_PIPE] = ACTIONS(855), - [anon_sym_SEMI_SEMI] = ACTIONS(853), - [anon_sym_PIPE_AMP] = ACTIONS(853), - [anon_sym_AMP_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(853), - [sym__special_characters] = ACTIONS(853), - [anon_sym_DQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(855), - [sym_raw_string] = ACTIONS(853), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), - [anon_sym_BQUOTE] = ACTIONS(853), - [anon_sym_LT_LPAREN] = ACTIONS(853), - [anon_sym_GT_LPAREN] = ACTIONS(853), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(855), - [sym_word] = ACTIONS(855), - [anon_sym_LF] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(855), + [sym__simple_heredoc_body] = ACTIONS(1924), + [sym__heredoc_body_beginning] = ACTIONS(1924), + [sym_file_descriptor] = ACTIONS(1924), + [sym__concat] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_esac] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [anon_sym_PIPE_AMP] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [anon_sym_EQ_TILDE] = ACTIONS(1926), + [anon_sym_EQ_EQ] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_GT_GT] = ACTIONS(1924), + [anon_sym_AMP_GT] = ACTIONS(1926), + [anon_sym_AMP_GT_GT] = ACTIONS(1924), + [anon_sym_LT_AMP] = ACTIONS(1924), + [anon_sym_GT_AMP] = ACTIONS(1924), + [anon_sym_LT_LT] = ACTIONS(1926), + [anon_sym_LT_LT_DASH] = ACTIONS(1924), + [anon_sym_LT_LT_LT] = ACTIONS(1924), + [sym__special_characters] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(1924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), + [anon_sym_BQUOTE] = ACTIONS(1924), + [anon_sym_LT_LPAREN] = ACTIONS(1924), + [anon_sym_GT_LPAREN] = ACTIONS(1924), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1926), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1926), }, [2339] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(5630), - [sym_comment] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(5756), + [anon_sym_RPAREN] = ACTIONS(5754), + [anon_sym_SEMI_SEMI] = ACTIONS(5758), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5758), + [anon_sym_AMP] = ACTIONS(5758), }, [2340] = { - [sym_subscript] = STATE(2505), - [sym_variable_name] = ACTIONS(5632), - [anon_sym_DASH] = ACTIONS(5634), - [anon_sym_DOLLAR] = ACTIONS(5634), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5636), - [anon_sym_STAR] = ACTIONS(5638), - [anon_sym_AT] = ACTIONS(5638), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_0] = ACTIONS(5636), - [anon_sym__] = ACTIONS(5636), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2509), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(5760), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5754), + [anon_sym_SEMI_SEMI] = ACTIONS(5762), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5762), + [anon_sym_AMP] = ACTIONS(5760), }, [2341] = { - [sym_concatenation] = STATE(2508), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2508), - [anon_sym_RBRACE] = ACTIONS(5640), - [anon_sym_EQ] = ACTIONS(5642), - [anon_sym_DASH] = ACTIONS(5642), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5644), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(5642), - [anon_sym_COLON_QMARK] = ACTIONS(5642), - [anon_sym_COLON_DASH] = ACTIONS(5642), - [anon_sym_PERCENT] = ACTIONS(5642), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2509), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5760), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5754), + [anon_sym_SEMI_SEMI] = ACTIONS(5762), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5762), + [anon_sym_AMP] = ACTIONS(5760), }, [2342] = { - [sym_concatenation] = STATE(2511), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2511), - [anon_sym_RBRACE] = ACTIONS(5648), - [anon_sym_EQ] = ACTIONS(5650), - [anon_sym_DASH] = ACTIONS(5650), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(5654), - [anon_sym_COLON] = ACTIONS(5650), - [anon_sym_COLON_QMARK] = ACTIONS(5650), - [anon_sym_COLON_DASH] = ACTIONS(5650), - [anon_sym_PERCENT] = ACTIONS(5650), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(975), + [sym_string] = STATE(2511), + [sym_simple_expansion] = STATE(2511), + [sym_string_expansion] = STATE(2511), + [sym_expansion] = STATE(2511), + [sym_command_substitution] = STATE(2511), + [sym_process_substitution] = STATE(2511), + [sym__special_characters] = ACTIONS(5764), + [anon_sym_DQUOTE] = ACTIONS(5404), + [anon_sym_DOLLAR] = ACTIONS(5406), + [sym_raw_string] = ACTIONS(5766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5412), + [anon_sym_BQUOTE] = ACTIONS(5414), + [anon_sym_LT_LPAREN] = ACTIONS(5416), + [anon_sym_GT_LPAREN] = ACTIONS(5416), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5766), }, [2343] = { - [anon_sym_SEMI] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(5658), - [anon_sym_SEMI_SEMI] = ACTIONS(5660), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5660), - [anon_sym_AMP] = ACTIONS(5656), + [sym_file_redirect] = STATE(2170), + [sym_heredoc_redirect] = STATE(2170), + [sym_herestring_redirect] = STATE(2170), + [aux_sym_redirected_statement_repeat1] = STATE(2170), + [sym__simple_heredoc_body] = ACTIONS(1964), + [sym__heredoc_body_beginning] = ACTIONS(1964), + [sym_file_descriptor] = ACTIONS(1964), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_esac] = ACTIONS(1964), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_SEMI_SEMI] = ACTIONS(1964), + [anon_sym_PIPE_AMP] = ACTIONS(1964), + [anon_sym_AMP_AMP] = ACTIONS(1964), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_LT] = ACTIONS(1966), + [anon_sym_GT] = ACTIONS(1966), + [anon_sym_GT_GT] = ACTIONS(1964), + [anon_sym_AMP_GT] = ACTIONS(1966), + [anon_sym_AMP_GT_GT] = ACTIONS(1964), + [anon_sym_LT_AMP] = ACTIONS(1964), + [anon_sym_GT_AMP] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(1966), + [anon_sym_LT_LT_DASH] = ACTIONS(1964), + [anon_sym_LT_LT_LT] = ACTIONS(1964), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1964), + [anon_sym_AMP] = ACTIONS(1966), }, [2344] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(5658), - [anon_sym_SEMI_SEMI] = ACTIONS(5660), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(5660), - [anon_sym_AMP] = ACTIONS(5656), + [sym_file_redirect] = STATE(2170), + [sym_heredoc_redirect] = STATE(2170), + [sym_herestring_redirect] = STATE(2170), + [aux_sym_redirected_statement_repeat1] = STATE(2170), + [sym__simple_heredoc_body] = ACTIONS(1964), + [sym__heredoc_body_beginning] = ACTIONS(1964), + [sym_file_descriptor] = ACTIONS(1964), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_esac] = ACTIONS(1966), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_SEMI_SEMI] = ACTIONS(1964), + [anon_sym_PIPE_AMP] = ACTIONS(1964), + [anon_sym_AMP_AMP] = ACTIONS(1964), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_LT] = ACTIONS(1966), + [anon_sym_GT] = ACTIONS(1966), + [anon_sym_GT_GT] = ACTIONS(1964), + [anon_sym_AMP_GT] = ACTIONS(1966), + [anon_sym_AMP_GT_GT] = ACTIONS(1964), + [anon_sym_LT_AMP] = ACTIONS(1964), + [anon_sym_GT_AMP] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(1966), + [anon_sym_LT_LT_DASH] = ACTIONS(1964), + [anon_sym_LT_LT_LT] = ACTIONS(1964), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1964), + [anon_sym_AMP] = ACTIONS(1966), }, [2345] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(2514), - [sym_c_style_for_statement] = STATE(2514), - [sym_while_statement] = STATE(2514), - [sym_if_statement] = STATE(2514), - [sym_case_statement] = STATE(2514), - [sym_function_definition] = STATE(2514), - [sym_subshell] = STATE(2514), - [sym_pipeline] = STATE(2514), - [sym_list] = STATE(2514), - [sym_negated_command] = STATE(2514), - [sym_test_command] = STATE(2514), - [sym_declaration_command] = STATE(2514), - [sym_unset_command] = STATE(2514), - [sym_command] = STATE(2514), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(2515), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_file_redirect] = STATE(2170), + [sym_heredoc_redirect] = STATE(2170), + [sym_herestring_redirect] = STATE(2170), + [aux_sym_redirected_statement_repeat1] = STATE(2170), + [sym__simple_heredoc_body] = ACTIONS(1968), + [sym__heredoc_body_beginning] = ACTIONS(1968), + [sym_file_descriptor] = ACTIONS(1968), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_esac] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_SEMI_SEMI] = ACTIONS(1968), + [anon_sym_PIPE_AMP] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(1970), + [anon_sym_GT_GT] = ACTIONS(1968), + [anon_sym_AMP_GT] = ACTIONS(1970), + [anon_sym_AMP_GT_GT] = ACTIONS(1968), + [anon_sym_LT_AMP] = ACTIONS(1968), + [anon_sym_GT_AMP] = ACTIONS(1968), + [anon_sym_LT_LT] = ACTIONS(1970), + [anon_sym_LT_LT_DASH] = ACTIONS(1968), + [anon_sym_LT_LT_LT] = ACTIONS(1968), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1970), }, [2346] = { - [anon_sym_SEMI] = ACTIONS(5662), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(5664), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(5658), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5662), + [sym_file_redirect] = STATE(2170), + [sym_heredoc_redirect] = STATE(2170), + [sym_herestring_redirect] = STATE(2170), + [aux_sym_redirected_statement_repeat1] = STATE(2170), + [sym__simple_heredoc_body] = ACTIONS(1968), + [sym__heredoc_body_beginning] = ACTIONS(1968), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_esac] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_SEMI_SEMI] = ACTIONS(1968), + [anon_sym_PIPE_AMP] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(1970), + [anon_sym_LT_LT_DASH] = ACTIONS(1968), + [anon_sym_LT_LT_LT] = ACTIONS(1968), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1970), }, [2347] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(5662), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(5664), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(5658), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(5664), - [anon_sym_AMP] = ACTIONS(5662), + [aux_sym_concatenation_repeat1] = STATE(2513), + [sym__simple_heredoc_body] = ACTIONS(745), + [sym__heredoc_body_beginning] = ACTIONS(745), + [sym_file_descriptor] = ACTIONS(745), + [sym__concat] = ACTIONS(5768), + [anon_sym_SEMI] = ACTIONS(749), + [anon_sym_esac] = ACTIONS(745), + [anon_sym_PIPE] = ACTIONS(749), + [anon_sym_SEMI_SEMI] = ACTIONS(745), + [anon_sym_PIPE_AMP] = ACTIONS(745), + [anon_sym_AMP_AMP] = ACTIONS(745), + [anon_sym_PIPE_PIPE] = ACTIONS(745), + [anon_sym_LT] = ACTIONS(749), + [anon_sym_GT] = ACTIONS(749), + [anon_sym_GT_GT] = ACTIONS(745), + [anon_sym_AMP_GT] = ACTIONS(749), + [anon_sym_AMP_GT_GT] = ACTIONS(745), + [anon_sym_LT_AMP] = ACTIONS(745), + [anon_sym_GT_AMP] = ACTIONS(745), + [anon_sym_LT_LT] = ACTIONS(749), + [anon_sym_LT_LT_DASH] = ACTIONS(745), + [anon_sym_LT_LT_LT] = ACTIONS(745), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(745), + [anon_sym_AMP] = ACTIONS(749), }, [2348] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(2517), - [sym_c_style_for_statement] = STATE(2517), - [sym_while_statement] = STATE(2517), - [sym_if_statement] = STATE(2517), - [sym_case_statement] = STATE(2517), - [sym_function_definition] = STATE(2517), - [sym_subshell] = STATE(2517), - [sym_pipeline] = STATE(2517), - [sym_list] = STATE(2517), - [sym_negated_command] = STATE(2517), - [sym_test_command] = STATE(2517), - [sym_declaration_command] = STATE(2517), - [sym_unset_command] = STATE(2517), - [sym_command] = STATE(2517), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(2518), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(2516), + [anon_sym_DQUOTE] = ACTIONS(5770), + [anon_sym_DOLLAR] = ACTIONS(5772), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [2349] = { - [anon_sym_SEMI] = ACTIONS(5666), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(5668), - [anon_sym_SEMI_SEMI] = ACTIONS(5670), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5670), - [anon_sym_AMP] = ACTIONS(5666), + [sym_string] = STATE(2518), + [anon_sym_DASH] = ACTIONS(5774), + [anon_sym_DQUOTE] = ACTIONS(5404), + [anon_sym_DOLLAR] = ACTIONS(5774), + [sym_raw_string] = ACTIONS(5776), + [anon_sym_POUND] = ACTIONS(5774), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5778), + [anon_sym_STAR] = ACTIONS(5780), + [anon_sym_AT] = ACTIONS(5780), + [anon_sym_QMARK] = ACTIONS(5780), + [anon_sym_0] = ACTIONS(5778), + [anon_sym__] = ACTIONS(5778), }, [2350] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(5666), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(5668), - [anon_sym_SEMI_SEMI] = ACTIONS(5670), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(5670), - [anon_sym_AMP] = ACTIONS(5666), + [aux_sym_concatenation_repeat1] = STATE(2513), + [sym__simple_heredoc_body] = ACTIONS(763), + [sym__heredoc_body_beginning] = ACTIONS(763), + [sym_file_descriptor] = ACTIONS(763), + [sym__concat] = ACTIONS(5768), + [anon_sym_SEMI] = ACTIONS(765), + [anon_sym_esac] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(765), + [anon_sym_SEMI_SEMI] = ACTIONS(763), + [anon_sym_PIPE_AMP] = ACTIONS(763), + [anon_sym_AMP_AMP] = ACTIONS(763), + [anon_sym_PIPE_PIPE] = ACTIONS(763), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(763), + [anon_sym_AMP_GT] = ACTIONS(765), + [anon_sym_AMP_GT_GT] = ACTIONS(763), + [anon_sym_LT_AMP] = ACTIONS(763), + [anon_sym_GT_AMP] = ACTIONS(763), + [anon_sym_LT_LT] = ACTIONS(765), + [anon_sym_LT_LT_DASH] = ACTIONS(763), + [anon_sym_LT_LT_LT] = ACTIONS(763), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(763), + [anon_sym_AMP] = ACTIONS(765), }, [2351] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(2521), - [sym_c_style_for_statement] = STATE(2521), - [sym_while_statement] = STATE(2521), - [sym_if_statement] = STATE(2521), - [sym_case_statement] = STATE(2521), - [sym_function_definition] = STATE(2521), - [sym_subshell] = STATE(2521), - [sym_pipeline] = STATE(2521), - [sym_list] = STATE(2521), - [sym_negated_command] = STATE(2521), - [sym_test_command] = STATE(2521), - [sym_declaration_command] = STATE(2521), - [sym_unset_command] = STATE(2521), - [sym_command] = STATE(2521), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(2522), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_subscript] = STATE(2523), + [sym_variable_name] = ACTIONS(5782), + [anon_sym_BANG] = ACTIONS(5784), + [anon_sym_DASH] = ACTIONS(5786), + [anon_sym_DOLLAR] = ACTIONS(5786), + [anon_sym_POUND] = ACTIONS(5784), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5788), + [anon_sym_STAR] = ACTIONS(5790), + [anon_sym_AT] = ACTIONS(5790), + [anon_sym_QMARK] = ACTIONS(5790), + [anon_sym_0] = ACTIONS(5788), + [anon_sym__] = ACTIONS(5788), }, [2352] = { - [sym_variable_assignment] = STATE(2352), - [sym_subscript] = STATE(2178), - [sym_concatenation] = STATE(2352), + [sym__terminated_statement] = STATE(2526), + [sym_redirected_statement] = STATE(2524), + [sym_for_statement] = STATE(2524), + [sym_c_style_for_statement] = STATE(2524), + [sym_while_statement] = STATE(2524), + [sym_if_statement] = STATE(2524), + [sym_case_statement] = STATE(2524), + [sym_function_definition] = STATE(2524), + [sym_compound_statement] = STATE(2524), + [sym_subshell] = STATE(2524), + [sym_pipeline] = STATE(2524), + [sym_list] = STATE(2524), + [sym_negated_command] = STATE(2524), + [sym_test_command] = STATE(2524), + [sym_declaration_command] = STATE(2524), + [sym_unset_command] = STATE(2524), + [sym_command] = STATE(2524), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(2525), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(2526), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), + }, + [2353] = { + [sym__terminated_statement] = STATE(2529), + [sym_redirected_statement] = STATE(2527), + [sym_for_statement] = STATE(2527), + [sym_c_style_for_statement] = STATE(2527), + [sym_while_statement] = STATE(2527), + [sym_if_statement] = STATE(2527), + [sym_case_statement] = STATE(2527), + [sym_function_definition] = STATE(2527), + [sym_compound_statement] = STATE(2527), + [sym_subshell] = STATE(2527), + [sym_pipeline] = STATE(2527), + [sym_list] = STATE(2527), + [sym_negated_command] = STATE(2527), + [sym_test_command] = STATE(2527), + [sym_declaration_command] = STATE(2527), + [sym_unset_command] = STATE(2527), + [sym_command] = STATE(2527), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(2528), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(2529), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), + }, + [2354] = { + [sym__terminated_statement] = STATE(2532), + [sym_redirected_statement] = STATE(2530), + [sym_for_statement] = STATE(2530), + [sym_c_style_for_statement] = STATE(2530), + [sym_while_statement] = STATE(2530), + [sym_if_statement] = STATE(2530), + [sym_case_statement] = STATE(2530), + [sym_function_definition] = STATE(2530), + [sym_compound_statement] = STATE(2530), + [sym_subshell] = STATE(2530), + [sym_pipeline] = STATE(2530), + [sym_list] = STATE(2530), + [sym_negated_command] = STATE(2530), + [sym_test_command] = STATE(2530), + [sym_declaration_command] = STATE(2530), + [sym_unset_command] = STATE(2530), + [sym_command] = STATE(2530), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(2531), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(2532), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), + }, + [2355] = { + [aux_sym_concatenation_repeat1] = STATE(2513), + [sym__simple_heredoc_body] = ACTIONS(1976), + [sym__heredoc_body_beginning] = ACTIONS(1976), + [sym_file_descriptor] = ACTIONS(1976), + [sym__concat] = ACTIONS(5768), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_esac] = ACTIONS(1976), + [anon_sym_PIPE] = ACTIONS(1978), + [anon_sym_SEMI_SEMI] = ACTIONS(1976), + [anon_sym_PIPE_AMP] = ACTIONS(1976), + [anon_sym_AMP_AMP] = ACTIONS(1976), + [anon_sym_PIPE_PIPE] = ACTIONS(1976), + [anon_sym_LT] = ACTIONS(1978), + [anon_sym_GT] = ACTIONS(1978), + [anon_sym_GT_GT] = ACTIONS(1976), + [anon_sym_AMP_GT] = ACTIONS(1978), + [anon_sym_AMP_GT_GT] = ACTIONS(1976), + [anon_sym_LT_AMP] = ACTIONS(1976), + [anon_sym_GT_AMP] = ACTIONS(1976), + [anon_sym_LT_LT] = ACTIONS(1978), + [anon_sym_LT_LT_DASH] = ACTIONS(1976), + [anon_sym_LT_LT_LT] = ACTIONS(1976), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1978), + }, + [2356] = { + [aux_sym_concatenation_repeat1] = STATE(2513), + [sym__simple_heredoc_body] = ACTIONS(1980), + [sym__heredoc_body_beginning] = ACTIONS(1980), + [sym_file_descriptor] = ACTIONS(1980), + [sym__concat] = ACTIONS(5768), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_esac] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_SEMI_SEMI] = ACTIONS(1980), + [anon_sym_PIPE_AMP] = ACTIONS(1980), + [anon_sym_AMP_AMP] = ACTIONS(1980), + [anon_sym_PIPE_PIPE] = ACTIONS(1980), + [anon_sym_LT] = ACTIONS(1982), + [anon_sym_GT] = ACTIONS(1982), + [anon_sym_GT_GT] = ACTIONS(1980), + [anon_sym_AMP_GT] = ACTIONS(1982), + [anon_sym_AMP_GT_GT] = ACTIONS(1980), + [anon_sym_LT_AMP] = ACTIONS(1980), + [anon_sym_GT_AMP] = ACTIONS(1980), + [anon_sym_LT_LT] = ACTIONS(1982), + [anon_sym_LT_LT_DASH] = ACTIONS(1980), + [anon_sym_LT_LT_LT] = ACTIONS(1980), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1980), + [anon_sym_AMP] = ACTIONS(1982), + }, + [2357] = { + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_esac] = ACTIONS(1988), + [anon_sym_SEMI_SEMI] = ACTIONS(1984), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), + }, + [2358] = { + [sym_file_redirect] = STATE(2358), + [sym_heredoc_redirect] = STATE(2358), + [sym_herestring_redirect] = STATE(2358), + [aux_sym_redirected_statement_repeat1] = STATE(2358), + [sym__simple_heredoc_body] = ACTIONS(1990), + [sym__heredoc_body_beginning] = ACTIONS(1990), + [sym_file_descriptor] = ACTIONS(5792), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym_esac] = ACTIONS(1990), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_SEMI_SEMI] = ACTIONS(1990), + [anon_sym_PIPE_AMP] = ACTIONS(1990), + [anon_sym_AMP_AMP] = ACTIONS(1990), + [anon_sym_PIPE_PIPE] = ACTIONS(1990), + [anon_sym_LT] = ACTIONS(5795), + [anon_sym_GT] = ACTIONS(5795), + [anon_sym_GT_GT] = ACTIONS(5798), + [anon_sym_AMP_GT] = ACTIONS(5795), + [anon_sym_AMP_GT_GT] = ACTIONS(5798), + [anon_sym_LT_AMP] = ACTIONS(5798), + [anon_sym_GT_AMP] = ACTIONS(5798), + [anon_sym_LT_LT] = ACTIONS(2003), + [anon_sym_LT_LT_DASH] = ACTIONS(2006), + [anon_sym_LT_LT_LT] = ACTIONS(5801), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1995), + }, + [2359] = { + [sym__simple_heredoc_body] = ACTIONS(2012), + [sym__heredoc_body_beginning] = ACTIONS(2012), + [sym_file_descriptor] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_esac] = ACTIONS(2014), + [anon_sym_PIPE] = ACTIONS(2014), + [anon_sym_SEMI_SEMI] = ACTIONS(2012), + [anon_sym_PIPE_AMP] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2012), + [anon_sym_PIPE_PIPE] = ACTIONS(2012), + [anon_sym_EQ_TILDE] = ACTIONS(2014), + [anon_sym_EQ_EQ] = ACTIONS(2014), + [anon_sym_LT] = ACTIONS(2014), + [anon_sym_GT] = ACTIONS(2014), + [anon_sym_GT_GT] = ACTIONS(2012), + [anon_sym_AMP_GT] = ACTIONS(2014), + [anon_sym_AMP_GT_GT] = ACTIONS(2012), + [anon_sym_LT_AMP] = ACTIONS(2012), + [anon_sym_GT_AMP] = ACTIONS(2012), + [anon_sym_LT_LT] = ACTIONS(2014), + [anon_sym_LT_LT_DASH] = ACTIONS(2012), + [anon_sym_LT_LT_LT] = ACTIONS(2012), + [sym__special_characters] = ACTIONS(2012), + [anon_sym_DQUOTE] = ACTIONS(2012), + [anon_sym_DOLLAR] = ACTIONS(2014), + [sym_raw_string] = ACTIONS(2012), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2012), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2012), + [anon_sym_BQUOTE] = ACTIONS(2012), + [anon_sym_LT_LPAREN] = ACTIONS(2012), + [anon_sym_GT_LPAREN] = ACTIONS(2012), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2014), + [anon_sym_LF] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2014), + }, + [2360] = { + [aux_sym_concatenation_repeat1] = STATE(2142), + [sym__simple_heredoc_body] = ACTIONS(2016), + [sym__heredoc_body_beginning] = ACTIONS(2016), + [sym_file_descriptor] = ACTIONS(2016), + [sym__concat] = ACTIONS(5007), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_esac] = ACTIONS(2018), + [anon_sym_PIPE] = ACTIONS(2018), + [anon_sym_SEMI_SEMI] = ACTIONS(2016), + [anon_sym_PIPE_AMP] = ACTIONS(2016), + [anon_sym_AMP_AMP] = ACTIONS(2016), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [anon_sym_EQ_TILDE] = ACTIONS(2018), + [anon_sym_EQ_EQ] = ACTIONS(2018), + [anon_sym_LT] = ACTIONS(2018), + [anon_sym_GT] = ACTIONS(2018), + [anon_sym_GT_GT] = ACTIONS(2016), + [anon_sym_AMP_GT] = ACTIONS(2018), + [anon_sym_AMP_GT_GT] = ACTIONS(2016), + [anon_sym_LT_AMP] = ACTIONS(2016), + [anon_sym_GT_AMP] = ACTIONS(2016), + [anon_sym_LT_LT] = ACTIONS(2018), + [anon_sym_LT_LT_DASH] = ACTIONS(2016), + [anon_sym_LT_LT_LT] = ACTIONS(2016), + [sym__special_characters] = ACTIONS(2016), + [anon_sym_DQUOTE] = ACTIONS(2016), + [anon_sym_DOLLAR] = ACTIONS(2018), + [sym_raw_string] = ACTIONS(2016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2016), + [anon_sym_BQUOTE] = ACTIONS(2016), + [anon_sym_LT_LPAREN] = ACTIONS(2016), + [anon_sym_GT_LPAREN] = ACTIONS(2016), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2018), + [anon_sym_LF] = ACTIONS(2016), + [anon_sym_AMP] = ACTIONS(2018), + }, + [2361] = { + [aux_sym_concatenation_repeat1] = STATE(2142), + [sym__simple_heredoc_body] = ACTIONS(2012), + [sym__heredoc_body_beginning] = ACTIONS(2012), + [sym_file_descriptor] = ACTIONS(2012), + [sym__concat] = ACTIONS(5007), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_esac] = ACTIONS(2014), + [anon_sym_PIPE] = ACTIONS(2014), + [anon_sym_SEMI_SEMI] = ACTIONS(2012), + [anon_sym_PIPE_AMP] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2012), + [anon_sym_PIPE_PIPE] = ACTIONS(2012), + [anon_sym_EQ_TILDE] = ACTIONS(2014), + [anon_sym_EQ_EQ] = ACTIONS(2014), + [anon_sym_LT] = ACTIONS(2014), + [anon_sym_GT] = ACTIONS(2014), + [anon_sym_GT_GT] = ACTIONS(2012), + [anon_sym_AMP_GT] = ACTIONS(2014), + [anon_sym_AMP_GT_GT] = ACTIONS(2012), + [anon_sym_LT_AMP] = ACTIONS(2012), + [anon_sym_GT_AMP] = ACTIONS(2012), + [anon_sym_LT_LT] = ACTIONS(2014), + [anon_sym_LT_LT_DASH] = ACTIONS(2012), + [anon_sym_LT_LT_LT] = ACTIONS(2012), + [sym__special_characters] = ACTIONS(2012), + [anon_sym_DQUOTE] = ACTIONS(2012), + [anon_sym_DOLLAR] = ACTIONS(2014), + [sym_raw_string] = ACTIONS(2012), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2012), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2012), + [anon_sym_BQUOTE] = ACTIONS(2012), + [anon_sym_LT_LPAREN] = ACTIONS(2012), + [anon_sym_GT_LPAREN] = ACTIONS(2012), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2014), + [anon_sym_LF] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2014), + }, + [2362] = { + [sym_concatenation] = STATE(2362), [sym_string] = STATE(2173), [sym_simple_expansion] = STATE(2173), [sym_string_expansion] = STATE(2173), [sym_expansion] = STATE(2173), [sym_command_substitution] = STATE(2173), [sym_process_substitution] = STATE(2173), - [aux_sym_declaration_command_repeat1] = STATE(2352), - [sym_variable_name] = ACTIONS(5672), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym_esac] = ACTIONS(1601), - [anon_sym_PIPE] = ACTIONS(1601), - [anon_sym_SEMI_SEMI] = ACTIONS(1599), - [anon_sym_PIPE_AMP] = ACTIONS(1599), - [anon_sym_AMP_AMP] = ACTIONS(1599), - [anon_sym_PIPE_PIPE] = ACTIONS(1599), - [sym__special_characters] = ACTIONS(5675), - [anon_sym_DQUOTE] = ACTIONS(5678), - [anon_sym_DOLLAR] = ACTIONS(5681), - [sym_raw_string] = ACTIONS(5684), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5687), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5690), - [anon_sym_BQUOTE] = ACTIONS(5693), - [anon_sym_LT_LPAREN] = ACTIONS(5696), - [anon_sym_GT_LPAREN] = ACTIONS(5696), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5699), - [sym_word] = ACTIONS(5702), - [anon_sym_LF] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1601), - }, - [2353] = { - [sym_string] = STATE(2523), - [sym_simple_expansion] = STATE(2523), - [sym_string_expansion] = STATE(2523), - [sym_expansion] = STATE(2523), - [sym_command_substitution] = STATE(2523), - [sym_process_substitution] = STATE(2523), - [sym__special_characters] = ACTIONS(5705), - [anon_sym_DQUOTE] = ACTIONS(5033), - [anon_sym_DOLLAR] = ACTIONS(5035), - [sym_raw_string] = ACTIONS(5705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5041), - [anon_sym_BQUOTE] = ACTIONS(5043), - [anon_sym_LT_LPAREN] = ACTIONS(5045), - [anon_sym_GT_LPAREN] = ACTIONS(5045), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5705), - }, - [2354] = { - [aux_sym_concatenation_repeat1] = STATE(2524), - [sym__concat] = ACTIONS(5376), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_esac] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [sym__special_characters] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_LT_LPAREN] = ACTIONS(807), - [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(809), - [sym_word] = ACTIONS(809), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), - }, - [2355] = { - [sym__concat] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(813), - [anon_sym_esac] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(813), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [sym__special_characters] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(813), - [sym_raw_string] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(813), - [sym_word] = ACTIONS(813), - [anon_sym_LF] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(813), - }, - [2356] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(5707), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), - }, - [2357] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(473), - [anon_sym_DQUOTE] = ACTIONS(5707), - [anon_sym_DOLLAR] = ACTIONS(5709), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), - }, - [2358] = { - [sym__concat] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_esac] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_SEMI_SEMI] = ACTIONS(845), - [anon_sym_PIPE_AMP] = ACTIONS(845), - [anon_sym_AMP_AMP] = ACTIONS(845), - [anon_sym_PIPE_PIPE] = ACTIONS(845), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(845), - [anon_sym_DOLLAR] = ACTIONS(847), - [sym_raw_string] = ACTIONS(845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(845), - [anon_sym_LT_LPAREN] = ACTIONS(845), - [anon_sym_GT_LPAREN] = ACTIONS(845), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(847), - [sym_word] = ACTIONS(847), - [anon_sym_LF] = ACTIONS(845), - [anon_sym_AMP] = ACTIONS(847), - }, - [2359] = { - [sym__concat] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_esac] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_SEMI_SEMI] = ACTIONS(849), - [anon_sym_PIPE_AMP] = ACTIONS(849), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [sym__special_characters] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(851), - [sym_raw_string] = ACTIONS(849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(849), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(851), - [sym_word] = ACTIONS(851), - [anon_sym_LF] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(851), - }, - [2360] = { - [sym__concat] = ACTIONS(853), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_esac] = ACTIONS(855), - [anon_sym_PIPE] = ACTIONS(855), - [anon_sym_SEMI_SEMI] = ACTIONS(853), - [anon_sym_PIPE_AMP] = ACTIONS(853), - [anon_sym_AMP_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(853), - [sym__special_characters] = ACTIONS(853), - [anon_sym_DQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(855), - [sym_raw_string] = ACTIONS(853), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), - [anon_sym_BQUOTE] = ACTIONS(853), - [anon_sym_LT_LPAREN] = ACTIONS(853), - [anon_sym_GT_LPAREN] = ACTIONS(853), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(855), - [sym_word] = ACTIONS(855), - [anon_sym_LF] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(855), - }, - [2361] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(5711), - [sym_comment] = ACTIONS(55), - }, - [2362] = { - [sym_subscript] = STATE(2530), - [sym_variable_name] = ACTIONS(5713), - [anon_sym_DASH] = ACTIONS(5715), - [anon_sym_DOLLAR] = ACTIONS(5715), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5717), - [anon_sym_STAR] = ACTIONS(5719), - [anon_sym_AT] = ACTIONS(5719), - [anon_sym_QMARK] = ACTIONS(5719), - [anon_sym_0] = ACTIONS(5717), - [anon_sym__] = ACTIONS(5717), + [aux_sym_command_repeat2] = STATE(2362), + [sym__simple_heredoc_body] = ACTIONS(2012), + [sym__heredoc_body_beginning] = ACTIONS(2012), + [sym_file_descriptor] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_esac] = ACTIONS(2014), + [anon_sym_PIPE] = ACTIONS(2014), + [anon_sym_SEMI_SEMI] = ACTIONS(2012), + [anon_sym_PIPE_AMP] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2012), + [anon_sym_PIPE_PIPE] = ACTIONS(2012), + [anon_sym_EQ_TILDE] = ACTIONS(5804), + [anon_sym_EQ_EQ] = ACTIONS(5804), + [anon_sym_LT] = ACTIONS(2014), + [anon_sym_GT] = ACTIONS(2014), + [anon_sym_GT_GT] = ACTIONS(2012), + [anon_sym_AMP_GT] = ACTIONS(2014), + [anon_sym_AMP_GT_GT] = ACTIONS(2012), + [anon_sym_LT_AMP] = ACTIONS(2012), + [anon_sym_GT_AMP] = ACTIONS(2012), + [anon_sym_LT_LT] = ACTIONS(2014), + [anon_sym_LT_LT_DASH] = ACTIONS(2012), + [anon_sym_LT_LT_LT] = ACTIONS(2012), + [sym__special_characters] = ACTIONS(5807), + [anon_sym_DQUOTE] = ACTIONS(5810), + [anon_sym_DOLLAR] = ACTIONS(5813), + [sym_raw_string] = ACTIONS(5816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5819), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5822), + [anon_sym_BQUOTE] = ACTIONS(5825), + [anon_sym_LT_LPAREN] = ACTIONS(5828), + [anon_sym_GT_LPAREN] = ACTIONS(5828), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5831), + [anon_sym_LF] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2014), }, [2363] = { - [sym_concatenation] = STATE(2533), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2533), - [anon_sym_RBRACE] = ACTIONS(5721), - [anon_sym_EQ] = ACTIONS(5723), - [anon_sym_DASH] = ACTIONS(5723), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5725), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(5727), - [anon_sym_COLON] = ACTIONS(5723), - [anon_sym_COLON_QMARK] = ACTIONS(5723), - [anon_sym_COLON_DASH] = ACTIONS(5723), - [anon_sym_PERCENT] = ACTIONS(5723), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_esac] = ACTIONS(5834), + [anon_sym_SEMI_SEMI] = ACTIONS(927), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(5836), + [anon_sym_DQUOTE] = ACTIONS(5838), + [anon_sym_DOLLAR] = ACTIONS(5836), + [sym_raw_string] = ACTIONS(5838), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5838), + [anon_sym_BQUOTE] = ACTIONS(5838), + [anon_sym_LT_LPAREN] = ACTIONS(5838), + [anon_sym_GT_LPAREN] = ACTIONS(5838), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5836), }, [2364] = { - [sym_concatenation] = STATE(2536), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2536), - [anon_sym_RBRACE] = ACTIONS(5729), - [anon_sym_EQ] = ACTIONS(5731), - [anon_sym_DASH] = ACTIONS(5731), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(5735), - [anon_sym_COLON] = ACTIONS(5731), - [anon_sym_COLON_QMARK] = ACTIONS(5731), - [anon_sym_COLON_DASH] = ACTIONS(5731), - [anon_sym_PERCENT] = ACTIONS(5731), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_heredoc_body] = STATE(2169), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(5033), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(5051), + [anon_sym_PIPE_AMP] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_AMP_GT] = ACTIONS(507), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(511), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5051), + [anon_sym_AMP] = ACTIONS(5033), }, [2365] = { - [anon_sym_SEMI] = ACTIONS(5737), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(5739), - [anon_sym_SEMI_SEMI] = ACTIONS(5741), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5741), - [anon_sym_AMP] = ACTIONS(5737), + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_heredoc_body] = STATE(2169), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5033), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(5051), + [anon_sym_PIPE_AMP] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(511), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5051), + [anon_sym_AMP] = ACTIONS(5033), }, [2366] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(5737), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(5739), - [anon_sym_SEMI_SEMI] = ACTIONS(5741), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(5741), - [anon_sym_AMP] = ACTIONS(5737), + [sym_concatenation] = STATE(2362), + [sym_string] = STATE(2173), + [sym_simple_expansion] = STATE(2173), + [sym_string_expansion] = STATE(2173), + [sym_expansion] = STATE(2173), + [sym_command_substitution] = STATE(2173), + [sym_process_substitution] = STATE(2173), + [aux_sym_command_repeat2] = STATE(2362), + [sym__simple_heredoc_body] = ACTIONS(2058), + [sym__heredoc_body_beginning] = ACTIONS(2058), + [sym_file_descriptor] = ACTIONS(2058), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_esac] = ACTIONS(2060), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_SEMI_SEMI] = ACTIONS(2058), + [anon_sym_PIPE_AMP] = ACTIONS(2058), + [anon_sym_AMP_AMP] = ACTIONS(2058), + [anon_sym_PIPE_PIPE] = ACTIONS(2058), + [anon_sym_EQ_TILDE] = ACTIONS(5053), + [anon_sym_EQ_EQ] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(2060), + [anon_sym_GT] = ACTIONS(2060), + [anon_sym_GT_GT] = ACTIONS(2058), + [anon_sym_AMP_GT] = ACTIONS(2060), + [anon_sym_AMP_GT_GT] = ACTIONS(2058), + [anon_sym_LT_AMP] = ACTIONS(2058), + [anon_sym_GT_AMP] = ACTIONS(2058), + [anon_sym_LT_LT] = ACTIONS(2060), + [anon_sym_LT_LT_DASH] = ACTIONS(2058), + [anon_sym_LT_LT_LT] = ACTIONS(2058), + [sym__special_characters] = ACTIONS(5055), + [anon_sym_DQUOTE] = ACTIONS(4432), + [anon_sym_DOLLAR] = ACTIONS(4434), + [sym_raw_string] = ACTIONS(5057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4440), + [anon_sym_BQUOTE] = ACTIONS(4442), + [anon_sym_LT_LPAREN] = ACTIONS(4444), + [anon_sym_GT_LPAREN] = ACTIONS(4444), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5059), + [anon_sym_LF] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2060), }, [2367] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(2539), - [sym_c_style_for_statement] = STATE(2539), - [sym_while_statement] = STATE(2539), - [sym_if_statement] = STATE(2539), - [sym_case_statement] = STATE(2539), - [sym_function_definition] = STATE(2539), - [sym_subshell] = STATE(2539), - [sym_pipeline] = STATE(2539), - [sym_list] = STATE(2539), - [sym_negated_command] = STATE(2539), - [sym_test_command] = STATE(2539), - [sym_declaration_command] = STATE(2539), - [sym_unset_command] = STATE(2539), - [sym_command] = STATE(2539), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(2540), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [anon_sym_esac] = ACTIONS(5834), + [sym__special_characters] = ACTIONS(5838), + [anon_sym_DQUOTE] = ACTIONS(5838), + [anon_sym_DOLLAR] = ACTIONS(5836), + [sym_raw_string] = ACTIONS(5838), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5838), + [anon_sym_BQUOTE] = ACTIONS(5838), + [anon_sym_LT_LPAREN] = ACTIONS(5838), + [anon_sym_GT_LPAREN] = ACTIONS(5838), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5836), }, [2368] = { - [anon_sym_SEMI] = ACTIONS(5743), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(5745), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(5739), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5745), - [anon_sym_AMP] = ACTIONS(5743), + [sym_file_redirect] = STATE(2170), + [sym_heredoc_redirect] = STATE(2170), + [sym_heredoc_body] = STATE(2169), + [sym_herestring_redirect] = STATE(2170), + [aux_sym_redirected_statement_repeat1] = STATE(2170), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(5031), + [anon_sym_SEMI] = ACTIONS(5033), + [anon_sym_esac] = ACTIONS(5840), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_SEMI_SEMI] = ACTIONS(5842), + [anon_sym_PIPE_AMP] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE_PIPE] = ACTIONS(5043), + [anon_sym_LT] = ACTIONS(5045), + [anon_sym_GT] = ACTIONS(5045), + [anon_sym_GT_GT] = ACTIONS(5047), + [anon_sym_AMP_GT] = ACTIONS(5045), + [anon_sym_AMP_GT_GT] = ACTIONS(5047), + [anon_sym_LT_AMP] = ACTIONS(5047), + [anon_sym_GT_AMP] = ACTIONS(5047), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(5049), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5051), + [anon_sym_AMP] = ACTIONS(5033), }, [2369] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(5743), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(5745), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(5739), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(5745), - [anon_sym_AMP] = ACTIONS(5743), + [sym_file_redirect] = STATE(2170), + [sym_heredoc_redirect] = STATE(2170), + [sym_heredoc_body] = STATE(2169), + [sym_herestring_redirect] = STATE(2170), + [aux_sym_redirected_statement_repeat1] = STATE(2170), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5033), + [anon_sym_esac] = ACTIONS(5834), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_SEMI_SEMI] = ACTIONS(5842), + [anon_sym_PIPE_AMP] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE_PIPE] = ACTIONS(5043), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(5049), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5051), + [anon_sym_AMP] = ACTIONS(5033), }, [2370] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(2542), - [sym_c_style_for_statement] = STATE(2542), - [sym_while_statement] = STATE(2542), - [sym_if_statement] = STATE(2542), - [sym_case_statement] = STATE(2542), - [sym_function_definition] = STATE(2542), - [sym_subshell] = STATE(2542), - [sym_pipeline] = STATE(2542), - [sym_list] = STATE(2542), - [sym_negated_command] = STATE(2542), - [sym_test_command] = STATE(2542), - [sym_declaration_command] = STATE(2542), - [sym_unset_command] = STATE(2542), - [sym_command] = STATE(2542), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(2543), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), - }, - [2371] = { - [anon_sym_SEMI] = ACTIONS(5747), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(5749), - [anon_sym_SEMI_SEMI] = ACTIONS(5751), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5751), - [anon_sym_AMP] = ACTIONS(5747), - }, - [2372] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(5747), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(5749), - [anon_sym_SEMI_SEMI] = ACTIONS(5751), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(5751), - [anon_sym_AMP] = ACTIONS(5747), - }, - [2373] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(2546), - [sym_c_style_for_statement] = STATE(2546), - [sym_while_statement] = STATE(2546), - [sym_if_statement] = STATE(2546), - [sym_case_statement] = STATE(2546), - [sym_function_definition] = STATE(2546), - [sym_subshell] = STATE(2546), - [sym_pipeline] = STATE(2546), - [sym_list] = STATE(2546), - [sym_negated_command] = STATE(2546), - [sym_test_command] = STATE(2546), - [sym_declaration_command] = STATE(2546), - [sym_unset_command] = STATE(2546), - [sym_command] = STATE(2546), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(2547), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), - }, - [2374] = { - [sym_concatenation] = STATE(2374), - [sym_string] = STATE(2183), - [sym_simple_expansion] = STATE(2183), - [sym_string_expansion] = STATE(2183), - [sym_expansion] = STATE(2183), - [sym_command_substitution] = STATE(2183), - [sym_process_substitution] = STATE(2183), - [aux_sym_unset_command_repeat1] = STATE(2374), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_esac] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1683), - [anon_sym_SEMI_SEMI] = ACTIONS(1681), - [anon_sym_PIPE_AMP] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1681), - [sym__special_characters] = ACTIONS(5753), - [anon_sym_DQUOTE] = ACTIONS(5756), - [anon_sym_DOLLAR] = ACTIONS(5759), - [sym_raw_string] = ACTIONS(5762), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5765), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5768), - [anon_sym_BQUOTE] = ACTIONS(5771), - [anon_sym_LT_LPAREN] = ACTIONS(5774), - [anon_sym_GT_LPAREN] = ACTIONS(5774), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5777), - [sym_word] = ACTIONS(5780), - [anon_sym_LF] = ACTIONS(1681), - [anon_sym_AMP] = ACTIONS(1683), - }, - [2375] = { - [sym__simple_heredoc_body] = ACTIONS(1763), - [sym__heredoc_body_beginning] = ACTIONS(1763), - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_esac] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_LT_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT_LT] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - }, - [2376] = { - [aux_sym_concatenation_repeat1] = STATE(2376), - [sym__simple_heredoc_body] = ACTIONS(1763), - [sym__heredoc_body_beginning] = ACTIONS(1763), - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(5783), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_esac] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_EQ_TILDE] = ACTIONS(1765), - [anon_sym_EQ_EQ] = ACTIONS(1765), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_LT_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT_LT] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - }, - [2377] = { - [sym__simple_heredoc_body] = ACTIONS(1770), - [sym__heredoc_body_beginning] = ACTIONS(1770), - [sym_file_descriptor] = ACTIONS(1770), - [sym__concat] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_esac] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_SEMI_SEMI] = ACTIONS(1770), - [anon_sym_PIPE_AMP] = ACTIONS(1770), - [anon_sym_AMP_AMP] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1770), - [anon_sym_EQ_TILDE] = ACTIONS(1772), - [anon_sym_EQ_EQ] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1772), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_AMP_GT] = ACTIONS(1772), - [anon_sym_AMP_GT_GT] = ACTIONS(1770), - [anon_sym_LT_AMP] = ACTIONS(1770), - [anon_sym_GT_AMP] = ACTIONS(1770), - [anon_sym_LT_LT] = ACTIONS(1772), - [anon_sym_LT_LT_DASH] = ACTIONS(1770), - [anon_sym_LT_LT_LT] = ACTIONS(1770), - [sym__special_characters] = ACTIONS(1770), - [anon_sym_DQUOTE] = ACTIONS(1770), - [anon_sym_DOLLAR] = ACTIONS(1772), - [sym_raw_string] = ACTIONS(1770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), - [anon_sym_BQUOTE] = ACTIONS(1770), - [anon_sym_LT_LPAREN] = ACTIONS(1770), - [anon_sym_GT_LPAREN] = ACTIONS(1770), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1772), - [anon_sym_LF] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1772), - }, - [2378] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(5786), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), - }, - [2379] = { - [sym_concatenation] = STATE(2552), - [sym_string] = STATE(2551), - [sym_simple_expansion] = STATE(2551), - [sym_string_expansion] = STATE(2551), - [sym_expansion] = STATE(2551), - [sym_command_substitution] = STATE(2551), - [sym_process_substitution] = STATE(2551), - [anon_sym_RBRACE] = ACTIONS(5788), - [sym__special_characters] = ACTIONS(5790), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(5792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5792), - }, - [2380] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(5794), - [sym_comment] = ACTIONS(55), - }, - [2381] = { - [sym_concatenation] = STATE(2556), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2556), - [anon_sym_RBRACE] = ACTIONS(5796), - [anon_sym_EQ] = ACTIONS(5798), - [anon_sym_DASH] = ACTIONS(5798), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(5802), - [anon_sym_COLON] = ACTIONS(5798), - [anon_sym_COLON_QMARK] = ACTIONS(5798), - [anon_sym_COLON_DASH] = ACTIONS(5798), - [anon_sym_PERCENT] = ACTIONS(5798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2382] = { - [sym_concatenation] = STATE(2558), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2558), - [anon_sym_RBRACE] = ACTIONS(5788), - [anon_sym_EQ] = ACTIONS(5804), - [anon_sym_DASH] = ACTIONS(5804), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(5808), - [anon_sym_COLON] = ACTIONS(5804), - [anon_sym_COLON_QMARK] = ACTIONS(5804), - [anon_sym_COLON_DASH] = ACTIONS(5804), - [anon_sym_PERCENT] = ACTIONS(5804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2383] = { - [sym__simple_heredoc_body] = ACTIONS(1871), - [sym__heredoc_body_beginning] = ACTIONS(1871), - [sym_file_descriptor] = ACTIONS(1871), - [sym__concat] = ACTIONS(1871), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_esac] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_SEMI_SEMI] = ACTIONS(1871), - [anon_sym_PIPE_AMP] = ACTIONS(1871), - [anon_sym_AMP_AMP] = ACTIONS(1871), - [anon_sym_PIPE_PIPE] = ACTIONS(1871), - [anon_sym_EQ_TILDE] = ACTIONS(1873), - [anon_sym_EQ_EQ] = ACTIONS(1873), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_GT] = ACTIONS(1873), - [anon_sym_GT_GT] = ACTIONS(1871), - [anon_sym_AMP_GT] = ACTIONS(1873), - [anon_sym_AMP_GT_GT] = ACTIONS(1871), - [anon_sym_LT_AMP] = ACTIONS(1871), - [anon_sym_GT_AMP] = ACTIONS(1871), - [anon_sym_LT_LT] = ACTIONS(1873), - [anon_sym_LT_LT_DASH] = ACTIONS(1871), - [anon_sym_LT_LT_LT] = ACTIONS(1871), - [sym__special_characters] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1871), - [anon_sym_DOLLAR] = ACTIONS(1873), - [sym_raw_string] = ACTIONS(1871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), - [anon_sym_BQUOTE] = ACTIONS(1871), - [anon_sym_LT_LPAREN] = ACTIONS(1871), - [anon_sym_GT_LPAREN] = ACTIONS(1871), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1873), - [anon_sym_LF] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1873), - }, - [2384] = { - [sym_concatenation] = STATE(2561), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2561), - [sym_regex] = ACTIONS(5810), - [anon_sym_RBRACE] = ACTIONS(5812), - [anon_sym_EQ] = ACTIONS(5814), - [anon_sym_DASH] = ACTIONS(5814), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5816), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(5814), - [anon_sym_COLON_QMARK] = ACTIONS(5814), - [anon_sym_COLON_DASH] = ACTIONS(5814), - [anon_sym_PERCENT] = ACTIONS(5814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2385] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5812), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2386] = { - [sym__simple_heredoc_body] = ACTIONS(1919), - [sym__heredoc_body_beginning] = ACTIONS(1919), - [sym_file_descriptor] = ACTIONS(1919), - [sym__concat] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_esac] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_SEMI_SEMI] = ACTIONS(1919), - [anon_sym_PIPE_AMP] = ACTIONS(1919), - [anon_sym_AMP_AMP] = ACTIONS(1919), - [anon_sym_PIPE_PIPE] = ACTIONS(1919), - [anon_sym_EQ_TILDE] = ACTIONS(1921), - [anon_sym_EQ_EQ] = ACTIONS(1921), - [anon_sym_LT] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1921), - [anon_sym_GT_GT] = ACTIONS(1919), - [anon_sym_AMP_GT] = ACTIONS(1921), - [anon_sym_AMP_GT_GT] = ACTIONS(1919), - [anon_sym_LT_AMP] = ACTIONS(1919), - [anon_sym_GT_AMP] = ACTIONS(1919), - [anon_sym_LT_LT] = ACTIONS(1921), - [anon_sym_LT_LT_DASH] = ACTIONS(1919), - [anon_sym_LT_LT_LT] = ACTIONS(1919), - [sym__special_characters] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1921), - [sym_raw_string] = ACTIONS(1919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), - [anon_sym_BQUOTE] = ACTIONS(1919), - [anon_sym_LT_LPAREN] = ACTIONS(1919), - [anon_sym_GT_LPAREN] = ACTIONS(1919), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1921), - [anon_sym_LF] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1921), - }, - [2387] = { - [sym_concatenation] = STATE(2558), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2558), - [sym_regex] = ACTIONS(5818), - [anon_sym_RBRACE] = ACTIONS(5788), - [anon_sym_EQ] = ACTIONS(5804), - [anon_sym_DASH] = ACTIONS(5804), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(5804), - [anon_sym_COLON_QMARK] = ACTIONS(5804), - [anon_sym_COLON_DASH] = ACTIONS(5804), - [anon_sym_PERCENT] = ACTIONS(5804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2388] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5788), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2389] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(5820), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), - }, - [2390] = { - [sym__simple_heredoc_body] = ACTIONS(1927), - [sym__heredoc_body_beginning] = ACTIONS(1927), - [sym_file_descriptor] = ACTIONS(1927), - [sym__concat] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_esac] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = 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(1929), - [anon_sym_EQ_EQ] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1929), - [anon_sym_GT_GT] = ACTIONS(1927), - [anon_sym_AMP_GT] = ACTIONS(1929), - [anon_sym_AMP_GT_GT] = ACTIONS(1927), - [anon_sym_LT_AMP] = ACTIONS(1927), - [anon_sym_GT_AMP] = ACTIONS(1927), - [anon_sym_LT_LT] = ACTIONS(1929), - [anon_sym_LT_LT_DASH] = ACTIONS(1927), - [anon_sym_LT_LT_LT] = ACTIONS(1927), - [sym__special_characters] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1929), - [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(55), - [sym_word] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1927), - [anon_sym_AMP] = ACTIONS(1929), - }, - [2391] = { - [anon_sym_SEMI] = ACTIONS(5822), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(5820), - [anon_sym_SEMI_SEMI] = ACTIONS(5824), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5824), - [anon_sym_AMP] = ACTIONS(5822), - }, - [2392] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(5822), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(5820), - [anon_sym_SEMI_SEMI] = ACTIONS(5824), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(5824), - [anon_sym_AMP] = ACTIONS(5822), - }, - [2393] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(5820), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), - }, - [2394] = { - [anon_sym_SEMI] = ACTIONS(5826), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(5828), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(5820), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5828), - [anon_sym_AMP] = ACTIONS(5826), - }, - [2395] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(5826), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(5828), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(5820), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(5828), - [anon_sym_AMP] = ACTIONS(5826), - }, - [2396] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(5830), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), - }, - [2397] = { - [sym__simple_heredoc_body] = ACTIONS(1959), - [sym__heredoc_body_beginning] = ACTIONS(1959), - [sym_file_descriptor] = ACTIONS(1959), - [sym__concat] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_esac] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1959), - [anon_sym_PIPE_AMP] = ACTIONS(1959), - [anon_sym_AMP_AMP] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1959), - [anon_sym_EQ_TILDE] = ACTIONS(1961), - [anon_sym_EQ_EQ] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_AMP_GT] = ACTIONS(1961), - [anon_sym_AMP_GT_GT] = ACTIONS(1959), - [anon_sym_LT_AMP] = ACTIONS(1959), - [anon_sym_GT_AMP] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1961), - [anon_sym_LT_LT_DASH] = ACTIONS(1959), - [anon_sym_LT_LT_LT] = ACTIONS(1959), - [sym__special_characters] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), - [anon_sym_BQUOTE] = ACTIONS(1959), - [anon_sym_LT_LPAREN] = ACTIONS(1959), - [anon_sym_GT_LPAREN] = ACTIONS(1959), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1961), - }, - [2398] = { - [anon_sym_SEMI] = ACTIONS(5832), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(5830), - [anon_sym_SEMI_SEMI] = ACTIONS(5834), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5834), - [anon_sym_AMP] = ACTIONS(5832), - }, - [2399] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(5832), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(5830), - [anon_sym_SEMI_SEMI] = ACTIONS(5834), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(5834), - [anon_sym_AMP] = ACTIONS(5832), - }, - [2400] = { - [sym_compound_statement] = STATE(2568), - [anon_sym_LBRACE] = ACTIONS(595), - [sym_comment] = ACTIONS(55), - }, - [2401] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym_esac] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_SEMI_SEMI] = ACTIONS(1967), - [anon_sym_PIPE_AMP] = ACTIONS(1967), - [anon_sym_AMP_AMP] = ACTIONS(1967), - [anon_sym_PIPE_PIPE] = ACTIONS(1967), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1967), - [anon_sym_AMP] = ACTIONS(1969), - }, - [2402] = { - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_esac] = ACTIONS(1971), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_SEMI_SEMI] = ACTIONS(1971), - [anon_sym_PIPE_AMP] = ACTIONS(5085), - [anon_sym_AMP_AMP] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1971), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1973), - }, - [2403] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_esac] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_SEMI_SEMI] = ACTIONS(1971), - [anon_sym_PIPE_AMP] = ACTIONS(5085), - [anon_sym_AMP_AMP] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1973), - }, - [2404] = { - [sym_concatenation] = STATE(994), - [sym_string] = STATE(2570), - [sym_simple_expansion] = STATE(2570), - [sym_string_expansion] = STATE(2570), - [sym_expansion] = STATE(2570), - [sym_command_substitution] = STATE(2570), - [sym_process_substitution] = STATE(2570), - [sym__special_characters] = ACTIONS(5836), - [anon_sym_DQUOTE] = ACTIONS(5470), - [anon_sym_DOLLAR] = ACTIONS(5472), - [sym_raw_string] = ACTIONS(5838), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5478), - [anon_sym_BQUOTE] = ACTIONS(5480), - [anon_sym_LT_LPAREN] = ACTIONS(5482), - [anon_sym_GT_LPAREN] = ACTIONS(5482), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5838), - }, - [2405] = { - [sym__simple_heredoc_body] = ACTIONS(2003), - [sym__heredoc_body_beginning] = ACTIONS(2003), - [sym_file_descriptor] = ACTIONS(2003), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_esac] = ACTIONS(2005), - [anon_sym_PIPE] = ACTIONS(2005), - [anon_sym_SEMI_SEMI] = ACTIONS(2003), - [anon_sym_PIPE_AMP] = ACTIONS(2003), - [anon_sym_AMP_AMP] = ACTIONS(2003), - [anon_sym_PIPE_PIPE] = ACTIONS(2003), - [anon_sym_EQ_TILDE] = ACTIONS(2005), - [anon_sym_EQ_EQ] = ACTIONS(2005), - [anon_sym_LT] = ACTIONS(2005), - [anon_sym_GT] = ACTIONS(2005), - [anon_sym_GT_GT] = ACTIONS(2003), - [anon_sym_AMP_GT] = ACTIONS(2005), - [anon_sym_AMP_GT_GT] = ACTIONS(2003), - [anon_sym_LT_AMP] = ACTIONS(2003), - [anon_sym_GT_AMP] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2005), - [anon_sym_LT_LT_DASH] = ACTIONS(2003), - [anon_sym_LT_LT_LT] = ACTIONS(2003), - [sym__special_characters] = ACTIONS(2003), - [anon_sym_DQUOTE] = ACTIONS(2003), - [anon_sym_DOLLAR] = ACTIONS(2005), - [sym_raw_string] = ACTIONS(2003), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2003), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2003), - [anon_sym_BQUOTE] = ACTIONS(2003), - [anon_sym_LT_LPAREN] = ACTIONS(2003), - [anon_sym_GT_LPAREN] = ACTIONS(2003), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2005), - [anon_sym_LF] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(2005), - }, - [2406] = { - [aux_sym_concatenation_repeat1] = STATE(2190), - [sym__simple_heredoc_body] = ACTIONS(2007), - [sym__heredoc_body_beginning] = ACTIONS(2007), - [sym_file_descriptor] = ACTIONS(2007), - [sym__concat] = ACTIONS(5051), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_esac] = ACTIONS(2009), - [anon_sym_PIPE] = ACTIONS(2009), - [anon_sym_SEMI_SEMI] = ACTIONS(2007), - [anon_sym_PIPE_AMP] = ACTIONS(2007), - [anon_sym_AMP_AMP] = ACTIONS(2007), - [anon_sym_PIPE_PIPE] = ACTIONS(2007), - [anon_sym_EQ_TILDE] = ACTIONS(2009), - [anon_sym_EQ_EQ] = ACTIONS(2009), - [anon_sym_LT] = ACTIONS(2009), - [anon_sym_GT] = ACTIONS(2009), - [anon_sym_GT_GT] = ACTIONS(2007), - [anon_sym_AMP_GT] = ACTIONS(2009), - [anon_sym_AMP_GT_GT] = ACTIONS(2007), - [anon_sym_LT_AMP] = ACTIONS(2007), - [anon_sym_GT_AMP] = ACTIONS(2007), - [anon_sym_LT_LT] = ACTIONS(2009), - [anon_sym_LT_LT_DASH] = ACTIONS(2007), - [anon_sym_LT_LT_LT] = ACTIONS(2007), - [sym__special_characters] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2009), - [sym_raw_string] = ACTIONS(2007), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2007), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2007), - [anon_sym_BQUOTE] = ACTIONS(2007), - [anon_sym_LT_LPAREN] = ACTIONS(2007), - [anon_sym_GT_LPAREN] = ACTIONS(2007), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2009), - [anon_sym_LF] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2009), - }, - [2407] = { - [aux_sym_concatenation_repeat1] = STATE(2190), - [sym__simple_heredoc_body] = ACTIONS(2003), - [sym__heredoc_body_beginning] = ACTIONS(2003), - [sym_file_descriptor] = ACTIONS(2003), - [sym__concat] = ACTIONS(5051), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_esac] = ACTIONS(2005), - [anon_sym_PIPE] = ACTIONS(2005), - [anon_sym_SEMI_SEMI] = ACTIONS(2003), - [anon_sym_PIPE_AMP] = ACTIONS(2003), - [anon_sym_AMP_AMP] = ACTIONS(2003), - [anon_sym_PIPE_PIPE] = ACTIONS(2003), - [anon_sym_EQ_TILDE] = ACTIONS(2005), - [anon_sym_EQ_EQ] = ACTIONS(2005), - [anon_sym_LT] = ACTIONS(2005), - [anon_sym_GT] = ACTIONS(2005), - [anon_sym_GT_GT] = ACTIONS(2003), - [anon_sym_AMP_GT] = ACTIONS(2005), - [anon_sym_AMP_GT_GT] = ACTIONS(2003), - [anon_sym_LT_AMP] = ACTIONS(2003), - [anon_sym_GT_AMP] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2005), - [anon_sym_LT_LT_DASH] = ACTIONS(2003), - [anon_sym_LT_LT_LT] = ACTIONS(2003), - [sym__special_characters] = ACTIONS(2003), - [anon_sym_DQUOTE] = ACTIONS(2003), - [anon_sym_DOLLAR] = ACTIONS(2005), - [sym_raw_string] = ACTIONS(2003), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2003), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2003), - [anon_sym_BQUOTE] = ACTIONS(2003), - [anon_sym_LT_LPAREN] = ACTIONS(2003), - [anon_sym_GT_LPAREN] = ACTIONS(2003), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2005), - [anon_sym_LF] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(2005), - }, - [2408] = { - [aux_sym_concatenation_repeat1] = STATE(2572), - [sym__simple_heredoc_body] = ACTIONS(773), - [sym__heredoc_body_beginning] = ACTIONS(773), - [sym_file_descriptor] = ACTIONS(773), - [sym__concat] = ACTIONS(5840), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_esac] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(773), - [anon_sym_AMP_GT] = ACTIONS(777), - [anon_sym_AMP_GT_GT] = ACTIONS(773), - [anon_sym_LT_AMP] = ACTIONS(773), - [anon_sym_GT_AMP] = ACTIONS(773), - [anon_sym_LT_LT] = ACTIONS(777), - [anon_sym_LT_LT_DASH] = ACTIONS(773), - [anon_sym_LT_LT_LT] = ACTIONS(773), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(777), - }, - [2409] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(2575), - [anon_sym_DQUOTE] = ACTIONS(5842), - [anon_sym_DOLLAR] = ACTIONS(5844), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), - }, - [2410] = { - [sym_string] = STATE(2577), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_DQUOTE] = ACTIONS(5470), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_esac] = ACTIONS(5844), + [anon_sym_SEMI_SEMI] = ACTIONS(927), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(5846), + [anon_sym_DQUOTE] = ACTIONS(5848), [anon_sym_DOLLAR] = ACTIONS(5846), [sym_raw_string] = ACTIONS(5848), - [anon_sym_POUND] = ACTIONS(5846), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5850), - [anon_sym_STAR] = ACTIONS(5852), - [anon_sym_AT] = ACTIONS(5852), - [anon_sym_QMARK] = ACTIONS(5852), - [anon_sym_0] = ACTIONS(5850), - [anon_sym__] = ACTIONS(5850), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5848), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5848), + [anon_sym_BQUOTE] = ACTIONS(5848), + [anon_sym_LT_LPAREN] = ACTIONS(5848), + [anon_sym_GT_LPAREN] = ACTIONS(5848), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5846), + }, + [2371] = { + [anon_sym_esac] = ACTIONS(5844), + [sym__special_characters] = ACTIONS(5848), + [anon_sym_DQUOTE] = ACTIONS(5848), + [anon_sym_DOLLAR] = ACTIONS(5846), + [sym_raw_string] = ACTIONS(5848), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5848), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5848), + [anon_sym_BQUOTE] = ACTIONS(5848), + [anon_sym_LT_LPAREN] = ACTIONS(5848), + [anon_sym_GT_LPAREN] = ACTIONS(5848), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5846), + }, + [2372] = { + [sym_file_redirect] = STATE(2170), + [sym_heredoc_redirect] = STATE(2170), + [sym_heredoc_body] = STATE(2169), + [sym_herestring_redirect] = STATE(2170), + [aux_sym_redirected_statement_repeat1] = STATE(2170), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(5031), + [anon_sym_SEMI] = ACTIONS(5033), + [anon_sym_esac] = ACTIONS(5850), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_SEMI_SEMI] = ACTIONS(5852), + [anon_sym_PIPE_AMP] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE_PIPE] = ACTIONS(5043), + [anon_sym_LT] = ACTIONS(5045), + [anon_sym_GT] = ACTIONS(5045), + [anon_sym_GT_GT] = ACTIONS(5047), + [anon_sym_AMP_GT] = ACTIONS(5045), + [anon_sym_AMP_GT_GT] = ACTIONS(5047), + [anon_sym_LT_AMP] = ACTIONS(5047), + [anon_sym_GT_AMP] = ACTIONS(5047), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(5049), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5051), + [anon_sym_AMP] = ACTIONS(5033), + }, + [2373] = { + [sym_file_redirect] = STATE(2170), + [sym_heredoc_redirect] = STATE(2170), + [sym_heredoc_body] = STATE(2169), + [sym_herestring_redirect] = STATE(2170), + [aux_sym_redirected_statement_repeat1] = STATE(2170), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5033), + [anon_sym_esac] = ACTIONS(5844), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_SEMI_SEMI] = ACTIONS(5852), + [anon_sym_PIPE_AMP] = ACTIONS(5041), + [anon_sym_AMP_AMP] = ACTIONS(5043), + [anon_sym_PIPE_PIPE] = ACTIONS(5043), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(5049), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5051), + [anon_sym_AMP] = ACTIONS(5033), + }, + [2374] = { + [sym__special_characters] = ACTIONS(4961), + [anon_sym_DQUOTE] = ACTIONS(4961), + [anon_sym_DOLLAR] = ACTIONS(4963), + [sym_raw_string] = ACTIONS(4961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4961), + [anon_sym_BQUOTE] = ACTIONS(4961), + [anon_sym_LT_LPAREN] = ACTIONS(4961), + [anon_sym_GT_LPAREN] = ACTIONS(4961), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4961), + }, + [2375] = { + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_heredoc_body] = STATE(979), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(5854), + [anon_sym_PIPE_AMP] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_AMP_GT] = ACTIONS(507), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(511), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2054), + }, + [2376] = { + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_heredoc_body] = STATE(979), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(5854), + [anon_sym_PIPE_AMP] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(511), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2054), + }, + [2377] = { + [sym__terminated_statement] = STATE(2539), + [sym_redirected_statement] = STATE(2537), + [sym_for_statement] = STATE(2537), + [sym_c_style_for_statement] = STATE(2537), + [sym_while_statement] = STATE(2537), + [sym_if_statement] = STATE(2537), + [sym_case_statement] = STATE(2537), + [sym_function_definition] = STATE(2537), + [sym_compound_statement] = STATE(2537), + [sym_subshell] = STATE(2537), + [sym_pipeline] = STATE(2537), + [sym_list] = STATE(2537), + [sym_negated_command] = STATE(2537), + [sym_test_command] = STATE(2537), + [sym_declaration_command] = STATE(2537), + [sym_unset_command] = STATE(2537), + [sym_command] = STATE(2537), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(2538), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(2539), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_SEMI_SEMI] = ACTIONS(5856), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_typeset] = ACTIONS(101), + [anon_sym_export] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_local] = ACTIONS(101), + [anon_sym_unset] = ACTIONS(103), + [anon_sym_unsetenv] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), + }, + [2378] = { + [sym__terminated_statement] = STATE(2540), + [sym_redirected_statement] = STATE(2537), + [sym_for_statement] = STATE(2537), + [sym_c_style_for_statement] = STATE(2537), + [sym_while_statement] = STATE(2537), + [sym_if_statement] = STATE(2537), + [sym_case_statement] = STATE(2537), + [sym_function_definition] = STATE(2537), + [sym_compound_statement] = STATE(2537), + [sym_subshell] = STATE(2537), + [sym_pipeline] = STATE(2537), + [sym_list] = STATE(2537), + [sym_negated_command] = STATE(2537), + [sym_test_command] = STATE(2537), + [sym_declaration_command] = STATE(2537), + [sym_unset_command] = STATE(2537), + [sym_command] = STATE(2537), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(2538), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(2540), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_SEMI_SEMI] = ACTIONS(5856), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_typeset] = ACTIONS(101), + [anon_sym_export] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_local] = ACTIONS(101), + [anon_sym_unset] = ACTIONS(103), + [anon_sym_unsetenv] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), + }, + [2379] = { + [sym__special_characters] = ACTIONS(5070), + [anon_sym_DQUOTE] = ACTIONS(5070), + [anon_sym_DOLLAR] = ACTIONS(5072), + [sym_raw_string] = ACTIONS(5070), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5070), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5070), + [anon_sym_BQUOTE] = ACTIONS(5070), + [anon_sym_LT_LPAREN] = ACTIONS(5070), + [anon_sym_GT_LPAREN] = ACTIONS(5070), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5070), + }, + [2380] = { + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_heredoc_body] = STATE(979), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(5858), + [anon_sym_PIPE_AMP] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_AMP_GT] = ACTIONS(507), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(511), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2054), + }, + [2381] = { + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_heredoc_body] = STATE(979), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(5858), + [anon_sym_PIPE_AMP] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(511), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2054), + }, + [2382] = { + [sym__terminated_statement] = STATE(2539), + [sym_redirected_statement] = STATE(2543), + [sym_for_statement] = STATE(2543), + [sym_c_style_for_statement] = STATE(2543), + [sym_while_statement] = STATE(2543), + [sym_if_statement] = STATE(2543), + [sym_case_statement] = STATE(2543), + [sym_function_definition] = STATE(2543), + [sym_compound_statement] = STATE(2543), + [sym_subshell] = STATE(2543), + [sym_pipeline] = STATE(2543), + [sym_list] = STATE(2543), + [sym_negated_command] = STATE(2543), + [sym_test_command] = STATE(2543), + [sym_declaration_command] = STATE(2543), + [sym_unset_command] = STATE(2543), + [sym_command] = STATE(2543), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(2544), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(2539), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_SEMI_SEMI] = ACTIONS(5860), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_typeset] = ACTIONS(101), + [anon_sym_export] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_local] = ACTIONS(101), + [anon_sym_unset] = ACTIONS(103), + [anon_sym_unsetenv] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), + }, + [2383] = { + [sym__terminated_statement] = STATE(2545), + [sym_redirected_statement] = STATE(2543), + [sym_for_statement] = STATE(2543), + [sym_c_style_for_statement] = STATE(2543), + [sym_while_statement] = STATE(2543), + [sym_if_statement] = STATE(2543), + [sym_case_statement] = STATE(2543), + [sym_function_definition] = STATE(2543), + [sym_compound_statement] = STATE(2543), + [sym_subshell] = STATE(2543), + [sym_pipeline] = STATE(2543), + [sym_list] = STATE(2543), + [sym_negated_command] = STATE(2543), + [sym_test_command] = STATE(2543), + [sym_declaration_command] = STATE(2543), + [sym_unset_command] = STATE(2543), + [sym_command] = STATE(2543), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(2544), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(2545), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_SEMI_SEMI] = ACTIONS(5860), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_typeset] = ACTIONS(101), + [anon_sym_export] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_local] = ACTIONS(101), + [anon_sym_unset] = ACTIONS(103), + [anon_sym_unsetenv] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), + }, + [2384] = { + [sym__concat] = ACTIONS(4687), + [anon_sym_RBRACE] = ACTIONS(4687), + [sym_comment] = ACTIONS(57), + }, + [2385] = { + [sym__concat] = ACTIONS(4691), + [anon_sym_RBRACE] = ACTIONS(4691), + [sym_comment] = ACTIONS(57), + }, + [2386] = { + [sym__concat] = ACTIONS(4695), + [anon_sym_RBRACE] = ACTIONS(4695), + [sym_comment] = ACTIONS(57), + }, + [2387] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5862), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2388] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5864), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2389] = { + [sym__concat] = ACTIONS(4731), + [anon_sym_RBRACE] = ACTIONS(4731), + [sym_comment] = ACTIONS(57), + }, + [2390] = { + [sym__concat] = ACTIONS(4751), + [anon_sym_RBRACE] = ACTIONS(4751), + [sym_comment] = ACTIONS(57), + }, + [2391] = { + [sym__concat] = ACTIONS(4755), + [anon_sym_RBRACE] = ACTIONS(4755), + [sym_comment] = ACTIONS(57), + }, + [2392] = { + [sym__concat] = ACTIONS(5168), + [anon_sym_RBRACE] = ACTIONS(5168), + [anon_sym_EQ] = ACTIONS(5170), + [anon_sym_DASH] = ACTIONS(5170), + [sym__special_characters] = ACTIONS(5170), + [anon_sym_DQUOTE] = ACTIONS(5168), + [anon_sym_DOLLAR] = ACTIONS(5170), + [sym_raw_string] = ACTIONS(5168), + [anon_sym_POUND] = ACTIONS(5168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5168), + [anon_sym_COLON] = ACTIONS(5170), + [anon_sym_COLON_QMARK] = ACTIONS(5170), + [anon_sym_COLON_DASH] = ACTIONS(5170), + [anon_sym_PERCENT] = ACTIONS(5170), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5168), + [anon_sym_BQUOTE] = ACTIONS(5168), + [anon_sym_LT_LPAREN] = ACTIONS(5168), + [anon_sym_GT_LPAREN] = ACTIONS(5168), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(5170), + }, + [2393] = { + [sym__concat] = ACTIONS(5172), + [anon_sym_RBRACE] = ACTIONS(5172), + [anon_sym_EQ] = ACTIONS(5174), + [anon_sym_DASH] = ACTIONS(5174), + [sym__special_characters] = ACTIONS(5174), + [anon_sym_DQUOTE] = ACTIONS(5172), + [anon_sym_DOLLAR] = ACTIONS(5174), + [sym_raw_string] = ACTIONS(5172), + [anon_sym_POUND] = ACTIONS(5172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5172), + [anon_sym_COLON] = ACTIONS(5174), + [anon_sym_COLON_QMARK] = ACTIONS(5174), + [anon_sym_COLON_DASH] = ACTIONS(5174), + [anon_sym_PERCENT] = ACTIONS(5174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5172), + [anon_sym_BQUOTE] = ACTIONS(5172), + [anon_sym_LT_LPAREN] = ACTIONS(5172), + [anon_sym_GT_LPAREN] = ACTIONS(5172), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(5174), + }, + [2394] = { + [sym__heredoc_body_middle] = ACTIONS(5168), + [sym__heredoc_body_end] = ACTIONS(5168), + [anon_sym_DOLLAR] = ACTIONS(5170), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5168), + [sym_comment] = ACTIONS(57), + }, + [2395] = { + [sym__heredoc_body_middle] = ACTIONS(5172), + [sym__heredoc_body_end] = ACTIONS(5172), + [anon_sym_DOLLAR] = ACTIONS(5174), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5172), + [sym_comment] = ACTIONS(57), + }, + [2396] = { + [sym__concat] = ACTIONS(5168), + [anon_sym_RPAREN] = ACTIONS(5168), + [sym__special_characters] = ACTIONS(5168), + [anon_sym_DQUOTE] = ACTIONS(5168), + [anon_sym_DOLLAR] = ACTIONS(5170), + [sym_raw_string] = ACTIONS(5168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5168), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5168), + [anon_sym_BQUOTE] = ACTIONS(5168), + [anon_sym_LT_LPAREN] = ACTIONS(5168), + [anon_sym_GT_LPAREN] = ACTIONS(5168), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5168), + }, + [2397] = { + [sym__concat] = ACTIONS(5172), + [anon_sym_RPAREN] = ACTIONS(5172), + [sym__special_characters] = ACTIONS(5172), + [anon_sym_DQUOTE] = ACTIONS(5172), + [anon_sym_DOLLAR] = ACTIONS(5174), + [sym_raw_string] = ACTIONS(5172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5172), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5172), + [anon_sym_BQUOTE] = ACTIONS(5172), + [anon_sym_LT_LPAREN] = ACTIONS(5172), + [anon_sym_GT_LPAREN] = ACTIONS(5172), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5172), + }, + [2398] = { + [sym__simple_heredoc_body] = ACTIONS(5866), + [sym__heredoc_body_beginning] = ACTIONS(5866), + [sym_file_descriptor] = ACTIONS(5866), + [ts_builtin_sym_end] = ACTIONS(5866), + [anon_sym_SEMI] = ACTIONS(5868), + [anon_sym_esac] = ACTIONS(5866), + [anon_sym_PIPE] = ACTIONS(5868), + [anon_sym_RPAREN] = ACTIONS(5866), + [anon_sym_SEMI_SEMI] = ACTIONS(5866), + [anon_sym_PIPE_AMP] = ACTIONS(5866), + [anon_sym_AMP_AMP] = ACTIONS(5866), + [anon_sym_PIPE_PIPE] = ACTIONS(5866), + [anon_sym_LT] = ACTIONS(5868), + [anon_sym_GT] = ACTIONS(5868), + [anon_sym_GT_GT] = ACTIONS(5866), + [anon_sym_AMP_GT] = ACTIONS(5868), + [anon_sym_AMP_GT_GT] = ACTIONS(5866), + [anon_sym_LT_AMP] = ACTIONS(5866), + [anon_sym_GT_AMP] = ACTIONS(5866), + [anon_sym_LT_LT] = ACTIONS(5868), + [anon_sym_LT_LT_DASH] = ACTIONS(5866), + [anon_sym_LT_LT_LT] = ACTIONS(5866), + [anon_sym_BQUOTE] = ACTIONS(5866), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5866), + [anon_sym_AMP] = ACTIONS(5868), + }, + [2399] = { + [sym__concat] = ACTIONS(5168), + [anon_sym_SEMI] = ACTIONS(5170), + [anon_sym_SEMI_SEMI] = ACTIONS(5168), + [sym__special_characters] = ACTIONS(5168), + [anon_sym_DQUOTE] = ACTIONS(5168), + [anon_sym_DOLLAR] = ACTIONS(5170), + [sym_raw_string] = ACTIONS(5168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5168), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5168), + [anon_sym_BQUOTE] = ACTIONS(5168), + [anon_sym_LT_LPAREN] = ACTIONS(5168), + [anon_sym_GT_LPAREN] = ACTIONS(5168), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5170), + [anon_sym_LF] = ACTIONS(5168), + [anon_sym_AMP] = ACTIONS(5168), + }, + [2400] = { + [sym__concat] = ACTIONS(5172), + [anon_sym_SEMI] = ACTIONS(5174), + [anon_sym_SEMI_SEMI] = ACTIONS(5172), + [sym__special_characters] = ACTIONS(5172), + [anon_sym_DQUOTE] = ACTIONS(5172), + [anon_sym_DOLLAR] = ACTIONS(5174), + [sym_raw_string] = ACTIONS(5172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5172), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5172), + [anon_sym_BQUOTE] = ACTIONS(5172), + [anon_sym_LT_LPAREN] = ACTIONS(5172), + [anon_sym_GT_LPAREN] = ACTIONS(5172), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5174), + [anon_sym_LF] = ACTIONS(5172), + [anon_sym_AMP] = ACTIONS(5172), + }, + [2401] = { + [sym__simple_heredoc_body] = ACTIONS(2076), + [sym__heredoc_body_beginning] = ACTIONS(2076), + [sym_file_descriptor] = ACTIONS(2076), + [sym_variable_name] = ACTIONS(2076), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_esac] = ACTIONS(2078), + [anon_sym_PIPE] = ACTIONS(2078), + [anon_sym_SEMI_SEMI] = ACTIONS(2076), + [anon_sym_PIPE_AMP] = ACTIONS(2076), + [anon_sym_AMP_AMP] = ACTIONS(2076), + [anon_sym_PIPE_PIPE] = ACTIONS(2076), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_GT] = ACTIONS(2078), + [anon_sym_GT_GT] = ACTIONS(2076), + [anon_sym_AMP_GT] = ACTIONS(2078), + [anon_sym_AMP_GT_GT] = ACTIONS(2076), + [anon_sym_LT_AMP] = ACTIONS(2076), + [anon_sym_GT_AMP] = ACTIONS(2076), + [anon_sym_LT_LT] = ACTIONS(2078), + [anon_sym_LT_LT_DASH] = ACTIONS(2076), + [anon_sym_LT_LT_LT] = ACTIONS(2076), + [sym__special_characters] = ACTIONS(2076), + [anon_sym_DQUOTE] = ACTIONS(2076), + [anon_sym_DOLLAR] = ACTIONS(2078), + [sym_raw_string] = ACTIONS(2076), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2076), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2076), + [anon_sym_BQUOTE] = ACTIONS(2076), + [anon_sym_LT_LPAREN] = ACTIONS(2076), + [anon_sym_GT_LPAREN] = ACTIONS(2076), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2078), + [anon_sym_LF] = ACTIONS(2076), + [anon_sym_AMP] = ACTIONS(2078), + }, + [2402] = { + [sym_concatenation] = STATE(1007), + [sym_string] = STATE(537), + [sym_simple_expansion] = STATE(537), + [sym_string_expansion] = STATE(537), + [sym_expansion] = STATE(537), + [sym_command_substitution] = STATE(537), + [sym_process_substitution] = STATE(537), + [aux_sym_for_statement_repeat1] = STATE(1007), + [anon_sym_RPAREN] = ACTIONS(5870), + [sym__special_characters] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1095), + [sym_raw_string] = ACTIONS(1097), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1099), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1103), + [anon_sym_LT_LPAREN] = ACTIONS(1105), + [anon_sym_GT_LPAREN] = ACTIONS(1105), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1097), + }, + [2403] = { + [sym_string] = STATE(2549), + [sym_simple_expansion] = STATE(2549), + [sym_string_expansion] = STATE(2549), + [sym_expansion] = STATE(2549), + [sym_command_substitution] = STATE(2549), + [sym_process_substitution] = STATE(2549), + [sym__special_characters] = ACTIONS(5872), + [anon_sym_DQUOTE] = ACTIONS(5276), + [anon_sym_DOLLAR] = ACTIONS(5278), + [sym_raw_string] = ACTIONS(5872), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5282), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5284), + [anon_sym_BQUOTE] = ACTIONS(5286), + [anon_sym_LT_LPAREN] = ACTIONS(5288), + [anon_sym_GT_LPAREN] = ACTIONS(5288), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5872), + }, + [2404] = { + [aux_sym_concatenation_repeat1] = STATE(2550), + [sym__simple_heredoc_body] = ACTIONS(779), + [sym__heredoc_body_beginning] = ACTIONS(779), + [sym_file_descriptor] = ACTIONS(779), + [sym__concat] = ACTIONS(5508), + [sym_variable_name] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_esac] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [anon_sym_PIPE_AMP] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_AMP_GT] = ACTIONS(781), + [anon_sym_AMP_GT_GT] = ACTIONS(779), + [anon_sym_LT_AMP] = ACTIONS(779), + [anon_sym_GT_AMP] = ACTIONS(779), + [anon_sym_LT_LT] = ACTIONS(781), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_LT] = ACTIONS(779), + [sym__special_characters] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(781), + [sym_raw_string] = ACTIONS(779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(779), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(779), + [anon_sym_BQUOTE] = ACTIONS(779), + [anon_sym_LT_LPAREN] = ACTIONS(779), + [anon_sym_GT_LPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(781), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(781), + }, + [2405] = { + [sym__simple_heredoc_body] = ACTIONS(783), + [sym__heredoc_body_beginning] = ACTIONS(783), + [sym_file_descriptor] = ACTIONS(783), + [sym__concat] = ACTIONS(783), + [sym_variable_name] = ACTIONS(783), + [anon_sym_SEMI] = ACTIONS(785), + [anon_sym_esac] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_SEMI_SEMI] = ACTIONS(783), + [anon_sym_PIPE_AMP] = ACTIONS(783), + [anon_sym_AMP_AMP] = ACTIONS(783), + [anon_sym_PIPE_PIPE] = ACTIONS(783), + [anon_sym_LT] = ACTIONS(785), + [anon_sym_GT] = ACTIONS(785), + [anon_sym_GT_GT] = ACTIONS(783), + [anon_sym_AMP_GT] = ACTIONS(785), + [anon_sym_AMP_GT_GT] = ACTIONS(783), + [anon_sym_LT_AMP] = ACTIONS(783), + [anon_sym_GT_AMP] = ACTIONS(783), + [anon_sym_LT_LT] = ACTIONS(785), + [anon_sym_LT_LT_DASH] = ACTIONS(783), + [anon_sym_LT_LT_LT] = ACTIONS(783), + [sym__special_characters] = ACTIONS(783), + [anon_sym_DQUOTE] = ACTIONS(783), + [anon_sym_DOLLAR] = ACTIONS(785), + [sym_raw_string] = ACTIONS(783), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(783), + [anon_sym_BQUOTE] = ACTIONS(783), + [anon_sym_LT_LPAREN] = ACTIONS(783), + [anon_sym_GT_LPAREN] = ACTIONS(783), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(785), + [anon_sym_LF] = ACTIONS(783), + [anon_sym_AMP] = ACTIONS(785), + }, + [2406] = { + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(5874), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + }, + [2407] = { + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(455), + [anon_sym_DQUOTE] = ACTIONS(5874), + [anon_sym_DOLLAR] = ACTIONS(5876), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), + }, + [2408] = { + [sym__simple_heredoc_body] = ACTIONS(817), + [sym__heredoc_body_beginning] = ACTIONS(817), + [sym_file_descriptor] = ACTIONS(817), + [sym__concat] = ACTIONS(817), + [sym_variable_name] = ACTIONS(817), + [anon_sym_SEMI] = ACTIONS(819), + [anon_sym_esac] = ACTIONS(819), + [anon_sym_PIPE] = ACTIONS(819), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_PIPE_AMP] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [anon_sym_LT_LT] = ACTIONS(819), + [anon_sym_LT_LT_DASH] = ACTIONS(817), + [anon_sym_LT_LT_LT] = ACTIONS(817), + [sym__special_characters] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(817), + [anon_sym_DOLLAR] = ACTIONS(819), + [sym_raw_string] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), + [anon_sym_BQUOTE] = ACTIONS(817), + [anon_sym_LT_LPAREN] = ACTIONS(817), + [anon_sym_GT_LPAREN] = ACTIONS(817), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(819), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(819), + }, + [2409] = { + [sym__simple_heredoc_body] = ACTIONS(821), + [sym__heredoc_body_beginning] = ACTIONS(821), + [sym_file_descriptor] = ACTIONS(821), + [sym__concat] = ACTIONS(821), + [sym_variable_name] = ACTIONS(821), + [anon_sym_SEMI] = ACTIONS(823), + [anon_sym_esac] = ACTIONS(823), + [anon_sym_PIPE] = ACTIONS(823), + [anon_sym_SEMI_SEMI] = ACTIONS(821), + [anon_sym_PIPE_AMP] = ACTIONS(821), + [anon_sym_AMP_AMP] = ACTIONS(821), + [anon_sym_PIPE_PIPE] = ACTIONS(821), + [anon_sym_LT] = ACTIONS(823), + [anon_sym_GT] = ACTIONS(823), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_AMP_GT] = ACTIONS(823), + [anon_sym_AMP_GT_GT] = ACTIONS(821), + [anon_sym_LT_AMP] = ACTIONS(821), + [anon_sym_GT_AMP] = ACTIONS(821), + [anon_sym_LT_LT] = ACTIONS(823), + [anon_sym_LT_LT_DASH] = ACTIONS(821), + [anon_sym_LT_LT_LT] = ACTIONS(821), + [sym__special_characters] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(823), + [sym_raw_string] = ACTIONS(821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(821), + [anon_sym_BQUOTE] = ACTIONS(821), + [anon_sym_LT_LPAREN] = ACTIONS(821), + [anon_sym_GT_LPAREN] = ACTIONS(821), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(823), + [anon_sym_LF] = ACTIONS(821), + [anon_sym_AMP] = ACTIONS(823), + }, + [2410] = { + [sym__simple_heredoc_body] = ACTIONS(825), + [sym__heredoc_body_beginning] = ACTIONS(825), + [sym_file_descriptor] = ACTIONS(825), + [sym__concat] = ACTIONS(825), + [sym_variable_name] = ACTIONS(825), + [anon_sym_SEMI] = ACTIONS(827), + [anon_sym_esac] = ACTIONS(827), + [anon_sym_PIPE] = ACTIONS(827), + [anon_sym_SEMI_SEMI] = ACTIONS(825), + [anon_sym_PIPE_AMP] = ACTIONS(825), + [anon_sym_AMP_AMP] = ACTIONS(825), + [anon_sym_PIPE_PIPE] = ACTIONS(825), + [anon_sym_LT] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_GT_GT] = ACTIONS(825), + [anon_sym_AMP_GT] = ACTIONS(827), + [anon_sym_AMP_GT_GT] = ACTIONS(825), + [anon_sym_LT_AMP] = ACTIONS(825), + [anon_sym_GT_AMP] = ACTIONS(825), + [anon_sym_LT_LT] = ACTIONS(827), + [anon_sym_LT_LT_DASH] = ACTIONS(825), + [anon_sym_LT_LT_LT] = ACTIONS(825), + [sym__special_characters] = ACTIONS(825), + [anon_sym_DQUOTE] = ACTIONS(825), + [anon_sym_DOLLAR] = ACTIONS(827), + [sym_raw_string] = ACTIONS(825), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(825), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(825), + [anon_sym_BQUOTE] = ACTIONS(825), + [anon_sym_LT_LPAREN] = ACTIONS(825), + [anon_sym_GT_LPAREN] = ACTIONS(825), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(825), + [anon_sym_AMP] = ACTIONS(827), }, [2411] = { - [aux_sym_concatenation_repeat1] = STATE(2572), - [sym__simple_heredoc_body] = ACTIONS(791), - [sym__heredoc_body_beginning] = ACTIONS(791), - [sym_file_descriptor] = ACTIONS(791), - [sym__concat] = ACTIONS(5840), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_esac] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_SEMI_SEMI] = ACTIONS(791), - [anon_sym_PIPE_AMP] = ACTIONS(791), - [anon_sym_AMP_AMP] = ACTIONS(791), - [anon_sym_PIPE_PIPE] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_GT_GT] = ACTIONS(791), - [anon_sym_AMP_GT] = ACTIONS(793), - [anon_sym_AMP_GT_GT] = ACTIONS(791), - [anon_sym_LT_AMP] = ACTIONS(791), - [anon_sym_GT_AMP] = ACTIONS(791), - [anon_sym_LT_LT] = ACTIONS(793), - [anon_sym_LT_LT_DASH] = ACTIONS(791), - [anon_sym_LT_LT_LT] = ACTIONS(791), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_AMP] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(5878), + [sym_comment] = ACTIONS(57), }, [2412] = { - [sym_subscript] = STATE(2582), - [sym_variable_name] = ACTIONS(5854), - [anon_sym_BANG] = ACTIONS(5856), - [anon_sym_DASH] = ACTIONS(5858), - [anon_sym_DOLLAR] = ACTIONS(5858), - [anon_sym_POUND] = ACTIONS(5856), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5860), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_AT] = ACTIONS(5862), - [anon_sym_QMARK] = ACTIONS(5862), - [anon_sym_0] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5860), + [sym_subscript] = STATE(2556), + [sym_variable_name] = ACTIONS(5880), + [anon_sym_DASH] = ACTIONS(5882), + [anon_sym_DOLLAR] = ACTIONS(5882), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5884), + [anon_sym_STAR] = ACTIONS(5886), + [anon_sym_AT] = ACTIONS(5886), + [anon_sym_QMARK] = ACTIONS(5886), + [anon_sym_0] = ACTIONS(5884), + [anon_sym__] = ACTIONS(5884), }, [2413] = { - [sym__terminated_statement] = STATE(2585), - [sym_for_statement] = STATE(2583), - [sym_c_style_for_statement] = STATE(2583), - [sym_while_statement] = STATE(2583), - [sym_if_statement] = STATE(2583), - [sym_case_statement] = STATE(2583), - [sym_function_definition] = STATE(2583), - [sym_subshell] = STATE(2583), - [sym_pipeline] = STATE(2583), - [sym_list] = STATE(2583), - [sym_negated_command] = STATE(2583), - [sym_test_command] = STATE(2583), - [sym_declaration_command] = STATE(2583), - [sym_unset_command] = STATE(2583), - [sym_command] = STATE(2583), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(2584), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(2585), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_concatenation] = STATE(2559), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2559), + [anon_sym_RBRACE] = ACTIONS(5888), + [anon_sym_EQ] = ACTIONS(5890), + [anon_sym_DASH] = ACTIONS(5890), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(5894), + [anon_sym_COLON] = ACTIONS(5890), + [anon_sym_COLON_QMARK] = ACTIONS(5890), + [anon_sym_COLON_DASH] = ACTIONS(5890), + [anon_sym_PERCENT] = ACTIONS(5890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2414] = { - [sym__terminated_statement] = STATE(2588), - [sym_for_statement] = STATE(2586), - [sym_c_style_for_statement] = STATE(2586), - [sym_while_statement] = STATE(2586), - [sym_if_statement] = STATE(2586), - [sym_case_statement] = STATE(2586), - [sym_function_definition] = STATE(2586), - [sym_subshell] = STATE(2586), - [sym_pipeline] = STATE(2586), - [sym_list] = STATE(2586), - [sym_negated_command] = STATE(2586), - [sym_test_command] = STATE(2586), - [sym_declaration_command] = STATE(2586), - [sym_unset_command] = STATE(2586), - [sym_command] = STATE(2586), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(2587), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(2588), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym_concatenation] = STATE(2562), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2562), + [anon_sym_RBRACE] = ACTIONS(5896), + [anon_sym_EQ] = ACTIONS(5898), + [anon_sym_DASH] = ACTIONS(5898), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5900), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(5902), + [anon_sym_COLON] = ACTIONS(5898), + [anon_sym_COLON_QMARK] = ACTIONS(5898), + [anon_sym_COLON_DASH] = ACTIONS(5898), + [anon_sym_PERCENT] = ACTIONS(5898), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2415] = { - [sym__terminated_statement] = STATE(2591), - [sym_for_statement] = STATE(2589), - [sym_c_style_for_statement] = STATE(2589), - [sym_while_statement] = STATE(2589), - [sym_if_statement] = STATE(2589), - [sym_case_statement] = STATE(2589), - [sym_function_definition] = STATE(2589), - [sym_subshell] = STATE(2589), - [sym_pipeline] = STATE(2589), - [sym_list] = STATE(2589), - [sym_negated_command] = STATE(2589), - [sym_test_command] = STATE(2589), - [sym_declaration_command] = STATE(2589), - [sym_unset_command] = STATE(2589), - [sym_command] = STATE(2589), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(2590), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(2591), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2565), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(5904), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5906), + [anon_sym_SEMI_SEMI] = ACTIONS(5908), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5908), + [anon_sym_AMP] = ACTIONS(5904), }, [2416] = { - [aux_sym_concatenation_repeat1] = STATE(2572), - [sym__simple_heredoc_body] = ACTIONS(2015), - [sym__heredoc_body_beginning] = ACTIONS(2015), - [sym_file_descriptor] = ACTIONS(2015), - [sym__concat] = ACTIONS(5840), - [anon_sym_SEMI] = ACTIONS(2017), - [anon_sym_esac] = ACTIONS(2015), - [anon_sym_PIPE] = ACTIONS(2017), - [anon_sym_SEMI_SEMI] = ACTIONS(2015), - [anon_sym_PIPE_AMP] = ACTIONS(2015), - [anon_sym_AMP_AMP] = ACTIONS(2015), - [anon_sym_PIPE_PIPE] = ACTIONS(2015), - [anon_sym_LT] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2017), - [anon_sym_GT_GT] = ACTIONS(2015), - [anon_sym_AMP_GT] = ACTIONS(2017), - [anon_sym_AMP_GT_GT] = ACTIONS(2015), - [anon_sym_LT_AMP] = ACTIONS(2015), - [anon_sym_GT_AMP] = ACTIONS(2015), - [anon_sym_LT_LT] = ACTIONS(2017), - [anon_sym_LT_LT_DASH] = ACTIONS(2015), - [anon_sym_LT_LT_LT] = ACTIONS(2015), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2017), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2565), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5904), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5906), + [anon_sym_SEMI_SEMI] = ACTIONS(5908), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5908), + [anon_sym_AMP] = ACTIONS(5904), }, [2417] = { - [aux_sym_concatenation_repeat1] = STATE(2572), - [sym__simple_heredoc_body] = ACTIONS(2019), - [sym__heredoc_body_beginning] = ACTIONS(2019), - [sym_file_descriptor] = ACTIONS(2019), - [sym__concat] = ACTIONS(5840), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_esac] = ACTIONS(2019), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_SEMI_SEMI] = ACTIONS(2019), - [anon_sym_PIPE_AMP] = ACTIONS(2019), - [anon_sym_AMP_AMP] = ACTIONS(2019), - [anon_sym_PIPE_PIPE] = ACTIONS(2019), - [anon_sym_LT] = ACTIONS(2021), - [anon_sym_GT] = ACTIONS(2021), - [anon_sym_GT_GT] = ACTIONS(2019), - [anon_sym_AMP_GT] = ACTIONS(2021), - [anon_sym_AMP_GT_GT] = ACTIONS(2019), - [anon_sym_LT_AMP] = ACTIONS(2019), - [anon_sym_GT_AMP] = ACTIONS(2019), - [anon_sym_LT_LT] = ACTIONS(2021), - [anon_sym_LT_LT_DASH] = ACTIONS(2019), - [anon_sym_LT_LT_LT] = ACTIONS(2019), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2019), - [anon_sym_AMP] = ACTIONS(2021), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(2566), + [sym_for_statement] = STATE(2566), + [sym_c_style_for_statement] = STATE(2566), + [sym_while_statement] = STATE(2566), + [sym_if_statement] = STATE(2566), + [sym_case_statement] = STATE(2566), + [sym_function_definition] = STATE(2566), + [sym_compound_statement] = STATE(2566), + [sym_subshell] = STATE(2566), + [sym_pipeline] = STATE(2566), + [sym_list] = STATE(2566), + [sym_negated_command] = STATE(2566), + [sym_test_command] = STATE(2566), + [sym_declaration_command] = STATE(2566), + [sym_unset_command] = STATE(2566), + [sym_command] = STATE(2566), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(2567), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [2418] = { - [sym_file_redirect] = STATE(2418), - [sym_heredoc_redirect] = STATE(2418), - [sym_herestring_redirect] = STATE(2418), - [aux_sym_while_statement_repeat1] = STATE(2418), - [sym__simple_heredoc_body] = ACTIONS(2027), - [sym__heredoc_body_beginning] = ACTIONS(2027), - [sym_file_descriptor] = ACTIONS(5864), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_esac] = ACTIONS(2027), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2027), - [anon_sym_PIPE_AMP] = ACTIONS(2027), - [anon_sym_AMP_AMP] = ACTIONS(2027), - [anon_sym_PIPE_PIPE] = ACTIONS(2027), - [anon_sym_LT] = ACTIONS(5867), - [anon_sym_GT] = ACTIONS(5867), - [anon_sym_GT_GT] = ACTIONS(5870), - [anon_sym_AMP_GT] = ACTIONS(5867), - [anon_sym_AMP_GT_GT] = ACTIONS(5870), - [anon_sym_LT_AMP] = ACTIONS(5870), - [anon_sym_GT_AMP] = ACTIONS(5870), - [anon_sym_LT_LT] = ACTIONS(2040), - [anon_sym_LT_LT_DASH] = ACTIONS(2043), - [anon_sym_LT_LT_LT] = ACTIONS(5873), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(2032), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(2569), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(5910), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(5912), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(5906), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5912), + [anon_sym_AMP] = ACTIONS(5910), }, [2419] = { - [sym_file_redirect] = STATE(2418), - [sym_heredoc_redirect] = STATE(2418), - [sym_heredoc_body] = STATE(996), - [sym_herestring_redirect] = STATE(2418), - [aux_sym_while_statement_repeat1] = STATE(2418), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(2025), - [anon_sym_esac] = ACTIONS(2023), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_SEMI_SEMI] = ACTIONS(2023), - [anon_sym_PIPE_AMP] = ACTIONS(2023), - [anon_sym_AMP_AMP] = ACTIONS(2023), - [anon_sym_PIPE_PIPE] = ACTIONS(2023), - [anon_sym_LT] = ACTIONS(5095), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_GT_GT] = ACTIONS(5097), - [anon_sym_AMP_GT] = ACTIONS(5095), - [anon_sym_AMP_GT_GT] = ACTIONS(5097), - [anon_sym_LT_AMP] = ACTIONS(5097), - [anon_sym_GT_AMP] = ACTIONS(5097), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(5099), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2025), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(2569), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5910), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(5912), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(5906), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5912), + [anon_sym_AMP] = ACTIONS(5910), }, [2420] = { - [sym_concatenation] = STATE(2420), - [sym_string] = STATE(2220), - [sym_simple_expansion] = STATE(2220), - [sym_string_expansion] = STATE(2220), - [sym_expansion] = STATE(2220), - [sym_command_substitution] = STATE(2220), - [sym_process_substitution] = STATE(2220), - [aux_sym_command_repeat2] = STATE(2420), - [sym__simple_heredoc_body] = ACTIONS(2003), - [sym__heredoc_body_beginning] = ACTIONS(2003), - [sym_file_descriptor] = ACTIONS(2003), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_esac] = ACTIONS(2005), - [anon_sym_PIPE] = ACTIONS(2005), - [anon_sym_SEMI_SEMI] = ACTIONS(2003), - [anon_sym_PIPE_AMP] = ACTIONS(2003), - [anon_sym_AMP_AMP] = ACTIONS(2003), - [anon_sym_PIPE_PIPE] = ACTIONS(2003), - [anon_sym_EQ_TILDE] = ACTIONS(5876), - [anon_sym_EQ_EQ] = ACTIONS(5876), - [anon_sym_LT] = ACTIONS(2005), - [anon_sym_GT] = ACTIONS(2005), - [anon_sym_GT_GT] = ACTIONS(2003), - [anon_sym_AMP_GT] = ACTIONS(2005), - [anon_sym_AMP_GT_GT] = ACTIONS(2003), - [anon_sym_LT_AMP] = ACTIONS(2003), - [anon_sym_GT_AMP] = ACTIONS(2003), - [anon_sym_LT_LT] = ACTIONS(2005), - [anon_sym_LT_LT_DASH] = ACTIONS(2003), - [anon_sym_LT_LT_LT] = ACTIONS(2003), - [sym__special_characters] = ACTIONS(5879), - [anon_sym_DQUOTE] = ACTIONS(5882), - [anon_sym_DOLLAR] = ACTIONS(5885), - [sym_raw_string] = ACTIONS(5888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5894), - [anon_sym_BQUOTE] = ACTIONS(5897), - [anon_sym_LT_LPAREN] = ACTIONS(5900), - [anon_sym_GT_LPAREN] = ACTIONS(5900), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5903), - [anon_sym_LF] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(2005), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(2570), + [sym_for_statement] = STATE(2570), + [sym_c_style_for_statement] = STATE(2570), + [sym_while_statement] = STATE(2570), + [sym_if_statement] = STATE(2570), + [sym_case_statement] = STATE(2570), + [sym_function_definition] = STATE(2570), + [sym_compound_statement] = STATE(2570), + [sym_subshell] = STATE(2570), + [sym_pipeline] = STATE(2570), + [sym_list] = STATE(2570), + [sym_negated_command] = STATE(2570), + [sym_test_command] = STATE(2570), + [sym_declaration_command] = STATE(2570), + [sym_unset_command] = STATE(2570), + [sym_command] = STATE(2570), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(2571), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [2421] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_esac] = ACTIONS(5906), - [anon_sym_SEMI_SEMI] = ACTIONS(943), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(5908), - [anon_sym_DQUOTE] = ACTIONS(5910), - [anon_sym_DOLLAR] = ACTIONS(5908), - [sym_raw_string] = ACTIONS(5910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5910), - [anon_sym_BQUOTE] = ACTIONS(5910), - [anon_sym_LT_LPAREN] = ACTIONS(5910), - [anon_sym_GT_LPAREN] = ACTIONS(5910), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5908), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2574), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(5914), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5916), + [anon_sym_SEMI_SEMI] = ACTIONS(5918), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5918), + [anon_sym_AMP] = ACTIONS(5914), }, [2422] = { - [anon_sym_SEMI] = ACTIONS(5077), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_SEMI_SEMI] = ACTIONS(5089), - [anon_sym_PIPE_AMP] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(535), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5089), - [anon_sym_AMP] = ACTIONS(5077), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2574), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5914), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5916), + [anon_sym_SEMI_SEMI] = ACTIONS(5918), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5918), + [anon_sym_AMP] = ACTIONS(5914), }, [2423] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(5077), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_SEMI_SEMI] = ACTIONS(5089), - [anon_sym_PIPE_AMP] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(5089), - [anon_sym_AMP] = ACTIONS(5077), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(2575), + [sym_for_statement] = STATE(2575), + [sym_c_style_for_statement] = STATE(2575), + [sym_while_statement] = STATE(2575), + [sym_if_statement] = STATE(2575), + [sym_case_statement] = STATE(2575), + [sym_function_definition] = STATE(2575), + [sym_compound_statement] = STATE(2575), + [sym_subshell] = STATE(2575), + [sym_pipeline] = STATE(2575), + [sym_list] = STATE(2575), + [sym_negated_command] = STATE(2575), + [sym_test_command] = STATE(2575), + [sym_declaration_command] = STATE(2575), + [sym_unset_command] = STATE(2575), + [sym_command] = STATE(2575), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(2576), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [2424] = { - [sym_file_redirect] = STATE(2592), - [sym_heredoc_redirect] = STATE(2592), - [sym_heredoc_body] = STATE(996), - [sym_herestring_redirect] = STATE(2592), - [sym_concatenation] = STATE(2420), - [sym_string] = STATE(2220), - [sym_simple_expansion] = STATE(2220), - [sym_string_expansion] = STATE(2220), - [sym_expansion] = STATE(2220), - [sym_command_substitution] = STATE(2220), - [sym_process_substitution] = STATE(2220), - [aux_sym_while_statement_repeat1] = STATE(2592), - [aux_sym_command_repeat2] = STATE(2420), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(2025), - [anon_sym_esac] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_SEMI_SEMI] = ACTIONS(2023), - [anon_sym_PIPE_AMP] = ACTIONS(2023), - [anon_sym_AMP_AMP] = ACTIONS(2023), - [anon_sym_PIPE_PIPE] = ACTIONS(2023), - [anon_sym_EQ_TILDE] = ACTIONS(5093), - [anon_sym_EQ_EQ] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5095), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_GT_GT] = ACTIONS(5097), - [anon_sym_AMP_GT] = ACTIONS(5095), - [anon_sym_AMP_GT_GT] = ACTIONS(5097), - [anon_sym_LT_AMP] = ACTIONS(5097), - [anon_sym_GT_AMP] = ACTIONS(5097), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(5099), - [sym__special_characters] = ACTIONS(5101), - [anon_sym_DQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR] = ACTIONS(4471), - [sym_raw_string] = ACTIONS(5103), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4475), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4477), - [anon_sym_BQUOTE] = ACTIONS(4479), - [anon_sym_LT_LPAREN] = ACTIONS(4481), - [anon_sym_GT_LPAREN] = ACTIONS(4481), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5105), - [anon_sym_LF] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2025), + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym_variable_name] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_esac] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1087), + [anon_sym_SEMI_SEMI] = ACTIONS(1085), + [anon_sym_PIPE_AMP] = ACTIONS(1085), + [anon_sym_AMP_AMP] = ACTIONS(1085), + [anon_sym_PIPE_PIPE] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_AMP_GT] = ACTIONS(1087), + [anon_sym_AMP_GT_GT] = ACTIONS(1085), + [anon_sym_LT_AMP] = ACTIONS(1085), + [anon_sym_GT_AMP] = ACTIONS(1085), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_LT_LT_DASH] = ACTIONS(1085), + [anon_sym_LT_LT_LT] = ACTIONS(1085), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1087), + [sym_raw_string] = ACTIONS(1085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_LT_LPAREN] = ACTIONS(1085), + [anon_sym_GT_LPAREN] = ACTIONS(1085), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1087), + [sym_word] = ACTIONS(1087), + [anon_sym_LF] = ACTIONS(1085), + [anon_sym_AMP] = ACTIONS(1087), }, [2425] = { - [anon_sym_esac] = ACTIONS(5906), - [sym__special_characters] = ACTIONS(5910), - [anon_sym_DQUOTE] = ACTIONS(5910), - [anon_sym_DOLLAR] = ACTIONS(5908), - [sym_raw_string] = ACTIONS(5910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5910), - [anon_sym_BQUOTE] = ACTIONS(5910), - [anon_sym_LT_LPAREN] = ACTIONS(5910), - [anon_sym_GT_LPAREN] = ACTIONS(5910), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5908), + [sym_concatenation] = STATE(2578), + [sym_string] = STATE(537), + [sym_simple_expansion] = STATE(537), + [sym_string_expansion] = STATE(537), + [sym_expansion] = STATE(537), + [sym_command_substitution] = STATE(537), + [sym_process_substitution] = STATE(537), + [aux_sym_for_statement_repeat1] = STATE(2578), + [anon_sym_RPAREN] = ACTIONS(5920), + [sym__special_characters] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1095), + [sym_raw_string] = ACTIONS(1097), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1099), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1103), + [anon_sym_LT_LPAREN] = ACTIONS(1105), + [anon_sym_GT_LPAREN] = ACTIONS(1105), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1097), }, [2426] = { - [anon_sym_SEMI] = ACTIONS(5077), - [anon_sym_esac] = ACTIONS(5912), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_SEMI_SEMI] = ACTIONS(5914), - [anon_sym_PIPE_AMP] = ACTIONS(5085), - [anon_sym_AMP_AMP] = ACTIONS(5087), - [anon_sym_PIPE_PIPE] = ACTIONS(5087), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5089), - [anon_sym_AMP] = ACTIONS(5077), + [aux_sym_concatenation_repeat1] = STATE(2271), + [sym__simple_heredoc_body] = ACTIONS(1107), + [sym__heredoc_body_beginning] = ACTIONS(1107), + [sym_file_descriptor] = ACTIONS(1107), + [sym__concat] = ACTIONS(5292), + [sym_variable_name] = ACTIONS(1107), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_esac] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_SEMI_SEMI] = ACTIONS(1107), + [anon_sym_PIPE_AMP] = ACTIONS(1107), + [anon_sym_AMP_AMP] = ACTIONS(1107), + [anon_sym_PIPE_PIPE] = ACTIONS(1107), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1107), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1107), + [anon_sym_LT_AMP] = ACTIONS(1107), + [anon_sym_GT_AMP] = ACTIONS(1107), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_LT_LT_DASH] = ACTIONS(1107), + [anon_sym_LT_LT_LT] = ACTIONS(1107), + [sym__special_characters] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(1107), + [anon_sym_DOLLAR] = ACTIONS(1111), + [sym_raw_string] = ACTIONS(1107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1107), + [anon_sym_BQUOTE] = ACTIONS(1107), + [anon_sym_LT_LPAREN] = ACTIONS(1107), + [anon_sym_GT_LPAREN] = ACTIONS(1107), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1111), + [sym_word] = ACTIONS(1111), + [anon_sym_LF] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1111), }, [2427] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(5077), - [anon_sym_esac] = ACTIONS(5906), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_SEMI_SEMI] = ACTIONS(5914), - [anon_sym_PIPE_AMP] = ACTIONS(5085), - [anon_sym_AMP_AMP] = ACTIONS(5087), - [anon_sym_PIPE_PIPE] = ACTIONS(5087), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(5089), - [anon_sym_AMP] = ACTIONS(5077), + [aux_sym_concatenation_repeat1] = STATE(2271), + [sym__simple_heredoc_body] = ACTIONS(1085), + [sym__heredoc_body_beginning] = ACTIONS(1085), + [sym_file_descriptor] = ACTIONS(1085), + [sym__concat] = ACTIONS(5292), + [sym_variable_name] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_esac] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1087), + [anon_sym_SEMI_SEMI] = ACTIONS(1085), + [anon_sym_PIPE_AMP] = ACTIONS(1085), + [anon_sym_AMP_AMP] = ACTIONS(1085), + [anon_sym_PIPE_PIPE] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_GT] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_AMP_GT] = ACTIONS(1087), + [anon_sym_AMP_GT_GT] = ACTIONS(1085), + [anon_sym_LT_AMP] = ACTIONS(1085), + [anon_sym_GT_AMP] = ACTIONS(1085), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_LT_LT_DASH] = ACTIONS(1085), + [anon_sym_LT_LT_LT] = ACTIONS(1085), + [sym__special_characters] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1087), + [sym_raw_string] = ACTIONS(1085), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1085), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1085), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_LT_LPAREN] = ACTIONS(1085), + [anon_sym_GT_LPAREN] = ACTIONS(1085), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1087), + [sym_word] = ACTIONS(1087), + [anon_sym_LF] = ACTIONS(1085), + [anon_sym_AMP] = ACTIONS(1087), }, [2428] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_esac] = ACTIONS(5916), - [anon_sym_SEMI_SEMI] = ACTIONS(943), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(5918), - [anon_sym_DQUOTE] = ACTIONS(5920), - [anon_sym_DOLLAR] = ACTIONS(5918), - [sym_raw_string] = ACTIONS(5920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5920), - [anon_sym_BQUOTE] = ACTIONS(5920), - [anon_sym_LT_LPAREN] = ACTIONS(5920), - [anon_sym_GT_LPAREN] = ACTIONS(5920), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5918), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(1726), + [sym_variable_name] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_esac] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1728), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), }, [2429] = { - [anon_sym_esac] = ACTIONS(5916), - [sym__special_characters] = ACTIONS(5920), - [anon_sym_DQUOTE] = ACTIONS(5920), - [anon_sym_DOLLAR] = ACTIONS(5918), - [sym_raw_string] = ACTIONS(5920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5920), - [anon_sym_BQUOTE] = ACTIONS(5920), - [anon_sym_LT_LPAREN] = ACTIONS(5920), - [anon_sym_GT_LPAREN] = ACTIONS(5920), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5918), + [aux_sym_concatenation_repeat1] = STATE(2429), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(5922), + [sym_variable_name] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_esac] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1728), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), }, [2430] = { - [anon_sym_SEMI] = ACTIONS(5077), - [anon_sym_esac] = ACTIONS(5922), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_SEMI_SEMI] = ACTIONS(5924), - [anon_sym_PIPE_AMP] = ACTIONS(5085), - [anon_sym_AMP_AMP] = ACTIONS(5087), - [anon_sym_PIPE_PIPE] = ACTIONS(5087), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5089), - [anon_sym_AMP] = ACTIONS(5077), + [sym__simple_heredoc_body] = ACTIONS(1733), + [sym__heredoc_body_beginning] = ACTIONS(1733), + [sym_file_descriptor] = ACTIONS(1733), + [sym__concat] = ACTIONS(1733), + [sym_variable_name] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_esac] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1733), + [anon_sym_PIPE_AMP] = ACTIONS(1733), + [anon_sym_AMP_AMP] = ACTIONS(1733), + [anon_sym_PIPE_PIPE] = ACTIONS(1733), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1733), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_AMP_GT_GT] = ACTIONS(1733), + [anon_sym_LT_AMP] = ACTIONS(1733), + [anon_sym_GT_AMP] = ACTIONS(1733), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_LT_LT_DASH] = ACTIONS(1733), + [anon_sym_LT_LT_LT] = ACTIONS(1733), + [sym__special_characters] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1733), + [anon_sym_BQUOTE] = ACTIONS(1733), + [anon_sym_LT_LPAREN] = ACTIONS(1733), + [anon_sym_GT_LPAREN] = ACTIONS(1733), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1735), + [sym_word] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1733), + [anon_sym_AMP] = ACTIONS(1735), }, [2431] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(5077), - [anon_sym_esac] = ACTIONS(5916), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_SEMI_SEMI] = ACTIONS(5924), - [anon_sym_PIPE_AMP] = ACTIONS(5085), - [anon_sym_AMP_AMP] = ACTIONS(5087), - [anon_sym_PIPE_PIPE] = ACTIONS(5087), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(5089), - [anon_sym_AMP] = ACTIONS(5077), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(5925), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [2432] = { - [sym__special_characters] = ACTIONS(5003), - [anon_sym_DQUOTE] = ACTIONS(5003), - [anon_sym_DOLLAR] = ACTIONS(5005), - [sym_raw_string] = ACTIONS(5003), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5003), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5003), - [anon_sym_BQUOTE] = ACTIONS(5003), - [anon_sym_LT_LPAREN] = ACTIONS(5003), - [anon_sym_GT_LPAREN] = ACTIONS(5003), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5003), + [sym_concatenation] = STATE(2583), + [sym_string] = STATE(2582), + [sym_simple_expansion] = STATE(2582), + [sym_string_expansion] = STATE(2582), + [sym_expansion] = STATE(2582), + [sym_command_substitution] = STATE(2582), + [sym_process_substitution] = STATE(2582), + [anon_sym_RBRACE] = ACTIONS(5927), + [sym__special_characters] = ACTIONS(5929), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(5931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5931), }, [2433] = { - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_SEMI_SEMI] = ACTIONS(5926), - [anon_sym_PIPE_AMP] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(535), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(5933), + [sym_comment] = ACTIONS(57), }, [2434] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_SEMI_SEMI] = ACTIONS(5926), - [anon_sym_PIPE_AMP] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2081), + [sym_concatenation] = STATE(2587), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2587), + [anon_sym_RBRACE] = ACTIONS(5935), + [anon_sym_EQ] = ACTIONS(5937), + [anon_sym_DASH] = ACTIONS(5937), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5939), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(5941), + [anon_sym_COLON] = ACTIONS(5937), + [anon_sym_COLON_QMARK] = ACTIONS(5937), + [anon_sym_COLON_DASH] = ACTIONS(5937), + [anon_sym_PERCENT] = ACTIONS(5937), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2435] = { - [sym__terminated_statement] = STATE(2599), - [sym_for_statement] = STATE(2597), - [sym_c_style_for_statement] = STATE(2597), - [sym_while_statement] = STATE(2597), - [sym_if_statement] = STATE(2597), - [sym_case_statement] = STATE(2597), - [sym_function_definition] = STATE(2597), - [sym_subshell] = STATE(2597), - [sym_pipeline] = STATE(2597), - [sym_list] = STATE(2597), - [sym_negated_command] = STATE(2597), - [sym_test_command] = STATE(2597), - [sym_declaration_command] = STATE(2597), - [sym_unset_command] = STATE(2597), - [sym_command] = STATE(2597), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(2598), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(2599), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_SEMI_SEMI] = ACTIONS(5928), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [sym_concatenation] = STATE(2589), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2589), + [anon_sym_RBRACE] = ACTIONS(5927), + [anon_sym_EQ] = ACTIONS(5943), + [anon_sym_DASH] = ACTIONS(5943), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5945), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(5947), + [anon_sym_COLON] = ACTIONS(5943), + [anon_sym_COLON_QMARK] = ACTIONS(5943), + [anon_sym_COLON_DASH] = ACTIONS(5943), + [anon_sym_PERCENT] = ACTIONS(5943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2436] = { - [sym__terminated_statement] = STATE(2600), - [sym_for_statement] = STATE(2597), - [sym_c_style_for_statement] = STATE(2597), - [sym_while_statement] = STATE(2597), - [sym_if_statement] = STATE(2597), - [sym_case_statement] = STATE(2597), - [sym_function_definition] = STATE(2597), - [sym_subshell] = STATE(2597), - [sym_pipeline] = STATE(2597), - [sym_list] = STATE(2597), - [sym_negated_command] = STATE(2597), - [sym_test_command] = STATE(2597), - [sym_declaration_command] = STATE(2597), - [sym_unset_command] = STATE(2597), - [sym_command] = STATE(2597), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(2598), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(2600), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_SEMI_SEMI] = ACTIONS(5928), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [sym__simple_heredoc_body] = ACTIONS(1834), + [sym__heredoc_body_beginning] = ACTIONS(1834), + [sym_file_descriptor] = ACTIONS(1834), + [sym__concat] = ACTIONS(1834), + [sym_variable_name] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_esac] = ACTIONS(1836), + [anon_sym_PIPE] = ACTIONS(1836), + [anon_sym_SEMI_SEMI] = ACTIONS(1834), + [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP_AMP] = ACTIONS(1834), + [anon_sym_PIPE_PIPE] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1836), + [anon_sym_GT] = ACTIONS(1836), + [anon_sym_GT_GT] = ACTIONS(1834), + [anon_sym_AMP_GT] = ACTIONS(1836), + [anon_sym_AMP_GT_GT] = ACTIONS(1834), + [anon_sym_LT_AMP] = ACTIONS(1834), + [anon_sym_GT_AMP] = ACTIONS(1834), + [anon_sym_LT_LT] = ACTIONS(1836), + [anon_sym_LT_LT_DASH] = ACTIONS(1834), + [anon_sym_LT_LT_LT] = ACTIONS(1834), + [sym__special_characters] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1836), + [sym_raw_string] = ACTIONS(1834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), + [anon_sym_BQUOTE] = ACTIONS(1834), + [anon_sym_LT_LPAREN] = ACTIONS(1834), + [anon_sym_GT_LPAREN] = ACTIONS(1834), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1836), + [sym_word] = ACTIONS(1836), + [anon_sym_LF] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1836), }, [2437] = { - [sym__special_characters] = ACTIONS(5116), - [anon_sym_DQUOTE] = ACTIONS(5116), - [anon_sym_DOLLAR] = ACTIONS(5118), - [sym_raw_string] = ACTIONS(5116), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5116), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5116), - [anon_sym_BQUOTE] = ACTIONS(5116), - [anon_sym_LT_LPAREN] = ACTIONS(5116), - [anon_sym_GT_LPAREN] = ACTIONS(5116), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5116), + [sym_concatenation] = STATE(2592), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2592), + [sym_regex] = ACTIONS(5949), + [anon_sym_RBRACE] = ACTIONS(5951), + [anon_sym_EQ] = ACTIONS(5953), + [anon_sym_DASH] = ACTIONS(5953), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(5953), + [anon_sym_COLON_QMARK] = ACTIONS(5953), + [anon_sym_COLON_DASH] = ACTIONS(5953), + [anon_sym_PERCENT] = ACTIONS(5953), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2438] = { - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_SEMI_SEMI] = ACTIONS(5930), - [anon_sym_PIPE_AMP] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(535), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2081), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5951), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2439] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_SEMI_SEMI] = ACTIONS(5930), - [anon_sym_PIPE_AMP] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2081), + [sym__simple_heredoc_body] = ACTIONS(1882), + [sym__heredoc_body_beginning] = ACTIONS(1882), + [sym_file_descriptor] = ACTIONS(1882), + [sym__concat] = ACTIONS(1882), + [sym_variable_name] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_esac] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1882), + [anon_sym_PIPE_AMP] = ACTIONS(1882), + [anon_sym_AMP_AMP] = ACTIONS(1882), + [anon_sym_PIPE_PIPE] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1882), + [anon_sym_AMP_GT] = ACTIONS(1884), + [anon_sym_AMP_GT_GT] = ACTIONS(1882), + [anon_sym_LT_AMP] = ACTIONS(1882), + [anon_sym_GT_AMP] = ACTIONS(1882), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1882), + [anon_sym_LT_LT_LT] = ACTIONS(1882), + [sym__special_characters] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1882), + [anon_sym_BQUOTE] = ACTIONS(1882), + [anon_sym_LT_LPAREN] = ACTIONS(1882), + [anon_sym_GT_LPAREN] = ACTIONS(1882), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1884), + [sym_word] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1884), }, [2440] = { - [sym__terminated_statement] = STATE(2599), - [sym_for_statement] = STATE(2603), - [sym_c_style_for_statement] = STATE(2603), - [sym_while_statement] = STATE(2603), - [sym_if_statement] = STATE(2603), - [sym_case_statement] = STATE(2603), - [sym_function_definition] = STATE(2603), - [sym_subshell] = STATE(2603), - [sym_pipeline] = STATE(2603), - [sym_list] = STATE(2603), - [sym_negated_command] = STATE(2603), - [sym_test_command] = STATE(2603), - [sym_declaration_command] = STATE(2603), - [sym_unset_command] = STATE(2603), - [sym_command] = STATE(2603), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(2604), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(2599), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_SEMI_SEMI] = ACTIONS(5932), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [sym_concatenation] = STATE(2589), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2589), + [sym_regex] = ACTIONS(5957), + [anon_sym_RBRACE] = ACTIONS(5927), + [anon_sym_EQ] = ACTIONS(5943), + [anon_sym_DASH] = ACTIONS(5943), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(5945), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(5943), + [anon_sym_COLON_QMARK] = ACTIONS(5943), + [anon_sym_COLON_DASH] = ACTIONS(5943), + [anon_sym_PERCENT] = ACTIONS(5943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2441] = { - [sym__terminated_statement] = STATE(2605), - [sym_for_statement] = STATE(2603), - [sym_c_style_for_statement] = STATE(2603), - [sym_while_statement] = STATE(2603), - [sym_if_statement] = STATE(2603), - [sym_case_statement] = STATE(2603), - [sym_function_definition] = STATE(2603), - [sym_subshell] = STATE(2603), - [sym_pipeline] = STATE(2603), - [sym_list] = STATE(2603), - [sym_negated_command] = STATE(2603), - [sym_test_command] = STATE(2603), - [sym_declaration_command] = STATE(2603), - [sym_unset_command] = STATE(2603), - [sym_command] = STATE(2603), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(2604), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(2605), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_SEMI_SEMI] = ACTIONS(5932), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5927), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2442] = { - [sym__concat] = ACTIONS(4710), - [anon_sym_RBRACE] = ACTIONS(4710), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(5959), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2443] = { - [sym__concat] = ACTIONS(4714), - [anon_sym_RBRACE] = ACTIONS(4714), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(1890), + [sym__heredoc_body_beginning] = ACTIONS(1890), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_esac] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1892), + [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(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), + [sym_word] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1892), }, [2444] = { - [sym__concat] = ACTIONS(4718), - [anon_sym_RBRACE] = ACTIONS(4718), - [sym_comment] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(5961), + [anon_sym_RPAREN] = ACTIONS(5959), + [anon_sym_SEMI_SEMI] = ACTIONS(5963), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5963), + [anon_sym_AMP] = ACTIONS(5963), }, [2445] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5934), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2597), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(5965), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5959), + [anon_sym_SEMI_SEMI] = ACTIONS(5967), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5967), + [anon_sym_AMP] = ACTIONS(5965), }, [2446] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5936), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2597), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5965), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5959), + [anon_sym_SEMI_SEMI] = ACTIONS(5967), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5967), + [anon_sym_AMP] = ACTIONS(5965), }, [2447] = { - [sym__concat] = ACTIONS(4754), - [anon_sym_RBRACE] = ACTIONS(4754), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(5959), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2448] = { - [sym__concat] = ACTIONS(5202), - [anon_sym_RBRACE] = ACTIONS(5202), - [anon_sym_EQ] = ACTIONS(5204), - [anon_sym_DASH] = ACTIONS(5204), - [sym__special_characters] = ACTIONS(5204), - [anon_sym_DQUOTE] = ACTIONS(5202), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5202), - [anon_sym_POUND] = ACTIONS(5202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), - [anon_sym_COLON] = ACTIONS(5204), - [anon_sym_COLON_QMARK] = ACTIONS(5204), - [anon_sym_COLON_DASH] = ACTIONS(5204), - [anon_sym_PERCENT] = ACTIONS(5204), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), - [anon_sym_BQUOTE] = ACTIONS(5202), - [anon_sym_LT_LPAREN] = ACTIONS(5202), - [anon_sym_GT_LPAREN] = ACTIONS(5202), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(5204), + [anon_sym_SEMI] = ACTIONS(5969), + [anon_sym_SEMI_SEMI] = ACTIONS(5971), + [anon_sym_BQUOTE] = ACTIONS(5959), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5971), + [anon_sym_AMP] = ACTIONS(5971), }, [2449] = { - [sym__concat] = ACTIONS(5206), - [anon_sym_RBRACE] = ACTIONS(5206), - [anon_sym_EQ] = ACTIONS(5208), - [anon_sym_DASH] = ACTIONS(5208), - [sym__special_characters] = ACTIONS(5208), - [anon_sym_DQUOTE] = ACTIONS(5206), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5206), - [anon_sym_POUND] = ACTIONS(5206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), - [anon_sym_COLON] = ACTIONS(5208), - [anon_sym_COLON_QMARK] = ACTIONS(5208), - [anon_sym_COLON_DASH] = ACTIONS(5208), - [anon_sym_PERCENT] = ACTIONS(5208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), - [anon_sym_BQUOTE] = ACTIONS(5206), - [anon_sym_LT_LPAREN] = ACTIONS(5206), - [anon_sym_GT_LPAREN] = ACTIONS(5206), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(5208), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(2600), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(5973), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(5975), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(5959), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5975), + [anon_sym_AMP] = ACTIONS(5973), }, [2450] = { - [sym__heredoc_body_middle] = ACTIONS(5202), - [sym__heredoc_body_end] = ACTIONS(5202), - [anon_sym_DOLLAR] = ACTIONS(5204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(2600), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5973), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(5975), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(5959), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5975), + [anon_sym_AMP] = ACTIONS(5973), }, [2451] = { - [sym__heredoc_body_middle] = ACTIONS(5206), - [sym__heredoc_body_end] = ACTIONS(5206), - [anon_sym_DOLLAR] = ACTIONS(5208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(5977), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2452] = { - [sym__concat] = ACTIONS(5202), - [anon_sym_RPAREN] = ACTIONS(5202), - [sym__special_characters] = ACTIONS(5202), - [anon_sym_DQUOTE] = ACTIONS(5202), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), - [anon_sym_BQUOTE] = ACTIONS(5202), - [anon_sym_LT_LPAREN] = ACTIONS(5202), - [anon_sym_GT_LPAREN] = ACTIONS(5202), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5202), + [sym__simple_heredoc_body] = ACTIONS(1924), + [sym__heredoc_body_beginning] = ACTIONS(1924), + [sym_file_descriptor] = ACTIONS(1924), + [sym__concat] = ACTIONS(1924), + [sym_variable_name] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_esac] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [anon_sym_PIPE_AMP] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_GT_GT] = ACTIONS(1924), + [anon_sym_AMP_GT] = ACTIONS(1926), + [anon_sym_AMP_GT_GT] = ACTIONS(1924), + [anon_sym_LT_AMP] = ACTIONS(1924), + [anon_sym_GT_AMP] = ACTIONS(1924), + [anon_sym_LT_LT] = ACTIONS(1926), + [anon_sym_LT_LT_DASH] = ACTIONS(1924), + [anon_sym_LT_LT_LT] = ACTIONS(1924), + [sym__special_characters] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(1924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), + [anon_sym_BQUOTE] = ACTIONS(1924), + [anon_sym_LT_LPAREN] = ACTIONS(1924), + [anon_sym_GT_LPAREN] = ACTIONS(1924), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1926), + [sym_word] = ACTIONS(1926), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1926), }, [2453] = { - [sym__concat] = ACTIONS(5206), - [anon_sym_RPAREN] = ACTIONS(5206), - [sym__special_characters] = ACTIONS(5206), - [anon_sym_DQUOTE] = ACTIONS(5206), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), - [anon_sym_BQUOTE] = ACTIONS(5206), - [anon_sym_LT_LPAREN] = ACTIONS(5206), - [anon_sym_GT_LPAREN] = ACTIONS(5206), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5206), + [anon_sym_SEMI] = ACTIONS(5979), + [anon_sym_RPAREN] = ACTIONS(5977), + [anon_sym_SEMI_SEMI] = ACTIONS(5981), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5981), + [anon_sym_AMP] = ACTIONS(5981), }, [2454] = { - [ts_builtin_sym_end] = ACTIONS(5938), - [anon_sym_SEMI] = ACTIONS(5940), - [anon_sym_esac] = ACTIONS(5938), - [anon_sym_PIPE] = ACTIONS(5940), - [anon_sym_RPAREN] = ACTIONS(5938), - [anon_sym_SEMI_SEMI] = ACTIONS(5938), - [anon_sym_PIPE_AMP] = ACTIONS(5938), - [anon_sym_AMP_AMP] = ACTIONS(5938), - [anon_sym_PIPE_PIPE] = ACTIONS(5938), - [anon_sym_BQUOTE] = ACTIONS(5938), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5938), - [anon_sym_AMP] = ACTIONS(5940), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2604), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(5983), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5977), + [anon_sym_SEMI_SEMI] = ACTIONS(5985), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5985), + [anon_sym_AMP] = ACTIONS(5983), }, [2455] = { - [sym__concat] = ACTIONS(5202), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_SEMI_SEMI] = ACTIONS(5202), - [sym__special_characters] = ACTIONS(5202), - [anon_sym_DQUOTE] = ACTIONS(5202), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), - [anon_sym_BQUOTE] = ACTIONS(5202), - [anon_sym_LT_LPAREN] = ACTIONS(5202), - [anon_sym_GT_LPAREN] = ACTIONS(5202), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5204), - [anon_sym_LF] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5202), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2604), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(5983), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(5977), + [anon_sym_SEMI_SEMI] = ACTIONS(5985), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(5985), + [anon_sym_AMP] = ACTIONS(5983), }, [2456] = { - [sym__concat] = ACTIONS(5206), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym_SEMI_SEMI] = ACTIONS(5206), - [sym__special_characters] = ACTIONS(5206), - [anon_sym_DQUOTE] = ACTIONS(5206), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), - [anon_sym_BQUOTE] = ACTIONS(5206), - [anon_sym_LT_LPAREN] = ACTIONS(5206), - [anon_sym_GT_LPAREN] = ACTIONS(5206), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5208), - [anon_sym_LF] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5206), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_esac] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1728), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), }, [2457] = { - [sym_file_descriptor] = ACTIONS(4710), - [sym__concat] = ACTIONS(4710), - [ts_builtin_sym_end] = ACTIONS(4710), - [anon_sym_SEMI] = ACTIONS(4712), - [anon_sym_esac] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4712), - [anon_sym_RPAREN] = ACTIONS(4710), - [anon_sym_SEMI_SEMI] = ACTIONS(4710), - [anon_sym_PIPE_AMP] = ACTIONS(4710), - [anon_sym_AMP_AMP] = ACTIONS(4710), - [anon_sym_PIPE_PIPE] = ACTIONS(4710), - [anon_sym_LT] = ACTIONS(4712), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_GT_GT] = ACTIONS(4710), - [anon_sym_AMP_GT] = ACTIONS(4712), - [anon_sym_AMP_GT_GT] = ACTIONS(4710), - [anon_sym_LT_AMP] = ACTIONS(4710), - [anon_sym_GT_AMP] = ACTIONS(4710), - [anon_sym_LT_LT] = ACTIONS(4712), - [anon_sym_LT_LT_DASH] = ACTIONS(4710), - [anon_sym_LT_LT_LT] = ACTIONS(4710), - [anon_sym_BQUOTE] = ACTIONS(4710), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4710), - [anon_sym_AMP] = ACTIONS(4712), + [aux_sym_concatenation_repeat1] = STATE(2457), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(5987), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_esac] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1728), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), }, [2458] = { - [sym_file_descriptor] = ACTIONS(4714), - [sym__concat] = ACTIONS(4714), - [ts_builtin_sym_end] = ACTIONS(4714), - [anon_sym_SEMI] = ACTIONS(4716), - [anon_sym_esac] = ACTIONS(4714), - [anon_sym_PIPE] = ACTIONS(4716), - [anon_sym_RPAREN] = ACTIONS(4714), - [anon_sym_SEMI_SEMI] = ACTIONS(4714), - [anon_sym_PIPE_AMP] = ACTIONS(4714), - [anon_sym_AMP_AMP] = ACTIONS(4714), - [anon_sym_PIPE_PIPE] = ACTIONS(4714), - [anon_sym_LT] = ACTIONS(4716), - [anon_sym_GT] = ACTIONS(4716), - [anon_sym_GT_GT] = ACTIONS(4714), - [anon_sym_AMP_GT] = ACTIONS(4716), - [anon_sym_AMP_GT_GT] = ACTIONS(4714), - [anon_sym_LT_AMP] = ACTIONS(4714), - [anon_sym_GT_AMP] = ACTIONS(4714), - [anon_sym_LT_LT] = ACTIONS(4716), - [anon_sym_LT_LT_DASH] = ACTIONS(4714), - [anon_sym_LT_LT_LT] = ACTIONS(4714), - [anon_sym_BQUOTE] = ACTIONS(4714), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4714), - [anon_sym_AMP] = ACTIONS(4716), + [sym__simple_heredoc_body] = ACTIONS(1733), + [sym__heredoc_body_beginning] = ACTIONS(1733), + [sym_file_descriptor] = ACTIONS(1733), + [sym__concat] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_esac] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1733), + [anon_sym_PIPE_AMP] = ACTIONS(1733), + [anon_sym_AMP_AMP] = ACTIONS(1733), + [anon_sym_PIPE_PIPE] = ACTIONS(1733), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1733), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_AMP_GT_GT] = ACTIONS(1733), + [anon_sym_LT_AMP] = ACTIONS(1733), + [anon_sym_GT_AMP] = ACTIONS(1733), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_LT_LT_DASH] = ACTIONS(1733), + [anon_sym_LT_LT_LT] = ACTIONS(1733), + [sym__special_characters] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1733), + [anon_sym_BQUOTE] = ACTIONS(1733), + [anon_sym_LT_LPAREN] = ACTIONS(1733), + [anon_sym_GT_LPAREN] = ACTIONS(1733), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1735), + [sym_word] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1733), + [anon_sym_AMP] = ACTIONS(1735), }, [2459] = { - [sym_file_descriptor] = ACTIONS(4718), - [sym__concat] = ACTIONS(4718), - [ts_builtin_sym_end] = ACTIONS(4718), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_esac] = ACTIONS(4718), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_RPAREN] = ACTIONS(4718), - [anon_sym_SEMI_SEMI] = ACTIONS(4718), - [anon_sym_PIPE_AMP] = ACTIONS(4718), - [anon_sym_AMP_AMP] = ACTIONS(4718), - [anon_sym_PIPE_PIPE] = ACTIONS(4718), - [anon_sym_LT] = ACTIONS(4720), - [anon_sym_GT] = ACTIONS(4720), - [anon_sym_GT_GT] = ACTIONS(4718), - [anon_sym_AMP_GT] = ACTIONS(4720), - [anon_sym_AMP_GT_GT] = ACTIONS(4718), - [anon_sym_LT_AMP] = ACTIONS(4718), - [anon_sym_GT_AMP] = ACTIONS(4718), - [anon_sym_LT_LT] = ACTIONS(4720), - [anon_sym_LT_LT_DASH] = ACTIONS(4718), - [anon_sym_LT_LT_LT] = ACTIONS(4718), - [anon_sym_BQUOTE] = ACTIONS(4718), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(5990), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [2460] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5942), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(2609), + [sym_string] = STATE(2608), + [sym_simple_expansion] = STATE(2608), + [sym_string_expansion] = STATE(2608), + [sym_expansion] = STATE(2608), + [sym_command_substitution] = STATE(2608), + [sym_process_substitution] = STATE(2608), + [anon_sym_RBRACE] = ACTIONS(5992), + [sym__special_characters] = ACTIONS(5994), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(5996), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5996), }, [2461] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(5944), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(5998), + [sym_comment] = ACTIONS(57), }, [2462] = { - [sym_file_descriptor] = ACTIONS(4754), - [sym__concat] = ACTIONS(4754), - [ts_builtin_sym_end] = ACTIONS(4754), - [anon_sym_SEMI] = ACTIONS(4756), - [anon_sym_esac] = ACTIONS(4754), - [anon_sym_PIPE] = ACTIONS(4756), - [anon_sym_RPAREN] = ACTIONS(4754), - [anon_sym_SEMI_SEMI] = ACTIONS(4754), - [anon_sym_PIPE_AMP] = ACTIONS(4754), - [anon_sym_AMP_AMP] = ACTIONS(4754), - [anon_sym_PIPE_PIPE] = ACTIONS(4754), - [anon_sym_LT] = ACTIONS(4756), - [anon_sym_GT] = ACTIONS(4756), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_AMP_GT] = ACTIONS(4756), - [anon_sym_AMP_GT_GT] = ACTIONS(4754), - [anon_sym_LT_AMP] = ACTIONS(4754), - [anon_sym_GT_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4756), - [anon_sym_LT_LT_DASH] = ACTIONS(4754), - [anon_sym_LT_LT_LT] = ACTIONS(4754), - [anon_sym_BQUOTE] = ACTIONS(4754), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4756), + [sym_concatenation] = STATE(2613), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2613), + [anon_sym_RBRACE] = ACTIONS(6000), + [anon_sym_EQ] = ACTIONS(6002), + [anon_sym_DASH] = ACTIONS(6002), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6004), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(6006), + [anon_sym_COLON] = ACTIONS(6002), + [anon_sym_COLON_QMARK] = ACTIONS(6002), + [anon_sym_COLON_DASH] = ACTIONS(6002), + [anon_sym_PERCENT] = ACTIONS(6002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2463] = { - [sym_file_descriptor] = ACTIONS(2099), - [sym_variable_name] = ACTIONS(2099), - [anon_sym_SEMI] = ACTIONS(2101), - [anon_sym_esac] = ACTIONS(2101), - [anon_sym_PIPE] = ACTIONS(2101), - [anon_sym_SEMI_SEMI] = ACTIONS(2099), - [anon_sym_PIPE_AMP] = ACTIONS(2099), - [anon_sym_AMP_AMP] = ACTIONS(2099), - [anon_sym_PIPE_PIPE] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2101), - [anon_sym_GT] = ACTIONS(2101), - [anon_sym_GT_GT] = ACTIONS(2099), - [anon_sym_AMP_GT] = ACTIONS(2101), - [anon_sym_AMP_GT_GT] = ACTIONS(2099), - [anon_sym_LT_AMP] = ACTIONS(2099), - [anon_sym_GT_AMP] = ACTIONS(2099), - [sym__special_characters] = ACTIONS(2099), - [anon_sym_DQUOTE] = ACTIONS(2099), - [anon_sym_DOLLAR] = ACTIONS(2101), - [sym_raw_string] = ACTIONS(2099), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2099), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2099), - [anon_sym_BQUOTE] = ACTIONS(2099), - [anon_sym_LT_LPAREN] = ACTIONS(2099), - [anon_sym_GT_LPAREN] = ACTIONS(2099), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2101), - [anon_sym_LF] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2101), + [sym_concatenation] = STATE(2615), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2615), + [anon_sym_RBRACE] = ACTIONS(5992), + [anon_sym_EQ] = ACTIONS(6008), + [anon_sym_DASH] = ACTIONS(6008), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6010), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(6012), + [anon_sym_COLON] = ACTIONS(6008), + [anon_sym_COLON_QMARK] = ACTIONS(6008), + [anon_sym_COLON_DASH] = ACTIONS(6008), + [anon_sym_PERCENT] = ACTIONS(6008), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2464] = { - [sym_concatenation] = STATE(1026), - [sym_string] = STATE(558), - [sym_simple_expansion] = STATE(558), - [sym_string_expansion] = STATE(558), - [sym_expansion] = STATE(558), - [sym_command_substitution] = STATE(558), - [sym_process_substitution] = STATE(558), - [aux_sym_for_statement_repeat1] = STATE(1026), - [anon_sym_RPAREN] = ACTIONS(5946), - [sym__special_characters] = ACTIONS(1112), - [anon_sym_DQUOTE] = ACTIONS(1114), - [anon_sym_DOLLAR] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), - [anon_sym_BQUOTE] = ACTIONS(1124), - [anon_sym_LT_LPAREN] = ACTIONS(1126), - [anon_sym_GT_LPAREN] = ACTIONS(1126), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1118), + [sym__simple_heredoc_body] = ACTIONS(1834), + [sym__heredoc_body_beginning] = ACTIONS(1834), + [sym_file_descriptor] = ACTIONS(1834), + [sym__concat] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_esac] = ACTIONS(1836), + [anon_sym_PIPE] = ACTIONS(1836), + [anon_sym_SEMI_SEMI] = ACTIONS(1834), + [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP_AMP] = ACTIONS(1834), + [anon_sym_PIPE_PIPE] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1836), + [anon_sym_GT] = ACTIONS(1836), + [anon_sym_GT_GT] = ACTIONS(1834), + [anon_sym_AMP_GT] = ACTIONS(1836), + [anon_sym_AMP_GT_GT] = ACTIONS(1834), + [anon_sym_LT_AMP] = ACTIONS(1834), + [anon_sym_GT_AMP] = ACTIONS(1834), + [anon_sym_LT_LT] = ACTIONS(1836), + [anon_sym_LT_LT_DASH] = ACTIONS(1834), + [anon_sym_LT_LT_LT] = ACTIONS(1834), + [sym__special_characters] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1836), + [sym_raw_string] = ACTIONS(1834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), + [anon_sym_BQUOTE] = ACTIONS(1834), + [anon_sym_LT_LPAREN] = ACTIONS(1834), + [anon_sym_GT_LPAREN] = ACTIONS(1834), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1836), + [sym_word] = ACTIONS(1836), + [anon_sym_LF] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1836), }, [2465] = { - [sym_string] = STATE(2611), - [sym_simple_expansion] = STATE(2611), - [sym_string_expansion] = STATE(2611), - [sym_expansion] = STATE(2611), - [sym_command_substitution] = STATE(2611), - [sym_process_substitution] = STATE(2611), - [sym__special_characters] = ACTIONS(5948), - [anon_sym_DQUOTE] = ACTIONS(5330), - [anon_sym_DOLLAR] = ACTIONS(5332), - [sym_raw_string] = ACTIONS(5948), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5336), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5338), - [anon_sym_BQUOTE] = ACTIONS(5340), - [anon_sym_LT_LPAREN] = ACTIONS(5342), - [anon_sym_GT_LPAREN] = ACTIONS(5342), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5948), + [sym_concatenation] = STATE(2618), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2618), + [sym_regex] = ACTIONS(6014), + [anon_sym_RBRACE] = ACTIONS(6016), + [anon_sym_EQ] = ACTIONS(6018), + [anon_sym_DASH] = ACTIONS(6018), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6018), + [anon_sym_COLON_QMARK] = ACTIONS(6018), + [anon_sym_COLON_DASH] = ACTIONS(6018), + [anon_sym_PERCENT] = ACTIONS(6018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2466] = { - [aux_sym_concatenation_repeat1] = STATE(2612), - [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(5576), - [sym_variable_name] = ACTIONS(807), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_esac] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(809), - [anon_sym_AMP_GT_GT] = ACTIONS(807), - [anon_sym_LT_AMP] = ACTIONS(807), - [anon_sym_GT_AMP] = ACTIONS(807), - [sym__special_characters] = ACTIONS(807), - [anon_sym_DQUOTE] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(809), - [sym_raw_string] = ACTIONS(807), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(807), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(807), - [anon_sym_BQUOTE] = ACTIONS(807), - [anon_sym_LT_LPAREN] = ACTIONS(807), - [anon_sym_GT_LPAREN] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(809), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6016), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2467] = { - [sym_file_descriptor] = ACTIONS(811), - [sym__concat] = ACTIONS(811), - [sym_variable_name] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(813), - [anon_sym_esac] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(813), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_AMP_GT] = ACTIONS(813), - [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_LT_AMP] = ACTIONS(811), - [anon_sym_GT_AMP] = ACTIONS(811), - [sym__special_characters] = ACTIONS(811), - [anon_sym_DQUOTE] = ACTIONS(811), - [anon_sym_DOLLAR] = ACTIONS(813), - [sym_raw_string] = ACTIONS(811), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(811), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(811), - [anon_sym_BQUOTE] = ACTIONS(811), - [anon_sym_LT_LPAREN] = ACTIONS(811), - [anon_sym_GT_LPAREN] = ACTIONS(811), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(813), - [anon_sym_LF] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(813), + [sym__simple_heredoc_body] = ACTIONS(1882), + [sym__heredoc_body_beginning] = ACTIONS(1882), + [sym_file_descriptor] = ACTIONS(1882), + [sym__concat] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_esac] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1882), + [anon_sym_PIPE_AMP] = ACTIONS(1882), + [anon_sym_AMP_AMP] = ACTIONS(1882), + [anon_sym_PIPE_PIPE] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1882), + [anon_sym_AMP_GT] = ACTIONS(1884), + [anon_sym_AMP_GT_GT] = ACTIONS(1882), + [anon_sym_LT_AMP] = ACTIONS(1882), + [anon_sym_GT_AMP] = ACTIONS(1882), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1882), + [anon_sym_LT_LT_LT] = ACTIONS(1882), + [sym__special_characters] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1882), + [anon_sym_BQUOTE] = ACTIONS(1882), + [anon_sym_LT_LPAREN] = ACTIONS(1882), + [anon_sym_GT_LPAREN] = ACTIONS(1882), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1884), + [sym_word] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1884), }, [2468] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(5950), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [sym_concatenation] = STATE(2615), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2615), + [sym_regex] = ACTIONS(6022), + [anon_sym_RBRACE] = ACTIONS(5992), + [anon_sym_EQ] = ACTIONS(6008), + [anon_sym_DASH] = ACTIONS(6008), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6010), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6008), + [anon_sym_COLON_QMARK] = ACTIONS(6008), + [anon_sym_COLON_DASH] = ACTIONS(6008), + [anon_sym_PERCENT] = ACTIONS(6008), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2469] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(473), - [anon_sym_DQUOTE] = ACTIONS(5950), - [anon_sym_DOLLAR] = ACTIONS(5952), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(5992), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2470] = { - [sym_file_descriptor] = ACTIONS(845), - [sym__concat] = ACTIONS(845), - [sym_variable_name] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_esac] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_SEMI_SEMI] = ACTIONS(845), - [anon_sym_PIPE_AMP] = ACTIONS(845), - [anon_sym_AMP_AMP] = ACTIONS(845), - [anon_sym_PIPE_PIPE] = ACTIONS(845), - [anon_sym_LT] = ACTIONS(847), - [anon_sym_GT] = ACTIONS(847), - [anon_sym_GT_GT] = ACTIONS(845), - [anon_sym_AMP_GT] = ACTIONS(847), - [anon_sym_AMP_GT_GT] = ACTIONS(845), - [anon_sym_LT_AMP] = ACTIONS(845), - [anon_sym_GT_AMP] = ACTIONS(845), - [sym__special_characters] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(845), - [anon_sym_DOLLAR] = ACTIONS(847), - [sym_raw_string] = ACTIONS(845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(845), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(845), - [anon_sym_BQUOTE] = ACTIONS(845), - [anon_sym_LT_LPAREN] = ACTIONS(845), - [anon_sym_GT_LPAREN] = ACTIONS(845), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(847), - [anon_sym_LF] = ACTIONS(845), - [anon_sym_AMP] = ACTIONS(847), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(6024), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2471] = { - [sym_file_descriptor] = ACTIONS(849), - [sym__concat] = ACTIONS(849), - [sym_variable_name] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_esac] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_SEMI_SEMI] = ACTIONS(849), - [anon_sym_PIPE_AMP] = ACTIONS(849), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(851), - [anon_sym_GT_GT] = ACTIONS(849), - [anon_sym_AMP_GT] = ACTIONS(851), - [anon_sym_AMP_GT_GT] = ACTIONS(849), - [anon_sym_LT_AMP] = ACTIONS(849), - [anon_sym_GT_AMP] = ACTIONS(849), - [sym__special_characters] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(851), - [sym_raw_string] = ACTIONS(849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(849), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(849), - [anon_sym_BQUOTE] = ACTIONS(849), - [anon_sym_LT_LPAREN] = ACTIONS(849), - [anon_sym_GT_LPAREN] = ACTIONS(849), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(851), - [anon_sym_LF] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(851), + [sym__simple_heredoc_body] = ACTIONS(1890), + [sym__heredoc_body_beginning] = ACTIONS(1890), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_esac] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1892), + [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(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), + [sym_word] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1892), }, [2472] = { - [sym_file_descriptor] = ACTIONS(853), - [sym__concat] = ACTIONS(853), - [sym_variable_name] = ACTIONS(853), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_esac] = ACTIONS(855), - [anon_sym_PIPE] = ACTIONS(855), - [anon_sym_SEMI_SEMI] = ACTIONS(853), - [anon_sym_PIPE_AMP] = ACTIONS(853), - [anon_sym_AMP_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(853), - [anon_sym_LT] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(855), - [anon_sym_GT_GT] = ACTIONS(853), - [anon_sym_AMP_GT] = ACTIONS(855), - [anon_sym_AMP_GT_GT] = ACTIONS(853), - [anon_sym_LT_AMP] = ACTIONS(853), - [anon_sym_GT_AMP] = ACTIONS(853), - [sym__special_characters] = ACTIONS(853), - [anon_sym_DQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(855), - [sym_raw_string] = ACTIONS(853), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(853), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(853), - [anon_sym_BQUOTE] = ACTIONS(853), - [anon_sym_LT_LPAREN] = ACTIONS(853), - [anon_sym_GT_LPAREN] = ACTIONS(853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(855), - [anon_sym_LF] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(855), + [anon_sym_SEMI] = ACTIONS(6026), + [anon_sym_RPAREN] = ACTIONS(6024), + [anon_sym_SEMI_SEMI] = ACTIONS(6028), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6028), + [anon_sym_AMP] = ACTIONS(6028), }, [2473] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(5954), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2623), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(6030), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(6024), + [anon_sym_SEMI_SEMI] = ACTIONS(6032), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6032), + [anon_sym_AMP] = ACTIONS(6030), }, [2474] = { - [sym_subscript] = STATE(2618), - [sym_variable_name] = ACTIONS(5956), - [anon_sym_DASH] = ACTIONS(5958), - [anon_sym_DOLLAR] = ACTIONS(5958), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5960), - [anon_sym_STAR] = ACTIONS(5962), - [anon_sym_AT] = ACTIONS(5962), - [anon_sym_QMARK] = ACTIONS(5962), - [anon_sym_0] = ACTIONS(5960), - [anon_sym__] = ACTIONS(5960), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2623), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(6030), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(6024), + [anon_sym_SEMI_SEMI] = ACTIONS(6032), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(6032), + [anon_sym_AMP] = ACTIONS(6030), }, [2475] = { - [sym_concatenation] = STATE(2621), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2621), - [anon_sym_RBRACE] = ACTIONS(5964), - [anon_sym_EQ] = ACTIONS(5966), - [anon_sym_DASH] = ACTIONS(5966), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5968), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(5970), - [anon_sym_COLON] = ACTIONS(5966), - [anon_sym_COLON_QMARK] = ACTIONS(5966), - [anon_sym_COLON_DASH] = ACTIONS(5966), - [anon_sym_PERCENT] = ACTIONS(5966), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(6024), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2476] = { - [sym_concatenation] = STATE(2624), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2624), - [anon_sym_RBRACE] = ACTIONS(5972), - [anon_sym_EQ] = ACTIONS(5974), - [anon_sym_DASH] = ACTIONS(5974), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(5976), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(5978), - [anon_sym_COLON] = ACTIONS(5974), - [anon_sym_COLON_QMARK] = ACTIONS(5974), - [anon_sym_COLON_DASH] = ACTIONS(5974), - [anon_sym_PERCENT] = ACTIONS(5974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(6034), + [anon_sym_SEMI_SEMI] = ACTIONS(6036), + [anon_sym_BQUOTE] = ACTIONS(6024), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6036), + [anon_sym_AMP] = ACTIONS(6036), }, [2477] = { - [anon_sym_SEMI] = ACTIONS(5980), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(5982), - [anon_sym_SEMI_SEMI] = ACTIONS(5984), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5984), - [anon_sym_AMP] = ACTIONS(5980), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(2626), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(6038), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(6040), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(6024), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6040), + [anon_sym_AMP] = ACTIONS(6038), }, [2478] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(5980), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(5982), - [anon_sym_SEMI_SEMI] = ACTIONS(5984), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(5984), - [anon_sym_AMP] = ACTIONS(5980), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(2626), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(6038), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(6040), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(6024), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(6040), + [anon_sym_AMP] = ACTIONS(6038), }, [2479] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(2627), - [sym_c_style_for_statement] = STATE(2627), - [sym_while_statement] = STATE(2627), - [sym_if_statement] = STATE(2627), - [sym_case_statement] = STATE(2627), - [sym_function_definition] = STATE(2627), - [sym_subshell] = STATE(2627), - [sym_pipeline] = STATE(2627), - [sym_list] = STATE(2627), - [sym_negated_command] = STATE(2627), - [sym_test_command] = STATE(2627), - [sym_declaration_command] = STATE(2627), - [sym_unset_command] = STATE(2627), - [sym_command] = STATE(2627), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(2628), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(6042), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2480] = { - [anon_sym_SEMI] = ACTIONS(5986), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(5988), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(5982), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5988), - [anon_sym_AMP] = ACTIONS(5986), + [sym__simple_heredoc_body] = ACTIONS(1924), + [sym__heredoc_body_beginning] = ACTIONS(1924), + [sym_file_descriptor] = ACTIONS(1924), + [sym__concat] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_esac] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [anon_sym_PIPE_AMP] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_GT_GT] = ACTIONS(1924), + [anon_sym_AMP_GT] = ACTIONS(1926), + [anon_sym_AMP_GT_GT] = ACTIONS(1924), + [anon_sym_LT_AMP] = ACTIONS(1924), + [anon_sym_GT_AMP] = ACTIONS(1924), + [anon_sym_LT_LT] = ACTIONS(1926), + [anon_sym_LT_LT_DASH] = ACTIONS(1924), + [anon_sym_LT_LT_LT] = ACTIONS(1924), + [sym__special_characters] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(1924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), + [anon_sym_BQUOTE] = ACTIONS(1924), + [anon_sym_LT_LPAREN] = ACTIONS(1924), + [anon_sym_GT_LPAREN] = ACTIONS(1924), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1926), + [sym_word] = ACTIONS(1926), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1926), }, [2481] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(5986), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(5988), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(5982), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(5988), - [anon_sym_AMP] = ACTIONS(5986), + [anon_sym_SEMI] = ACTIONS(6044), + [anon_sym_RPAREN] = ACTIONS(6042), + [anon_sym_SEMI_SEMI] = ACTIONS(6046), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6046), + [anon_sym_AMP] = ACTIONS(6046), }, [2482] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(2630), - [sym_c_style_for_statement] = STATE(2630), - [sym_while_statement] = STATE(2630), - [sym_if_statement] = STATE(2630), - [sym_case_statement] = STATE(2630), - [sym_function_definition] = STATE(2630), - [sym_subshell] = STATE(2630), - [sym_pipeline] = STATE(2630), - [sym_list] = STATE(2630), - [sym_negated_command] = STATE(2630), - [sym_test_command] = STATE(2630), - [sym_declaration_command] = STATE(2630), - [sym_unset_command] = STATE(2630), - [sym_command] = STATE(2630), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(2631), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2630), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(6048), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(6042), + [anon_sym_SEMI_SEMI] = ACTIONS(6050), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6050), + [anon_sym_AMP] = ACTIONS(6048), }, [2483] = { - [anon_sym_SEMI] = ACTIONS(5990), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(5992), - [anon_sym_SEMI_SEMI] = ACTIONS(5994), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5994), - [anon_sym_AMP] = ACTIONS(5990), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2630), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(6048), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(6042), + [anon_sym_SEMI_SEMI] = ACTIONS(6050), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(6050), + [anon_sym_AMP] = ACTIONS(6048), }, [2484] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(5990), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(5992), - [anon_sym_SEMI_SEMI] = ACTIONS(5994), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(5994), - [anon_sym_AMP] = ACTIONS(5990), + [sym__simple_heredoc_body] = ACTIONS(2930), + [sym__heredoc_body_beginning] = ACTIONS(2930), + [sym_file_descriptor] = ACTIONS(2930), + [sym__concat] = ACTIONS(2930), + [anon_sym_SEMI] = ACTIONS(2932), + [anon_sym_esac] = ACTIONS(2932), + [anon_sym_PIPE] = ACTIONS(2932), + [anon_sym_SEMI_SEMI] = ACTIONS(2930), + [anon_sym_PIPE_AMP] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_PIPE_PIPE] = ACTIONS(2930), + [anon_sym_EQ_TILDE] = ACTIONS(2932), + [anon_sym_EQ_EQ] = ACTIONS(2932), + [anon_sym_LT] = ACTIONS(2932), + [anon_sym_GT] = ACTIONS(2932), + [anon_sym_GT_GT] = ACTIONS(2930), + [anon_sym_AMP_GT] = ACTIONS(2932), + [anon_sym_AMP_GT_GT] = ACTIONS(2930), + [anon_sym_LT_AMP] = ACTIONS(2930), + [anon_sym_GT_AMP] = ACTIONS(2930), + [anon_sym_LT_LT] = ACTIONS(2932), + [anon_sym_LT_LT_DASH] = ACTIONS(2930), + [anon_sym_LT_LT_LT] = ACTIONS(2930), + [sym__special_characters] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [anon_sym_DOLLAR] = ACTIONS(2932), + [sym_raw_string] = ACTIONS(2930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2930), + [anon_sym_BQUOTE] = ACTIONS(2930), + [anon_sym_LT_LPAREN] = ACTIONS(2930), + [anon_sym_GT_LPAREN] = ACTIONS(2930), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2932), + [anon_sym_LF] = ACTIONS(2930), + [anon_sym_AMP] = ACTIONS(2932), }, [2485] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(2634), - [sym_c_style_for_statement] = STATE(2634), - [sym_while_statement] = STATE(2634), - [sym_if_statement] = STATE(2634), - [sym_case_statement] = STATE(2634), - [sym_function_definition] = STATE(2634), - [sym_subshell] = STATE(2634), - [sym_pipeline] = STATE(2634), - [sym_list] = STATE(2634), - [sym_negated_command] = STATE(2634), - [sym_test_command] = STATE(2634), - [sym_declaration_command] = STATE(2634), - [sym_unset_command] = STATE(2634), - [sym_command] = STATE(2634), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(2635), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym__simple_heredoc_body] = ACTIONS(2944), + [sym__heredoc_body_beginning] = ACTIONS(2944), + [sym_file_descriptor] = ACTIONS(2944), + [sym__concat] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_esac] = ACTIONS(2946), + [anon_sym_PIPE] = ACTIONS(2946), + [anon_sym_SEMI_SEMI] = ACTIONS(2944), + [anon_sym_PIPE_AMP] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_EQ_TILDE] = ACTIONS(2946), + [anon_sym_EQ_EQ] = ACTIONS(2946), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_GT] = ACTIONS(2946), + [anon_sym_GT_GT] = ACTIONS(2944), + [anon_sym_AMP_GT] = ACTIONS(2946), + [anon_sym_AMP_GT_GT] = ACTIONS(2944), + [anon_sym_LT_AMP] = ACTIONS(2944), + [anon_sym_GT_AMP] = ACTIONS(2944), + [anon_sym_LT_LT] = ACTIONS(2946), + [anon_sym_LT_LT_DASH] = ACTIONS(2944), + [anon_sym_LT_LT_LT] = ACTIONS(2944), + [sym__special_characters] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_DOLLAR] = ACTIONS(2946), + [sym_raw_string] = ACTIONS(2944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2944), + [anon_sym_BQUOTE] = ACTIONS(2944), + [anon_sym_LT_LPAREN] = ACTIONS(2944), + [anon_sym_GT_LPAREN] = ACTIONS(2944), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2946), + [anon_sym_LF] = ACTIONS(2944), + [anon_sym_AMP] = ACTIONS(2946), }, [2486] = { - [anon_sym_LT] = ACTIONS(5996), - [anon_sym_GT] = ACTIONS(5996), - [anon_sym_GT_GT] = ACTIONS(5998), - [anon_sym_AMP_GT] = ACTIONS(5996), - [anon_sym_AMP_GT_GT] = ACTIONS(5998), - [anon_sym_LT_AMP] = ACTIONS(5998), - [anon_sym_GT_AMP] = ACTIONS(5998), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(6052), + [sym_comment] = ACTIONS(57), }, [2487] = { - [sym_concatenation] = STATE(1166), - [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(6000), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(6002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2406), - [anon_sym_LT_LPAREN] = ACTIONS(2408), - [anon_sym_GT_LPAREN] = ACTIONS(2408), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(6002), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(6054), + [sym_comment] = ACTIONS(57), }, [2488] = { - [sym_concatenation] = STATE(1170), - [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(6004), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(6006), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2406), - [anon_sym_LT_LPAREN] = ACTIONS(2408), - [anon_sym_GT_LPAREN] = ACTIONS(2408), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(6006), + [anon_sym_RBRACE] = ACTIONS(6054), + [sym_comment] = ACTIONS(57), }, [2489] = { - [sym_file_redirect] = STATE(2641), - [sym_heredoc_redirect] = STATE(2641), - [sym_herestring_redirect] = STATE(2641), - [aux_sym_while_statement_repeat1] = STATE(2641), - [sym_file_descriptor] = ACTIONS(5600), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_esac] = ACTIONS(2416), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_SEMI_SEMI] = ACTIONS(2416), - [anon_sym_PIPE_AMP] = ACTIONS(2416), - [anon_sym_AMP_AMP] = ACTIONS(2416), - [anon_sym_PIPE_PIPE] = ACTIONS(2416), - [anon_sym_LT] = ACTIONS(5602), - [anon_sym_GT] = ACTIONS(5602), - [anon_sym_GT_GT] = ACTIONS(5604), - [anon_sym_AMP_GT] = ACTIONS(5602), - [anon_sym_AMP_GT_GT] = ACTIONS(5604), - [anon_sym_LT_AMP] = ACTIONS(5604), - [anon_sym_GT_AMP] = ACTIONS(5604), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_LT_LT_DASH] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(5606), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2418), + [sym_concatenation] = STATE(2635), + [sym_string] = STATE(2634), + [sym_simple_expansion] = STATE(2634), + [sym_string_expansion] = STATE(2634), + [sym_expansion] = STATE(2634), + [sym_command_substitution] = STATE(2634), + [sym_process_substitution] = STATE(2634), + [anon_sym_RBRACE] = ACTIONS(6054), + [sym__special_characters] = ACTIONS(6056), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(6058), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6058), }, [2490] = { - [sym_file_redirect] = STATE(2418), - [sym_heredoc_redirect] = STATE(2418), - [sym_heredoc_body] = STATE(1188), - [sym_herestring_redirect] = STATE(2418), - [aux_sym_while_statement_repeat1] = STATE(2418), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(2479), - [anon_sym_esac] = ACTIONS(2477), - [anon_sym_PIPE] = ACTIONS(2479), - [anon_sym_SEMI_SEMI] = ACTIONS(2477), - [anon_sym_PIPE_AMP] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_PIPE_PIPE] = ACTIONS(2477), - [anon_sym_LT] = ACTIONS(5095), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_GT_GT] = ACTIONS(5097), - [anon_sym_AMP_GT] = ACTIONS(5095), - [anon_sym_AMP_GT_GT] = ACTIONS(5097), - [anon_sym_LT_AMP] = ACTIONS(5097), - [anon_sym_GT_AMP] = ACTIONS(5097), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(5099), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2479), + [sym__simple_heredoc_body] = ACTIONS(2980), + [sym__heredoc_body_beginning] = ACTIONS(2980), + [sym_file_descriptor] = ACTIONS(2980), + [sym__concat] = ACTIONS(2980), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_esac] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2982), + [anon_sym_SEMI_SEMI] = ACTIONS(2980), + [anon_sym_PIPE_AMP] = ACTIONS(2980), + [anon_sym_AMP_AMP] = ACTIONS(2980), + [anon_sym_PIPE_PIPE] = ACTIONS(2980), + [anon_sym_EQ_TILDE] = ACTIONS(2982), + [anon_sym_EQ_EQ] = ACTIONS(2982), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_GT] = ACTIONS(2982), + [anon_sym_GT_GT] = ACTIONS(2980), + [anon_sym_AMP_GT] = ACTIONS(2982), + [anon_sym_AMP_GT_GT] = ACTIONS(2980), + [anon_sym_LT_AMP] = ACTIONS(2980), + [anon_sym_GT_AMP] = ACTIONS(2980), + [anon_sym_LT_LT] = ACTIONS(2982), + [anon_sym_LT_LT_DASH] = ACTIONS(2980), + [anon_sym_LT_LT_LT] = ACTIONS(2980), + [sym__special_characters] = ACTIONS(2980), + [anon_sym_DQUOTE] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2982), + [sym_raw_string] = ACTIONS(2980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2980), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2980), + [anon_sym_BQUOTE] = ACTIONS(2980), + [anon_sym_LT_LPAREN] = ACTIONS(2980), + [anon_sym_GT_LPAREN] = ACTIONS(2980), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2982), + [anon_sym_LF] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), }, [2491] = { - [sym_compound_statement] = STATE(2642), - [anon_sym_LBRACE] = ACTIONS(595), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(2638), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2638), + [sym_regex] = ACTIONS(6060), + [anon_sym_RBRACE] = ACTIONS(6062), + [anon_sym_EQ] = ACTIONS(6064), + [anon_sym_DASH] = ACTIONS(6064), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6066), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6064), + [anon_sym_COLON_QMARK] = ACTIONS(6064), + [anon_sym_COLON_DASH] = ACTIONS(6064), + [anon_sym_PERCENT] = ACTIONS(6064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2492] = { - [anon_sym_LT] = ACTIONS(6008), - [anon_sym_GT] = ACTIONS(6008), - [anon_sym_GT_GT] = ACTIONS(6010), - [anon_sym_AMP_GT] = ACTIONS(6008), - [anon_sym_AMP_GT_GT] = ACTIONS(6010), - [anon_sym_LT_AMP] = ACTIONS(6010), - [anon_sym_GT_AMP] = ACTIONS(6010), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6062), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2493] = { - [sym_concatenation] = STATE(1238), - [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__special_characters] = ACTIONS(6012), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(413), - [sym_raw_string] = ACTIONS(6014), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [anon_sym_BQUOTE] = ACTIONS(421), - [anon_sym_LT_LPAREN] = ACTIONS(423), - [anon_sym_GT_LPAREN] = ACTIONS(423), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(6014), + [sym_concatenation] = STATE(2640), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2640), + [sym_regex] = ACTIONS(6068), + [anon_sym_RBRACE] = ACTIONS(6054), + [anon_sym_EQ] = ACTIONS(6070), + [anon_sym_DASH] = ACTIONS(6070), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6072), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6070), + [anon_sym_COLON_QMARK] = ACTIONS(6070), + [anon_sym_COLON_DASH] = ACTIONS(6070), + [anon_sym_PERCENT] = ACTIONS(6070), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2494] = { - [sym_variable_name] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_esac] = ACTIONS(1108), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_SEMI_SEMI] = ACTIONS(1106), - [anon_sym_PIPE_AMP] = ACTIONS(1106), - [anon_sym_AMP_AMP] = ACTIONS(1106), - [anon_sym_PIPE_PIPE] = ACTIONS(1106), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [sym_raw_string] = ACTIONS(1106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), - [anon_sym_BQUOTE] = ACTIONS(1106), - [anon_sym_LT_LPAREN] = ACTIONS(1106), - [anon_sym_GT_LPAREN] = ACTIONS(1106), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1108), - [sym_word] = ACTIONS(1108), - [anon_sym_LF] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6054), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2495] = { - [sym_concatenation] = STATE(2647), - [sym_string] = STATE(558), - [sym_simple_expansion] = STATE(558), - [sym_string_expansion] = STATE(558), - [sym_expansion] = STATE(558), - [sym_command_substitution] = STATE(558), - [sym_process_substitution] = STATE(558), - [aux_sym_for_statement_repeat1] = STATE(2647), - [anon_sym_RPAREN] = ACTIONS(6016), - [sym__special_characters] = ACTIONS(1112), - [anon_sym_DQUOTE] = ACTIONS(1114), - [anon_sym_DOLLAR] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), - [anon_sym_BQUOTE] = ACTIONS(1124), - [anon_sym_LT_LPAREN] = ACTIONS(1126), - [anon_sym_GT_LPAREN] = ACTIONS(1126), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1118), + [sym_concatenation] = STATE(2642), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2642), + [anon_sym_RBRACE] = ACTIONS(6074), + [anon_sym_EQ] = ACTIONS(6076), + [anon_sym_DASH] = ACTIONS(6076), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6078), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6076), + [anon_sym_COLON_QMARK] = ACTIONS(6076), + [anon_sym_COLON_DASH] = ACTIONS(6076), + [anon_sym_PERCENT] = ACTIONS(6076), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2496] = { - [aux_sym_concatenation_repeat1] = STATE(2332), - [sym__concat] = ACTIONS(5350), - [sym_variable_name] = ACTIONS(1128), - [anon_sym_SEMI] = ACTIONS(1132), - [anon_sym_esac] = ACTIONS(1132), - [anon_sym_PIPE] = ACTIONS(1132), - [anon_sym_SEMI_SEMI] = ACTIONS(1128), - [anon_sym_PIPE_AMP] = ACTIONS(1128), - [anon_sym_AMP_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1128), - [sym__special_characters] = ACTIONS(1128), - [anon_sym_DQUOTE] = ACTIONS(1128), - [anon_sym_DOLLAR] = ACTIONS(1132), - [sym_raw_string] = ACTIONS(1128), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1128), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), - [anon_sym_BQUOTE] = ACTIONS(1128), - [anon_sym_LT_LPAREN] = ACTIONS(1128), - [anon_sym_GT_LPAREN] = ACTIONS(1128), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1132), - [sym_word] = ACTIONS(1132), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1132), + [sym__simple_heredoc_body] = ACTIONS(3036), + [sym__heredoc_body_beginning] = ACTIONS(3036), + [sym_file_descriptor] = ACTIONS(3036), + [sym__concat] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_esac] = ACTIONS(3038), + [anon_sym_PIPE] = ACTIONS(3038), + [anon_sym_SEMI_SEMI] = ACTIONS(3036), + [anon_sym_PIPE_AMP] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [anon_sym_EQ_TILDE] = ACTIONS(3038), + [anon_sym_EQ_EQ] = ACTIONS(3038), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3038), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_AMP_GT] = ACTIONS(3038), + [anon_sym_AMP_GT_GT] = ACTIONS(3036), + [anon_sym_LT_AMP] = ACTIONS(3036), + [anon_sym_GT_AMP] = ACTIONS(3036), + [anon_sym_LT_LT] = ACTIONS(3038), + [anon_sym_LT_LT_DASH] = ACTIONS(3036), + [anon_sym_LT_LT_LT] = ACTIONS(3036), + [sym__special_characters] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_DOLLAR] = ACTIONS(3038), + [sym_raw_string] = ACTIONS(3036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3036), + [anon_sym_BQUOTE] = ACTIONS(3036), + [anon_sym_LT_LPAREN] = ACTIONS(3036), + [anon_sym_GT_LPAREN] = ACTIONS(3036), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3038), + [anon_sym_LF] = ACTIONS(3036), + [anon_sym_AMP] = ACTIONS(3038), }, [2497] = { - [aux_sym_concatenation_repeat1] = STATE(2332), - [sym__concat] = ACTIONS(5350), - [sym_variable_name] = ACTIONS(1106), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_esac] = ACTIONS(1108), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_SEMI_SEMI] = ACTIONS(1106), - [anon_sym_PIPE_AMP] = ACTIONS(1106), - [anon_sym_AMP_AMP] = ACTIONS(1106), - [anon_sym_PIPE_PIPE] = ACTIONS(1106), - [sym__special_characters] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1108), - [sym_raw_string] = ACTIONS(1106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1106), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), - [anon_sym_BQUOTE] = ACTIONS(1106), - [anon_sym_LT_LPAREN] = ACTIONS(1106), - [anon_sym_GT_LPAREN] = ACTIONS(1106), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1108), - [sym_word] = ACTIONS(1108), - [anon_sym_LF] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1108), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6074), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2498] = { - [sym__concat] = ACTIONS(1763), - [sym_variable_name] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_esac] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym_concatenation] = STATE(2640), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2640), + [anon_sym_RBRACE] = ACTIONS(6054), + [anon_sym_EQ] = ACTIONS(6070), + [anon_sym_DASH] = ACTIONS(6070), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6072), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6070), + [anon_sym_COLON_QMARK] = ACTIONS(6070), + [anon_sym_COLON_DASH] = ACTIONS(6070), + [anon_sym_PERCENT] = ACTIONS(6070), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2499] = { - [aux_sym_concatenation_repeat1] = STATE(2499), - [sym__concat] = ACTIONS(6018), - [sym_variable_name] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_esac] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym__simple_heredoc_body] = ACTIONS(3091), + [sym__heredoc_body_beginning] = ACTIONS(3091), + [sym_file_descriptor] = ACTIONS(3091), + [sym__concat] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_esac] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3093), + [anon_sym_SEMI_SEMI] = ACTIONS(3091), + [anon_sym_PIPE_AMP] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_EQ_TILDE] = ACTIONS(3093), + [anon_sym_EQ_EQ] = ACTIONS(3093), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_GT] = ACTIONS(3093), + [anon_sym_GT_GT] = ACTIONS(3091), + [anon_sym_AMP_GT] = ACTIONS(3093), + [anon_sym_AMP_GT_GT] = ACTIONS(3091), + [anon_sym_LT_AMP] = ACTIONS(3091), + [anon_sym_GT_AMP] = ACTIONS(3091), + [anon_sym_LT_LT] = ACTIONS(3093), + [anon_sym_LT_LT_DASH] = ACTIONS(3091), + [anon_sym_LT_LT_LT] = ACTIONS(3091), + [sym__special_characters] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [anon_sym_DOLLAR] = ACTIONS(3093), + [sym_raw_string] = ACTIONS(3091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3091), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(3091), + [anon_sym_LT_LPAREN] = ACTIONS(3091), + [anon_sym_GT_LPAREN] = ACTIONS(3091), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3093), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3093), }, [2500] = { - [sym__concat] = ACTIONS(1770), - [sym_variable_name] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_esac] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_SEMI_SEMI] = ACTIONS(1770), - [anon_sym_PIPE_AMP] = ACTIONS(1770), - [anon_sym_AMP_AMP] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1770), - [sym__special_characters] = ACTIONS(1770), - [anon_sym_DQUOTE] = ACTIONS(1770), - [anon_sym_DOLLAR] = ACTIONS(1772), - [sym_raw_string] = ACTIONS(1770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), - [anon_sym_BQUOTE] = ACTIONS(1770), - [anon_sym_LT_LPAREN] = ACTIONS(1770), - [anon_sym_GT_LPAREN] = ACTIONS(1770), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1772), - [sym_word] = ACTIONS(1772), - [anon_sym_LF] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1772), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(6080), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [2501] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(6021), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(6080), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2502] = { - [sym_concatenation] = STATE(2652), - [sym_string] = STATE(2651), - [sym_simple_expansion] = STATE(2651), - [sym_string_expansion] = STATE(2651), - [sym_expansion] = STATE(2651), - [sym_command_substitution] = STATE(2651), - [sym_process_substitution] = STATE(2651), - [anon_sym_RBRACE] = ACTIONS(6023), - [sym__special_characters] = ACTIONS(6025), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(6027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(6027), + [anon_sym_SEMI] = ACTIONS(6082), + [anon_sym_RPAREN] = ACTIONS(6080), + [anon_sym_SEMI_SEMI] = ACTIONS(6084), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6084), + [anon_sym_AMP] = ACTIONS(6084), }, [2503] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(6029), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(6080), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [2504] = { - [sym_concatenation] = STATE(2656), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2656), - [anon_sym_RBRACE] = ACTIONS(6031), - [anon_sym_EQ] = ACTIONS(6033), - [anon_sym_DASH] = ACTIONS(6033), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6035), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(6037), - [anon_sym_COLON] = ACTIONS(6033), - [anon_sym_COLON_QMARK] = ACTIONS(6033), - [anon_sym_COLON_DASH] = ACTIONS(6033), - [anon_sym_PERCENT] = ACTIONS(6033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(6080), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2505] = { - [sym_concatenation] = STATE(2658), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2658), - [anon_sym_RBRACE] = ACTIONS(6023), - [anon_sym_EQ] = ACTIONS(6039), - [anon_sym_DASH] = ACTIONS(6039), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6041), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(6043), - [anon_sym_COLON] = ACTIONS(6039), - [anon_sym_COLON_QMARK] = ACTIONS(6039), - [anon_sym_COLON_DASH] = ACTIONS(6039), - [anon_sym_PERCENT] = ACTIONS(6039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(6086), + [anon_sym_SEMI_SEMI] = ACTIONS(6088), + [anon_sym_BQUOTE] = ACTIONS(6080), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6088), + [anon_sym_AMP] = ACTIONS(6088), }, [2506] = { - [sym__concat] = ACTIONS(1871), - [sym_variable_name] = ACTIONS(1871), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_esac] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_SEMI_SEMI] = ACTIONS(1871), - [anon_sym_PIPE_AMP] = ACTIONS(1871), - [anon_sym_AMP_AMP] = ACTIONS(1871), - [anon_sym_PIPE_PIPE] = ACTIONS(1871), - [sym__special_characters] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1871), - [anon_sym_DOLLAR] = ACTIONS(1873), - [sym_raw_string] = ACTIONS(1871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), - [anon_sym_BQUOTE] = ACTIONS(1871), - [anon_sym_LT_LPAREN] = ACTIONS(1871), - [anon_sym_GT_LPAREN] = ACTIONS(1871), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1873), - [sym_word] = ACTIONS(1873), - [anon_sym_LF] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1873), + [sym__simple_heredoc_body] = ACTIONS(3121), + [sym__heredoc_body_beginning] = ACTIONS(3121), + [sym_file_descriptor] = ACTIONS(3121), + [sym__concat] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_esac] = ACTIONS(3123), + [anon_sym_PIPE] = ACTIONS(3123), + [anon_sym_SEMI_SEMI] = ACTIONS(3121), + [anon_sym_PIPE_AMP] = ACTIONS(3121), + [anon_sym_AMP_AMP] = ACTIONS(3121), + [anon_sym_PIPE_PIPE] = ACTIONS(3121), + [anon_sym_EQ_TILDE] = ACTIONS(3123), + [anon_sym_EQ_EQ] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3123), + [anon_sym_GT] = ACTIONS(3123), + [anon_sym_GT_GT] = ACTIONS(3121), + [anon_sym_AMP_GT] = ACTIONS(3123), + [anon_sym_AMP_GT_GT] = ACTIONS(3121), + [anon_sym_LT_AMP] = ACTIONS(3121), + [anon_sym_GT_AMP] = ACTIONS(3121), + [anon_sym_LT_LT] = ACTIONS(3123), + [anon_sym_LT_LT_DASH] = ACTIONS(3121), + [anon_sym_LT_LT_LT] = ACTIONS(3121), + [sym__special_characters] = ACTIONS(3121), + [anon_sym_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3123), + [sym_raw_string] = ACTIONS(3121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3121), + [anon_sym_BQUOTE] = ACTIONS(3121), + [anon_sym_LT_LPAREN] = ACTIONS(3121), + [anon_sym_GT_LPAREN] = ACTIONS(3121), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3123), + [anon_sym_LF] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), }, [2507] = { - [sym_concatenation] = STATE(2661), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2661), - [sym_regex] = ACTIONS(6045), - [anon_sym_RBRACE] = ACTIONS(6047), - [anon_sym_EQ] = ACTIONS(6049), - [anon_sym_DASH] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6049), - [anon_sym_COLON_QMARK] = ACTIONS(6049), - [anon_sym_COLON_DASH] = ACTIONS(6049), - [anon_sym_PERCENT] = ACTIONS(6049), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(6090), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [2508] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6047), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(6090), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2509] = { - [sym__concat] = ACTIONS(1919), - [sym_variable_name] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_esac] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_SEMI_SEMI] = ACTIONS(1919), - [anon_sym_PIPE_AMP] = ACTIONS(1919), - [anon_sym_AMP_AMP] = ACTIONS(1919), - [anon_sym_PIPE_PIPE] = ACTIONS(1919), - [sym__special_characters] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1921), - [sym_raw_string] = ACTIONS(1919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), - [anon_sym_BQUOTE] = ACTIONS(1919), - [anon_sym_LT_LPAREN] = ACTIONS(1919), - [anon_sym_GT_LPAREN] = ACTIONS(1919), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1921), - [sym_word] = ACTIONS(1921), - [anon_sym_LF] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(6092), + [anon_sym_RPAREN] = ACTIONS(6090), + [anon_sym_SEMI_SEMI] = ACTIONS(6094), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6094), + [anon_sym_AMP] = ACTIONS(6094), }, [2510] = { - [sym_concatenation] = STATE(2658), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2658), - [sym_regex] = ACTIONS(6053), - [anon_sym_RBRACE] = ACTIONS(6023), - [anon_sym_EQ] = ACTIONS(6039), - [anon_sym_DASH] = ACTIONS(6039), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6041), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6039), - [anon_sym_COLON_QMARK] = ACTIONS(6039), - [anon_sym_COLON_DASH] = ACTIONS(6039), - [anon_sym_PERCENT] = ACTIONS(6039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(2513), + [sym__simple_heredoc_body] = ACTIONS(1067), + [sym__heredoc_body_beginning] = ACTIONS(1067), + [sym_file_descriptor] = ACTIONS(1067), + [sym__concat] = ACTIONS(5768), + [anon_sym_SEMI] = ACTIONS(1069), + [anon_sym_esac] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(1069), + [anon_sym_SEMI_SEMI] = ACTIONS(1067), + [anon_sym_PIPE_AMP] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1067), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_LT] = ACTIONS(1069), + [anon_sym_GT] = ACTIONS(1069), + [anon_sym_GT_GT] = ACTIONS(1067), + [anon_sym_AMP_GT] = ACTIONS(1069), + [anon_sym_AMP_GT_GT] = ACTIONS(1067), + [anon_sym_LT_AMP] = ACTIONS(1067), + [anon_sym_GT_AMP] = ACTIONS(1067), + [anon_sym_LT_LT] = ACTIONS(1069), + [anon_sym_LT_LT_DASH] = ACTIONS(1067), + [anon_sym_LT_LT_LT] = ACTIONS(1067), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1069), }, [2511] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6023), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(2513), + [sym__simple_heredoc_body] = ACTIONS(1071), + [sym__heredoc_body_beginning] = ACTIONS(1071), + [sym_file_descriptor] = ACTIONS(1071), + [sym__concat] = ACTIONS(5768), + [anon_sym_SEMI] = ACTIONS(1073), + [anon_sym_esac] = ACTIONS(1071), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_SEMI_SEMI] = ACTIONS(1071), + [anon_sym_PIPE_AMP] = ACTIONS(1071), + [anon_sym_AMP_AMP] = ACTIONS(1071), + [anon_sym_PIPE_PIPE] = ACTIONS(1071), + [anon_sym_LT] = ACTIONS(1073), + [anon_sym_GT] = ACTIONS(1073), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_AMP_GT] = ACTIONS(1073), + [anon_sym_AMP_GT_GT] = ACTIONS(1071), + [anon_sym_LT_AMP] = ACTIONS(1071), + [anon_sym_GT_AMP] = ACTIONS(1071), + [anon_sym_LT_LT] = ACTIONS(1073), + [anon_sym_LT_LT_DASH] = ACTIONS(1071), + [anon_sym_LT_LT_LT] = ACTIONS(1071), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1071), + [anon_sym_AMP] = ACTIONS(1073), }, [2512] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_string] = STATE(2648), + [sym_simple_expansion] = STATE(2648), + [sym_string_expansion] = STATE(2648), + [sym_expansion] = STATE(2648), + [sym_command_substitution] = STATE(2648), + [sym_process_substitution] = STATE(2648), + [sym__special_characters] = ACTIONS(6096), + [anon_sym_DQUOTE] = ACTIONS(5404), + [anon_sym_DOLLAR] = ACTIONS(5406), + [sym_raw_string] = ACTIONS(6096), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5412), + [anon_sym_BQUOTE] = ACTIONS(5414), + [anon_sym_LT_LPAREN] = ACTIONS(5416), + [anon_sym_GT_LPAREN] = ACTIONS(5416), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6096), }, [2513] = { - [sym__concat] = ACTIONS(1927), - [sym_variable_name] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_esac] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1927), - [anon_sym_PIPE_AMP] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [sym__special_characters] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1929), - [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(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1929), - [sym_word] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1927), - [anon_sym_AMP] = ACTIONS(1929), + [aux_sym_concatenation_repeat1] = STATE(2649), + [sym__simple_heredoc_body] = ACTIONS(779), + [sym__heredoc_body_beginning] = ACTIONS(779), + [sym_file_descriptor] = ACTIONS(779), + [sym__concat] = ACTIONS(5768), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_esac] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_SEMI_SEMI] = ACTIONS(779), + [anon_sym_PIPE_AMP] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(779), + [anon_sym_PIPE_PIPE] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(781), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_AMP_GT] = ACTIONS(781), + [anon_sym_AMP_GT_GT] = ACTIONS(779), + [anon_sym_LT_AMP] = ACTIONS(779), + [anon_sym_GT_AMP] = ACTIONS(779), + [anon_sym_LT_LT] = ACTIONS(781), + [anon_sym_LT_LT_DASH] = ACTIONS(779), + [anon_sym_LT_LT_LT] = ACTIONS(779), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(781), }, [2514] = { - [anon_sym_SEMI] = ACTIONS(6057), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_SEMI_SEMI] = ACTIONS(6059), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(6059), - [anon_sym_AMP] = ACTIONS(6057), + [sym__simple_heredoc_body] = ACTIONS(783), + [sym__heredoc_body_beginning] = ACTIONS(783), + [sym_file_descriptor] = ACTIONS(783), + [sym__concat] = ACTIONS(783), + [anon_sym_SEMI] = ACTIONS(785), + [anon_sym_esac] = ACTIONS(783), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_SEMI_SEMI] = ACTIONS(783), + [anon_sym_PIPE_AMP] = ACTIONS(783), + [anon_sym_AMP_AMP] = ACTIONS(783), + [anon_sym_PIPE_PIPE] = ACTIONS(783), + [anon_sym_LT] = ACTIONS(785), + [anon_sym_GT] = ACTIONS(785), + [anon_sym_GT_GT] = ACTIONS(783), + [anon_sym_AMP_GT] = ACTIONS(785), + [anon_sym_AMP_GT_GT] = ACTIONS(783), + [anon_sym_LT_AMP] = ACTIONS(783), + [anon_sym_GT_AMP] = ACTIONS(783), + [anon_sym_LT_LT] = ACTIONS(785), + [anon_sym_LT_LT_DASH] = ACTIONS(783), + [anon_sym_LT_LT_LT] = ACTIONS(783), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(783), + [anon_sym_AMP] = ACTIONS(785), }, [2515] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(6057), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_SEMI_SEMI] = ACTIONS(6059), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(6059), - [anon_sym_AMP] = ACTIONS(6057), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(6098), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [2516] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_simple_expansion] = STATE(143), + [sym_expansion] = STATE(143), + [sym_command_substitution] = STATE(143), + [aux_sym_string_repeat1] = STATE(455), + [anon_sym_DQUOTE] = ACTIONS(6098), + [anon_sym_DOLLAR] = ACTIONS(6100), + [sym__string_content] = ACTIONS(257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(259), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), + [anon_sym_BQUOTE] = ACTIONS(263), + [sym_comment] = ACTIONS(265), }, [2517] = { - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(6063), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(6055), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(6063), - [anon_sym_AMP] = ACTIONS(6061), + [sym__simple_heredoc_body] = ACTIONS(817), + [sym__heredoc_body_beginning] = ACTIONS(817), + [sym_file_descriptor] = ACTIONS(817), + [sym__concat] = ACTIONS(817), + [anon_sym_SEMI] = ACTIONS(819), + [anon_sym_esac] = ACTIONS(817), + [anon_sym_PIPE] = ACTIONS(819), + [anon_sym_SEMI_SEMI] = ACTIONS(817), + [anon_sym_PIPE_AMP] = ACTIONS(817), + [anon_sym_AMP_AMP] = ACTIONS(817), + [anon_sym_PIPE_PIPE] = ACTIONS(817), + [anon_sym_LT] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(819), + [anon_sym_GT_GT] = ACTIONS(817), + [anon_sym_AMP_GT] = ACTIONS(819), + [anon_sym_AMP_GT_GT] = ACTIONS(817), + [anon_sym_LT_AMP] = ACTIONS(817), + [anon_sym_GT_AMP] = ACTIONS(817), + [anon_sym_LT_LT] = ACTIONS(819), + [anon_sym_LT_LT_DASH] = ACTIONS(817), + [anon_sym_LT_LT_LT] = ACTIONS(817), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(819), }, [2518] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(6063), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(6063), - [anon_sym_AMP] = ACTIONS(6061), + [sym__simple_heredoc_body] = ACTIONS(821), + [sym__heredoc_body_beginning] = ACTIONS(821), + [sym_file_descriptor] = ACTIONS(821), + [sym__concat] = ACTIONS(821), + [anon_sym_SEMI] = ACTIONS(823), + [anon_sym_esac] = ACTIONS(821), + [anon_sym_PIPE] = ACTIONS(823), + [anon_sym_SEMI_SEMI] = ACTIONS(821), + [anon_sym_PIPE_AMP] = ACTIONS(821), + [anon_sym_AMP_AMP] = ACTIONS(821), + [anon_sym_PIPE_PIPE] = ACTIONS(821), + [anon_sym_LT] = ACTIONS(823), + [anon_sym_GT] = ACTIONS(823), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_AMP_GT] = ACTIONS(823), + [anon_sym_AMP_GT_GT] = ACTIONS(821), + [anon_sym_LT_AMP] = ACTIONS(821), + [anon_sym_GT_AMP] = ACTIONS(821), + [anon_sym_LT_LT] = ACTIONS(823), + [anon_sym_LT_LT_DASH] = ACTIONS(821), + [anon_sym_LT_LT_LT] = ACTIONS(821), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(821), + [anon_sym_AMP] = ACTIONS(823), }, [2519] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(6065), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__simple_heredoc_body] = ACTIONS(825), + [sym__heredoc_body_beginning] = ACTIONS(825), + [sym_file_descriptor] = ACTIONS(825), + [sym__concat] = ACTIONS(825), + [anon_sym_SEMI] = ACTIONS(827), + [anon_sym_esac] = ACTIONS(825), + [anon_sym_PIPE] = ACTIONS(827), + [anon_sym_SEMI_SEMI] = ACTIONS(825), + [anon_sym_PIPE_AMP] = ACTIONS(825), + [anon_sym_AMP_AMP] = ACTIONS(825), + [anon_sym_PIPE_PIPE] = ACTIONS(825), + [anon_sym_LT] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(827), + [anon_sym_GT_GT] = ACTIONS(825), + [anon_sym_AMP_GT] = ACTIONS(827), + [anon_sym_AMP_GT_GT] = ACTIONS(825), + [anon_sym_LT_AMP] = ACTIONS(825), + [anon_sym_GT_AMP] = ACTIONS(825), + [anon_sym_LT_LT] = ACTIONS(827), + [anon_sym_LT_LT_DASH] = ACTIONS(825), + [anon_sym_LT_LT_LT] = ACTIONS(825), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(825), + [anon_sym_AMP] = ACTIONS(827), }, [2520] = { - [sym__concat] = ACTIONS(1959), - [sym_variable_name] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_esac] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1959), - [anon_sym_PIPE_AMP] = ACTIONS(1959), - [anon_sym_AMP_AMP] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1959), - [sym__special_characters] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), - [anon_sym_BQUOTE] = ACTIONS(1959), - [anon_sym_LT_LPAREN] = ACTIONS(1959), - [anon_sym_GT_LPAREN] = ACTIONS(1959), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1961), - [sym_word] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(6102), + [sym_comment] = ACTIONS(57), }, [2521] = { - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(6065), - [anon_sym_SEMI_SEMI] = ACTIONS(6069), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(6069), - [anon_sym_AMP] = ACTIONS(6067), + [sym_subscript] = STATE(2655), + [sym_variable_name] = ACTIONS(6104), + [anon_sym_DASH] = ACTIONS(6106), + [anon_sym_DOLLAR] = ACTIONS(6106), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6108), + [anon_sym_STAR] = ACTIONS(6110), + [anon_sym_AT] = ACTIONS(6110), + [anon_sym_QMARK] = ACTIONS(6110), + [anon_sym_0] = ACTIONS(6108), + [anon_sym__] = ACTIONS(6108), }, [2522] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(6067), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(6065), - [anon_sym_SEMI_SEMI] = ACTIONS(6069), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(6069), - [anon_sym_AMP] = ACTIONS(6067), + [sym_concatenation] = STATE(2658), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2658), + [anon_sym_RBRACE] = ACTIONS(6112), + [anon_sym_EQ] = ACTIONS(6114), + [anon_sym_DASH] = ACTIONS(6114), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6116), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(6118), + [anon_sym_COLON] = ACTIONS(6114), + [anon_sym_COLON_QMARK] = ACTIONS(6114), + [anon_sym_COLON_DASH] = ACTIONS(6114), + [anon_sym_PERCENT] = ACTIONS(6114), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2523] = { - [sym__concat] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_esac] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym_concatenation] = STATE(2661), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2661), + [anon_sym_RBRACE] = ACTIONS(6120), + [anon_sym_EQ] = ACTIONS(6122), + [anon_sym_DASH] = ACTIONS(6122), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6124), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(6126), + [anon_sym_COLON] = ACTIONS(6122), + [anon_sym_COLON_QMARK] = ACTIONS(6122), + [anon_sym_COLON_DASH] = ACTIONS(6122), + [anon_sym_PERCENT] = ACTIONS(6122), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2524] = { - [aux_sym_concatenation_repeat1] = STATE(2524), - [sym__concat] = ACTIONS(6071), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_esac] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1765), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2664), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(6128), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(6130), + [anon_sym_SEMI_SEMI] = ACTIONS(6132), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6132), + [anon_sym_AMP] = ACTIONS(6128), }, [2525] = { - [sym__concat] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_esac] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_SEMI_SEMI] = ACTIONS(1770), - [anon_sym_PIPE_AMP] = ACTIONS(1770), - [anon_sym_AMP_AMP] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1770), - [sym__special_characters] = ACTIONS(1770), - [anon_sym_DQUOTE] = ACTIONS(1770), - [anon_sym_DOLLAR] = ACTIONS(1772), - [sym_raw_string] = ACTIONS(1770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), - [anon_sym_BQUOTE] = ACTIONS(1770), - [anon_sym_LT_LPAREN] = ACTIONS(1770), - [anon_sym_GT_LPAREN] = ACTIONS(1770), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1772), - [sym_word] = ACTIONS(1772), - [anon_sym_LF] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1772), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2664), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(6128), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(6130), + [anon_sym_SEMI_SEMI] = ACTIONS(6132), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(6132), + [anon_sym_AMP] = ACTIONS(6128), }, [2526] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(6074), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(2665), + [sym_for_statement] = STATE(2665), + [sym_c_style_for_statement] = STATE(2665), + [sym_while_statement] = STATE(2665), + [sym_if_statement] = STATE(2665), + [sym_case_statement] = STATE(2665), + [sym_function_definition] = STATE(2665), + [sym_compound_statement] = STATE(2665), + [sym_subshell] = STATE(2665), + [sym_pipeline] = STATE(2665), + [sym_list] = STATE(2665), + [sym_negated_command] = STATE(2665), + [sym_test_command] = STATE(2665), + [sym_declaration_command] = STATE(2665), + [sym_unset_command] = STATE(2665), + [sym_command] = STATE(2665), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(2666), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [2527] = { - [sym_concatenation] = STATE(2672), - [sym_string] = STATE(2671), - [sym_simple_expansion] = STATE(2671), - [sym_string_expansion] = STATE(2671), - [sym_expansion] = STATE(2671), - [sym_command_substitution] = STATE(2671), - [sym_process_substitution] = STATE(2671), - [anon_sym_RBRACE] = ACTIONS(6076), - [sym__special_characters] = ACTIONS(6078), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(6080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(6080), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(2668), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(6134), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(6136), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(6130), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6136), + [anon_sym_AMP] = ACTIONS(6134), }, [2528] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(6082), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(2668), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(6134), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(6136), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(6130), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(6136), + [anon_sym_AMP] = ACTIONS(6134), }, [2529] = { - [sym_concatenation] = STATE(2676), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2676), - [anon_sym_RBRACE] = ACTIONS(6084), - [anon_sym_EQ] = ACTIONS(6086), - [anon_sym_DASH] = ACTIONS(6086), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6088), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(6090), - [anon_sym_COLON] = ACTIONS(6086), - [anon_sym_COLON_QMARK] = ACTIONS(6086), - [anon_sym_COLON_DASH] = ACTIONS(6086), - [anon_sym_PERCENT] = ACTIONS(6086), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(2669), + [sym_for_statement] = STATE(2669), + [sym_c_style_for_statement] = STATE(2669), + [sym_while_statement] = STATE(2669), + [sym_if_statement] = STATE(2669), + [sym_case_statement] = STATE(2669), + [sym_function_definition] = STATE(2669), + [sym_compound_statement] = STATE(2669), + [sym_subshell] = STATE(2669), + [sym_pipeline] = STATE(2669), + [sym_list] = STATE(2669), + [sym_negated_command] = STATE(2669), + [sym_test_command] = STATE(2669), + [sym_declaration_command] = STATE(2669), + [sym_unset_command] = STATE(2669), + [sym_command] = STATE(2669), + [sym_command_name] = STATE(162), + [sym_variable_assignment] = STATE(2670), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(165), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(165), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(291), + [anon_sym_typeset] = ACTIONS(291), + [anon_sym_export] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_local] = ACTIONS(291), + [anon_sym_unset] = ACTIONS(293), + [anon_sym_unsetenv] = ACTIONS(293), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [2530] = { - [sym_concatenation] = STATE(2678), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2678), - [anon_sym_RBRACE] = ACTIONS(6076), - [anon_sym_EQ] = ACTIONS(6092), - [anon_sym_DASH] = ACTIONS(6092), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6094), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(6096), - [anon_sym_COLON] = ACTIONS(6092), - [anon_sym_COLON_QMARK] = ACTIONS(6092), - [anon_sym_COLON_DASH] = ACTIONS(6092), - [anon_sym_PERCENT] = ACTIONS(6092), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2673), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(6138), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(6140), + [anon_sym_SEMI_SEMI] = ACTIONS(6142), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6142), + [anon_sym_AMP] = ACTIONS(6138), }, [2531] = { - [sym__concat] = ACTIONS(1871), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_esac] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_SEMI_SEMI] = ACTIONS(1871), - [anon_sym_PIPE_AMP] = ACTIONS(1871), - [anon_sym_AMP_AMP] = ACTIONS(1871), - [anon_sym_PIPE_PIPE] = ACTIONS(1871), - [sym__special_characters] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1871), - [anon_sym_DOLLAR] = ACTIONS(1873), - [sym_raw_string] = ACTIONS(1871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), - [anon_sym_BQUOTE] = ACTIONS(1871), - [anon_sym_LT_LPAREN] = ACTIONS(1871), - [anon_sym_GT_LPAREN] = ACTIONS(1871), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1873), - [sym_word] = ACTIONS(1873), - [anon_sym_LF] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1873), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2673), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(6138), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(6140), + [anon_sym_SEMI_SEMI] = ACTIONS(6142), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(6142), + [anon_sym_AMP] = ACTIONS(6138), }, [2532] = { - [sym_concatenation] = STATE(2681), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2681), - [sym_regex] = ACTIONS(6098), - [anon_sym_RBRACE] = ACTIONS(6100), - [anon_sym_EQ] = ACTIONS(6102), - [anon_sym_DASH] = ACTIONS(6102), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6104), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6102), - [anon_sym_COLON_QMARK] = ACTIONS(6102), - [anon_sym_COLON_DASH] = ACTIONS(6102), - [anon_sym_PERCENT] = ACTIONS(6102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__terminated_statement] = STATE(187), + [sym_redirected_statement] = STATE(2674), + [sym_for_statement] = STATE(2674), + [sym_c_style_for_statement] = STATE(2674), + [sym_while_statement] = STATE(2674), + [sym_if_statement] = STATE(2674), + [sym_case_statement] = STATE(2674), + [sym_function_definition] = STATE(2674), + [sym_compound_statement] = STATE(2674), + [sym_subshell] = STATE(2674), + [sym_pipeline] = STATE(2674), + [sym_list] = STATE(2674), + [sym_negated_command] = STATE(2674), + [sym_test_command] = STATE(2674), + [sym_declaration_command] = STATE(2674), + [sym_unset_command] = STATE(2674), + [sym_command] = STATE(2674), + [sym_command_name] = STATE(83), + [sym_variable_assignment] = STATE(2675), + [sym_subscript] = STATE(85), + [sym_file_redirect] = STATE(87), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(80), + [sym_simple_expansion] = STATE(80), + [sym_string_expansion] = STATE(80), + [sym_expansion] = STATE(80), + [sym_command_substitution] = STATE(80), + [sym_process_substitution] = STATE(80), + [aux_sym__statements_repeat1] = STATE(187), + [aux_sym_command_repeat1] = STATE(87), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(129), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(133), + [anon_sym_typeset] = ACTIONS(133), + [anon_sym_export] = ACTIONS(133), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_local] = ACTIONS(133), + [anon_sym_unset] = ACTIONS(135), + [anon_sym_unsetenv] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(139), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(141), }, [2533] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6100), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_esac] = ACTIONS(6144), + [anon_sym_SEMI_SEMI] = ACTIONS(927), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(6146), + [anon_sym_DQUOTE] = ACTIONS(6148), + [anon_sym_DOLLAR] = ACTIONS(6146), + [sym_raw_string] = ACTIONS(6148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6148), + [anon_sym_BQUOTE] = ACTIONS(6148), + [anon_sym_LT_LPAREN] = ACTIONS(6148), + [anon_sym_GT_LPAREN] = ACTIONS(6148), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6146), }, [2534] = { - [sym__concat] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_esac] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_SEMI_SEMI] = ACTIONS(1919), - [anon_sym_PIPE_AMP] = ACTIONS(1919), - [anon_sym_AMP_AMP] = ACTIONS(1919), - [anon_sym_PIPE_PIPE] = ACTIONS(1919), - [sym__special_characters] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1921), - [sym_raw_string] = ACTIONS(1919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), - [anon_sym_BQUOTE] = ACTIONS(1919), - [anon_sym_LT_LPAREN] = ACTIONS(1919), - [anon_sym_GT_LPAREN] = ACTIONS(1919), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1921), - [sym_word] = ACTIONS(1921), - [anon_sym_LF] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1921), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_esac] = ACTIONS(6150), + [anon_sym_SEMI_SEMI] = ACTIONS(927), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(6152), + [anon_sym_DQUOTE] = ACTIONS(6154), + [anon_sym_DOLLAR] = ACTIONS(6152), + [sym_raw_string] = ACTIONS(6154), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6154), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6154), + [anon_sym_BQUOTE] = ACTIONS(6154), + [anon_sym_LT_LPAREN] = ACTIONS(6154), + [anon_sym_GT_LPAREN] = ACTIONS(6154), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6152), }, [2535] = { - [sym_concatenation] = STATE(2678), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2678), - [sym_regex] = ACTIONS(6106), - [anon_sym_RBRACE] = ACTIONS(6076), - [anon_sym_EQ] = ACTIONS(6092), - [anon_sym_DASH] = ACTIONS(6092), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6094), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6092), - [anon_sym_COLON_QMARK] = ACTIONS(6092), - [anon_sym_COLON_DASH] = ACTIONS(6092), - [anon_sym_PERCENT] = ACTIONS(6092), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(927), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(5398), + [anon_sym_DQUOTE] = ACTIONS(5400), + [anon_sym_DOLLAR] = ACTIONS(5398), + [sym_raw_string] = ACTIONS(5400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5400), + [anon_sym_BQUOTE] = ACTIONS(5400), + [anon_sym_LT_LPAREN] = ACTIONS(5400), + [anon_sym_GT_LPAREN] = ACTIONS(5400), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5398), }, [2536] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6076), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__special_characters] = ACTIONS(5400), + [anon_sym_DQUOTE] = ACTIONS(5400), + [anon_sym_DOLLAR] = ACTIONS(5398), + [sym_raw_string] = ACTIONS(5400), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5400), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5400), + [anon_sym_BQUOTE] = ACTIONS(5400), + [anon_sym_LT_LPAREN] = ACTIONS(5400), + [anon_sym_GT_LPAREN] = ACTIONS(5400), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5400), }, [2537] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(6108), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_heredoc_body] = STATE(979), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(6156), + [anon_sym_PIPE_AMP] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_AMP_GT] = ACTIONS(507), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(511), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2054), }, [2538] = { - [sym__concat] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_esac] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1927), - [anon_sym_PIPE_AMP] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [sym__special_characters] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1929), - [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(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1929), - [sym_word] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1927), - [anon_sym_AMP] = ACTIONS(1929), + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_heredoc_body] = STATE(979), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(6156), + [anon_sym_PIPE_AMP] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(511), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2054), }, [2539] = { - [anon_sym_SEMI] = ACTIONS(6110), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(6108), - [anon_sym_SEMI_SEMI] = ACTIONS(6112), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(6112), - [anon_sym_AMP] = ACTIONS(6110), + [sym__terminated_statement] = STATE(2539), + [sym_redirected_statement] = STATE(524), + [sym_for_statement] = STATE(524), + [sym_c_style_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_compound_statement] = STATE(524), + [sym_subshell] = STATE(524), + [sym_pipeline] = STATE(524), + [sym_list] = STATE(524), + [sym_negated_command] = STATE(524), + [sym_test_command] = STATE(524), + [sym_declaration_command] = STATE(524), + [sym_unset_command] = STATE(524), + [sym_command] = STATE(524), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(525), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(2539), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(973), + [sym_variable_name] = ACTIONS(976), + [anon_sym_for] = ACTIONS(979), + [anon_sym_LPAREN_LPAREN] = ACTIONS(982), + [anon_sym_while] = ACTIONS(985), + [anon_sym_if] = ACTIONS(988), + [anon_sym_case] = ACTIONS(991), + [anon_sym_SEMI_SEMI] = ACTIONS(1441), + [anon_sym_function] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(997), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1009), + [anon_sym_declare] = ACTIONS(1012), + [anon_sym_typeset] = ACTIONS(1012), + [anon_sym_export] = ACTIONS(1012), + [anon_sym_readonly] = ACTIONS(1012), + [anon_sym_local] = ACTIONS(1012), + [anon_sym_unset] = ACTIONS(1015), + [anon_sym_unsetenv] = ACTIONS(1015), + [anon_sym_LT] = ACTIONS(1018), + [anon_sym_GT] = ACTIONS(1018), + [anon_sym_GT_GT] = ACTIONS(1021), + [anon_sym_AMP_GT] = ACTIONS(1018), + [anon_sym_AMP_GT_GT] = ACTIONS(1021), + [anon_sym_LT_AMP] = ACTIONS(1021), + [anon_sym_GT_AMP] = ACTIONS(1021), + [sym__special_characters] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1027), + [anon_sym_DOLLAR] = ACTIONS(1030), + [sym_raw_string] = ACTIONS(1033), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1039), + [anon_sym_BQUOTE] = ACTIONS(1042), + [anon_sym_LT_LPAREN] = ACTIONS(1045), + [anon_sym_GT_LPAREN] = ACTIONS(1045), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1048), }, [2540] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(6110), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(6108), - [anon_sym_SEMI_SEMI] = ACTIONS(6112), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(6112), - [anon_sym_AMP] = ACTIONS(6110), + [sym__terminated_statement] = STATE(2539), + [sym_redirected_statement] = STATE(2678), + [sym_for_statement] = STATE(2678), + [sym_c_style_for_statement] = STATE(2678), + [sym_while_statement] = STATE(2678), + [sym_if_statement] = STATE(2678), + [sym_case_statement] = STATE(2678), + [sym_function_definition] = STATE(2678), + [sym_compound_statement] = STATE(2678), + [sym_subshell] = STATE(2678), + [sym_pipeline] = STATE(2678), + [sym_list] = STATE(2678), + [sym_negated_command] = STATE(2678), + [sym_test_command] = STATE(2678), + [sym_declaration_command] = STATE(2678), + [sym_unset_command] = STATE(2678), + [sym_command] = STATE(2678), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(2679), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(2539), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_SEMI_SEMI] = ACTIONS(6158), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_typeset] = ACTIONS(101), + [anon_sym_export] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_local] = ACTIONS(101), + [anon_sym_unset] = ACTIONS(103), + [anon_sym_unsetenv] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [2541] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(6108), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(927), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(5440), + [anon_sym_DQUOTE] = ACTIONS(5442), + [anon_sym_DOLLAR] = ACTIONS(5440), + [sym_raw_string] = ACTIONS(5442), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5442), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5442), + [anon_sym_BQUOTE] = ACTIONS(5442), + [anon_sym_LT_LPAREN] = ACTIONS(5442), + [anon_sym_GT_LPAREN] = ACTIONS(5442), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5440), }, [2542] = { - [anon_sym_SEMI] = ACTIONS(6114), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(6116), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(6108), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(6116), - [anon_sym_AMP] = ACTIONS(6114), + [sym__special_characters] = ACTIONS(5442), + [anon_sym_DQUOTE] = ACTIONS(5442), + [anon_sym_DOLLAR] = ACTIONS(5440), + [sym_raw_string] = ACTIONS(5442), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5442), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5442), + [anon_sym_BQUOTE] = ACTIONS(5442), + [anon_sym_LT_LPAREN] = ACTIONS(5442), + [anon_sym_GT_LPAREN] = ACTIONS(5442), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5442), }, [2543] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(6114), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(6116), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(6108), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(6116), - [anon_sym_AMP] = ACTIONS(6114), + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_heredoc_body] = STATE(979), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(6160), + [anon_sym_PIPE_AMP] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_AMP_GT] = ACTIONS(507), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(511), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2054), }, [2544] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(6118), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_heredoc_body] = STATE(979), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(6160), + [anon_sym_PIPE_AMP] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(511), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2054), }, [2545] = { - [sym__concat] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_esac] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1959), - [anon_sym_PIPE_AMP] = ACTIONS(1959), - [anon_sym_AMP_AMP] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1959), - [sym__special_characters] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), - [anon_sym_BQUOTE] = ACTIONS(1959), - [anon_sym_LT_LPAREN] = ACTIONS(1959), - [anon_sym_GT_LPAREN] = ACTIONS(1959), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1961), - [sym_word] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1961), + [sym__terminated_statement] = STATE(2539), + [sym_redirected_statement] = STATE(2682), + [sym_for_statement] = STATE(2682), + [sym_c_style_for_statement] = STATE(2682), + [sym_while_statement] = STATE(2682), + [sym_if_statement] = STATE(2682), + [sym_case_statement] = STATE(2682), + [sym_function_definition] = STATE(2682), + [sym_compound_statement] = STATE(2682), + [sym_subshell] = STATE(2682), + [sym_pipeline] = STATE(2682), + [sym_list] = STATE(2682), + [sym_negated_command] = STATE(2682), + [sym_test_command] = STATE(2682), + [sym_declaration_command] = STATE(2682), + [sym_unset_command] = STATE(2682), + [sym_command] = STATE(2682), + [sym_command_name] = STATE(60), + [sym_variable_assignment] = STATE(2683), + [sym_subscript] = STATE(62), + [sym_file_redirect] = STATE(63), + [sym_concatenation] = STATE(32), + [sym_string] = STATE(56), + [sym_simple_expansion] = STATE(56), + [sym_string_expansion] = STATE(56), + [sym_expansion] = STATE(56), + [sym_command_substitution] = STATE(56), + [sym_process_substitution] = STATE(56), + [aux_sym__statements_repeat1] = STATE(2539), + [aux_sym_command_repeat1] = STATE(63), + [sym_file_descriptor] = ACTIONS(5), + [sym_variable_name] = ACTIONS(97), + [anon_sym_for] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_SEMI_SEMI] = ACTIONS(6162), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(101), + [anon_sym_typeset] = ACTIONS(101), + [anon_sym_export] = ACTIONS(101), + [anon_sym_readonly] = ACTIONS(101), + [anon_sym_local] = ACTIONS(101), + [anon_sym_unset] = ACTIONS(103), + [anon_sym_unsetenv] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(39), + [anon_sym_LT_AMP] = ACTIONS(39), + [anon_sym_GT_AMP] = ACTIONS(39), + [sym__special_characters] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(43), + [anon_sym_DOLLAR] = ACTIONS(45), + [sym_raw_string] = ACTIONS(107), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), + [anon_sym_BQUOTE] = ACTIONS(53), + [anon_sym_LT_LPAREN] = ACTIONS(55), + [anon_sym_GT_LPAREN] = ACTIONS(55), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(109), }, [2546] = { - [anon_sym_SEMI] = ACTIONS(6120), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(6118), - [anon_sym_SEMI_SEMI] = ACTIONS(6122), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(6122), - [anon_sym_AMP] = ACTIONS(6120), + [sym__concat] = ACTIONS(5168), + [anon_sym_RBRACE] = ACTIONS(5168), + [sym_comment] = ACTIONS(57), }, [2547] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(6120), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(6118), - [anon_sym_SEMI_SEMI] = ACTIONS(6122), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(6122), - [anon_sym_AMP] = ACTIONS(6120), + [sym__concat] = ACTIONS(5172), + [anon_sym_RBRACE] = ACTIONS(5172), + [sym_comment] = ACTIONS(57), }, [2548] = { - [sym__simple_heredoc_body] = ACTIONS(2959), - [sym__heredoc_body_beginning] = ACTIONS(2959), - [sym_file_descriptor] = ACTIONS(2959), - [sym__concat] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_esac] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2961), - [anon_sym_SEMI_SEMI] = ACTIONS(2959), - [anon_sym_PIPE_AMP] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_EQ_TILDE] = ACTIONS(2961), - [anon_sym_EQ_EQ] = ACTIONS(2961), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_GT] = ACTIONS(2961), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_AMP_GT] = ACTIONS(2961), - [anon_sym_AMP_GT_GT] = ACTIONS(2959), - [anon_sym_LT_AMP] = ACTIONS(2959), - [anon_sym_GT_AMP] = ACTIONS(2959), - [anon_sym_LT_LT] = ACTIONS(2961), - [anon_sym_LT_LT_DASH] = ACTIONS(2959), - [anon_sym_LT_LT_LT] = ACTIONS(2959), - [sym__special_characters] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_DOLLAR] = ACTIONS(2961), - [sym_raw_string] = ACTIONS(2959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), - [anon_sym_BQUOTE] = ACTIONS(2959), - [anon_sym_LT_LPAREN] = ACTIONS(2959), - [anon_sym_GT_LPAREN] = ACTIONS(2959), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2961), - [anon_sym_LF] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), + [sym__simple_heredoc_body] = ACTIONS(3238), + [sym__heredoc_body_beginning] = ACTIONS(3238), + [sym_file_descriptor] = ACTIONS(3238), + [sym_variable_name] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_esac] = ACTIONS(3240), + [anon_sym_PIPE] = ACTIONS(3240), + [anon_sym_SEMI_SEMI] = ACTIONS(3238), + [anon_sym_PIPE_AMP] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3240), + [anon_sym_GT] = ACTIONS(3240), + [anon_sym_GT_GT] = ACTIONS(3238), + [anon_sym_AMP_GT] = ACTIONS(3240), + [anon_sym_AMP_GT_GT] = ACTIONS(3238), + [anon_sym_LT_AMP] = ACTIONS(3238), + [anon_sym_GT_AMP] = ACTIONS(3238), + [anon_sym_LT_LT] = ACTIONS(3240), + [anon_sym_LT_LT_DASH] = ACTIONS(3238), + [anon_sym_LT_LT_LT] = ACTIONS(3238), + [sym__special_characters] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3238), + [anon_sym_DOLLAR] = ACTIONS(3240), + [sym_raw_string] = ACTIONS(3238), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3238), + [anon_sym_BQUOTE] = ACTIONS(3238), + [anon_sym_LT_LPAREN] = ACTIONS(3238), + [anon_sym_GT_LPAREN] = ACTIONS(3238), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3240), + [anon_sym_LF] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3240), }, [2549] = { - [sym__simple_heredoc_body] = ACTIONS(2973), - [sym__heredoc_body_beginning] = ACTIONS(2973), - [sym_file_descriptor] = ACTIONS(2973), - [sym__concat] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym_esac] = ACTIONS(2975), - [anon_sym_PIPE] = ACTIONS(2975), - [anon_sym_SEMI_SEMI] = ACTIONS(2973), - [anon_sym_PIPE_AMP] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_EQ_TILDE] = ACTIONS(2975), - [anon_sym_EQ_EQ] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_GT] = ACTIONS(2975), - [anon_sym_GT_GT] = ACTIONS(2973), - [anon_sym_AMP_GT] = ACTIONS(2975), - [anon_sym_AMP_GT_GT] = ACTIONS(2973), - [anon_sym_LT_AMP] = ACTIONS(2973), - [anon_sym_GT_AMP] = ACTIONS(2973), - [anon_sym_LT_LT] = ACTIONS(2975), - [anon_sym_LT_LT_DASH] = ACTIONS(2973), - [anon_sym_LT_LT_LT] = ACTIONS(2973), - [sym__special_characters] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_DOLLAR] = ACTIONS(2975), - [sym_raw_string] = ACTIONS(2973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), - [anon_sym_BQUOTE] = ACTIONS(2973), - [anon_sym_LT_LPAREN] = ACTIONS(2973), - [anon_sym_GT_LPAREN] = ACTIONS(2973), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2975), - [anon_sym_LF] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2975), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(1726), + [sym_variable_name] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_esac] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), }, [2550] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(6124), - [sym_comment] = ACTIONS(55), + [aux_sym_concatenation_repeat1] = STATE(2550), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(6164), + [sym_variable_name] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_esac] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [anon_sym_DOLLAR] = ACTIONS(1728), + [sym_raw_string] = ACTIONS(1726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1726), + [anon_sym_BQUOTE] = ACTIONS(1726), + [anon_sym_LT_LPAREN] = ACTIONS(1726), + [anon_sym_GT_LPAREN] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1728), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), }, [2551] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(6126), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(1733), + [sym__heredoc_body_beginning] = ACTIONS(1733), + [sym_file_descriptor] = ACTIONS(1733), + [sym__concat] = ACTIONS(1733), + [sym_variable_name] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_esac] = ACTIONS(1735), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1733), + [anon_sym_PIPE_AMP] = ACTIONS(1733), + [anon_sym_AMP_AMP] = ACTIONS(1733), + [anon_sym_PIPE_PIPE] = ACTIONS(1733), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1733), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_AMP_GT_GT] = ACTIONS(1733), + [anon_sym_LT_AMP] = ACTIONS(1733), + [anon_sym_GT_AMP] = ACTIONS(1733), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_LT_LT_DASH] = ACTIONS(1733), + [anon_sym_LT_LT_LT] = ACTIONS(1733), + [sym__special_characters] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1735), + [sym_raw_string] = ACTIONS(1733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1733), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1733), + [anon_sym_BQUOTE] = ACTIONS(1733), + [anon_sym_LT_LPAREN] = ACTIONS(1733), + [anon_sym_GT_LPAREN] = ACTIONS(1733), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1733), + [anon_sym_AMP] = ACTIONS(1735), }, [2552] = { - [anon_sym_RBRACE] = ACTIONS(6126), - [sym_comment] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(6167), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), }, [2553] = { - [sym_concatenation] = STATE(2692), - [sym_string] = STATE(2691), - [sym_simple_expansion] = STATE(2691), - [sym_string_expansion] = STATE(2691), - [sym_expansion] = STATE(2691), - [sym_command_substitution] = STATE(2691), - [sym_process_substitution] = STATE(2691), - [anon_sym_RBRACE] = ACTIONS(6126), - [sym__special_characters] = ACTIONS(6128), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(6130), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(6130), + [sym_concatenation] = STATE(2688), + [sym_string] = STATE(2687), + [sym_simple_expansion] = STATE(2687), + [sym_string_expansion] = STATE(2687), + [sym_expansion] = STATE(2687), + [sym_command_substitution] = STATE(2687), + [sym_process_substitution] = STATE(2687), + [anon_sym_RBRACE] = ACTIONS(6169), + [sym__special_characters] = ACTIONS(6171), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(6173), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6173), }, [2554] = { - [sym__simple_heredoc_body] = ACTIONS(3009), - [sym__heredoc_body_beginning] = ACTIONS(3009), - [sym_file_descriptor] = ACTIONS(3009), - [sym__concat] = ACTIONS(3009), - [anon_sym_SEMI] = ACTIONS(3011), - [anon_sym_esac] = ACTIONS(3011), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_SEMI_SEMI] = ACTIONS(3009), - [anon_sym_PIPE_AMP] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3009), - [anon_sym_EQ_TILDE] = ACTIONS(3011), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_LT] = ACTIONS(3011), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_GT_GT] = ACTIONS(3009), - [anon_sym_AMP_GT] = ACTIONS(3011), - [anon_sym_AMP_GT_GT] = ACTIONS(3009), - [anon_sym_LT_AMP] = ACTIONS(3009), - [anon_sym_GT_AMP] = ACTIONS(3009), - [anon_sym_LT_LT] = ACTIONS(3011), - [anon_sym_LT_LT_DASH] = ACTIONS(3009), - [anon_sym_LT_LT_LT] = ACTIONS(3009), - [sym__special_characters] = ACTIONS(3009), - [anon_sym_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3011), - [sym_raw_string] = ACTIONS(3009), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), - [anon_sym_BQUOTE] = ACTIONS(3009), - [anon_sym_LT_LPAREN] = ACTIONS(3009), - [anon_sym_GT_LPAREN] = ACTIONS(3009), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3011), - [anon_sym_LF] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(6175), + [sym_comment] = ACTIONS(57), }, [2555] = { - [sym_concatenation] = STATE(2695), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2695), - [sym_regex] = ACTIONS(6132), - [anon_sym_RBRACE] = ACTIONS(6134), - [anon_sym_EQ] = ACTIONS(6136), - [anon_sym_DASH] = ACTIONS(6136), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6138), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6136), - [anon_sym_COLON_QMARK] = ACTIONS(6136), - [anon_sym_COLON_DASH] = ACTIONS(6136), - [anon_sym_PERCENT] = ACTIONS(6136), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(2692), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2692), + [anon_sym_RBRACE] = ACTIONS(6177), + [anon_sym_EQ] = ACTIONS(6179), + [anon_sym_DASH] = ACTIONS(6179), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6181), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(6183), + [anon_sym_COLON] = ACTIONS(6179), + [anon_sym_COLON_QMARK] = ACTIONS(6179), + [anon_sym_COLON_DASH] = ACTIONS(6179), + [anon_sym_PERCENT] = ACTIONS(6179), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2556] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6134), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(2694), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2694), + [anon_sym_RBRACE] = ACTIONS(6169), + [anon_sym_EQ] = ACTIONS(6185), + [anon_sym_DASH] = ACTIONS(6185), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6187), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(6189), + [anon_sym_COLON] = ACTIONS(6185), + [anon_sym_COLON_QMARK] = ACTIONS(6185), + [anon_sym_COLON_DASH] = ACTIONS(6185), + [anon_sym_PERCENT] = ACTIONS(6185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2557] = { - [sym_concatenation] = STATE(2697), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2697), - [sym_regex] = ACTIONS(6140), - [anon_sym_RBRACE] = ACTIONS(6126), - [anon_sym_EQ] = ACTIONS(6142), - [anon_sym_DASH] = ACTIONS(6142), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6144), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6142), - [anon_sym_COLON_QMARK] = ACTIONS(6142), - [anon_sym_COLON_DASH] = ACTIONS(6142), - [anon_sym_PERCENT] = ACTIONS(6142), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(1834), + [sym__heredoc_body_beginning] = ACTIONS(1834), + [sym_file_descriptor] = ACTIONS(1834), + [sym__concat] = ACTIONS(1834), + [sym_variable_name] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_esac] = ACTIONS(1836), + [anon_sym_PIPE] = ACTIONS(1836), + [anon_sym_SEMI_SEMI] = ACTIONS(1834), + [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP_AMP] = ACTIONS(1834), + [anon_sym_PIPE_PIPE] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1836), + [anon_sym_GT] = ACTIONS(1836), + [anon_sym_GT_GT] = ACTIONS(1834), + [anon_sym_AMP_GT] = ACTIONS(1836), + [anon_sym_AMP_GT_GT] = ACTIONS(1834), + [anon_sym_LT_AMP] = ACTIONS(1834), + [anon_sym_GT_AMP] = ACTIONS(1834), + [anon_sym_LT_LT] = ACTIONS(1836), + [anon_sym_LT_LT_DASH] = ACTIONS(1834), + [anon_sym_LT_LT_LT] = ACTIONS(1834), + [sym__special_characters] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1836), + [sym_raw_string] = ACTIONS(1834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), + [anon_sym_BQUOTE] = ACTIONS(1834), + [anon_sym_LT_LPAREN] = ACTIONS(1834), + [anon_sym_GT_LPAREN] = ACTIONS(1834), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1836), + [anon_sym_LF] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1836), }, [2558] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6126), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(2697), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2697), + [sym_regex] = ACTIONS(6191), + [anon_sym_RBRACE] = ACTIONS(6193), + [anon_sym_EQ] = ACTIONS(6195), + [anon_sym_DASH] = ACTIONS(6195), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6197), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6195), + [anon_sym_COLON_QMARK] = ACTIONS(6195), + [anon_sym_COLON_DASH] = ACTIONS(6195), + [anon_sym_PERCENT] = ACTIONS(6195), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2559] = { - [sym_concatenation] = STATE(2699), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2699), - [anon_sym_RBRACE] = ACTIONS(6146), - [anon_sym_EQ] = ACTIONS(6148), - [anon_sym_DASH] = ACTIONS(6148), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6150), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6148), - [anon_sym_COLON_QMARK] = ACTIONS(6148), - [anon_sym_COLON_DASH] = ACTIONS(6148), - [anon_sym_PERCENT] = ACTIONS(6148), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6193), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2560] = { - [sym__simple_heredoc_body] = ACTIONS(3065), - [sym__heredoc_body_beginning] = ACTIONS(3065), - [sym_file_descriptor] = ACTIONS(3065), - [sym__concat] = ACTIONS(3065), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym_esac] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_SEMI_SEMI] = ACTIONS(3065), - [anon_sym_PIPE_AMP] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_PIPE_PIPE] = ACTIONS(3065), - [anon_sym_EQ_TILDE] = ACTIONS(3067), - [anon_sym_EQ_EQ] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_GT_GT] = ACTIONS(3065), - [anon_sym_AMP_GT] = ACTIONS(3067), - [anon_sym_AMP_GT_GT] = ACTIONS(3065), - [anon_sym_LT_AMP] = ACTIONS(3065), - [anon_sym_GT_AMP] = ACTIONS(3065), - [anon_sym_LT_LT] = ACTIONS(3067), - [anon_sym_LT_LT_DASH] = ACTIONS(3065), - [anon_sym_LT_LT_LT] = ACTIONS(3065), - [sym__special_characters] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [anon_sym_DOLLAR] = ACTIONS(3067), - [sym_raw_string] = ACTIONS(3065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), - [anon_sym_BQUOTE] = ACTIONS(3065), - [anon_sym_LT_LPAREN] = ACTIONS(3065), - [anon_sym_GT_LPAREN] = ACTIONS(3065), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3067), - [anon_sym_LF] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), + [sym__simple_heredoc_body] = ACTIONS(1882), + [sym__heredoc_body_beginning] = ACTIONS(1882), + [sym_file_descriptor] = ACTIONS(1882), + [sym__concat] = ACTIONS(1882), + [sym_variable_name] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_esac] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1882), + [anon_sym_PIPE_AMP] = ACTIONS(1882), + [anon_sym_AMP_AMP] = ACTIONS(1882), + [anon_sym_PIPE_PIPE] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1882), + [anon_sym_AMP_GT] = ACTIONS(1884), + [anon_sym_AMP_GT_GT] = ACTIONS(1882), + [anon_sym_LT_AMP] = ACTIONS(1882), + [anon_sym_GT_AMP] = ACTIONS(1882), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1882), + [anon_sym_LT_LT_LT] = ACTIONS(1882), + [sym__special_characters] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [anon_sym_DOLLAR] = ACTIONS(1884), + [sym_raw_string] = ACTIONS(1882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1882), + [anon_sym_BQUOTE] = ACTIONS(1882), + [anon_sym_LT_LPAREN] = ACTIONS(1882), + [anon_sym_GT_LPAREN] = ACTIONS(1882), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1884), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1884), }, [2561] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6146), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(2694), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2694), + [sym_regex] = ACTIONS(6199), + [anon_sym_RBRACE] = ACTIONS(6169), + [anon_sym_EQ] = ACTIONS(6185), + [anon_sym_DASH] = ACTIONS(6185), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6187), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6185), + [anon_sym_COLON_QMARK] = ACTIONS(6185), + [anon_sym_COLON_DASH] = ACTIONS(6185), + [anon_sym_PERCENT] = ACTIONS(6185), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2562] = { - [sym_concatenation] = STATE(2697), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2697), - [anon_sym_RBRACE] = ACTIONS(6126), - [anon_sym_EQ] = ACTIONS(6142), - [anon_sym_DASH] = ACTIONS(6142), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6144), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6142), - [anon_sym_COLON_QMARK] = ACTIONS(6142), - [anon_sym_COLON_DASH] = ACTIONS(6142), - [anon_sym_PERCENT] = ACTIONS(6142), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6169), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2563] = { - [sym__simple_heredoc_body] = ACTIONS(3120), - [sym__heredoc_body_beginning] = ACTIONS(3120), - [sym_file_descriptor] = ACTIONS(3120), - [sym__concat] = ACTIONS(3120), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_esac] = ACTIONS(3122), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_SEMI_SEMI] = ACTIONS(3120), - [anon_sym_PIPE_AMP] = ACTIONS(3120), - [anon_sym_AMP_AMP] = ACTIONS(3120), - [anon_sym_PIPE_PIPE] = ACTIONS(3120), - [anon_sym_EQ_TILDE] = ACTIONS(3122), - [anon_sym_EQ_EQ] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_GT] = ACTIONS(3122), - [anon_sym_GT_GT] = ACTIONS(3120), - [anon_sym_AMP_GT] = ACTIONS(3122), - [anon_sym_AMP_GT_GT] = ACTIONS(3120), - [anon_sym_LT_AMP] = ACTIONS(3120), - [anon_sym_GT_AMP] = ACTIONS(3120), - [anon_sym_LT_LT] = ACTIONS(3122), - [anon_sym_LT_LT_DASH] = ACTIONS(3120), - [anon_sym_LT_LT_LT] = ACTIONS(3120), - [sym__special_characters] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [sym_raw_string] = ACTIONS(3120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), - [anon_sym_BQUOTE] = ACTIONS(3120), - [anon_sym_LT_LPAREN] = ACTIONS(3120), - [anon_sym_GT_LPAREN] = ACTIONS(3120), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3122), - [anon_sym_LF] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3122), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(6201), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2564] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(6152), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__simple_heredoc_body] = ACTIONS(1890), + [sym__heredoc_body_beginning] = ACTIONS(1890), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_esac] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(1892), + [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(57), + [sym_word] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1892), }, [2565] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(6152), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(6203), + [anon_sym_RPAREN] = ACTIONS(6201), + [anon_sym_SEMI_SEMI] = ACTIONS(6205), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6205), + [anon_sym_AMP] = ACTIONS(6205), }, [2566] = { - [sym__simple_heredoc_body] = ACTIONS(3158), - [sym__heredoc_body_beginning] = ACTIONS(3158), - [sym_file_descriptor] = ACTIONS(3158), - [sym__concat] = ACTIONS(3158), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_esac] = ACTIONS(3160), - [anon_sym_PIPE] = ACTIONS(3160), - [anon_sym_SEMI_SEMI] = ACTIONS(3158), - [anon_sym_PIPE_AMP] = ACTIONS(3158), - [anon_sym_AMP_AMP] = ACTIONS(3158), - [anon_sym_PIPE_PIPE] = ACTIONS(3158), - [anon_sym_EQ_TILDE] = ACTIONS(3160), - [anon_sym_EQ_EQ] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3160), - [anon_sym_GT] = ACTIONS(3160), - [anon_sym_GT_GT] = ACTIONS(3158), - [anon_sym_AMP_GT] = ACTIONS(3160), - [anon_sym_AMP_GT_GT] = ACTIONS(3158), - [anon_sym_LT_AMP] = ACTIONS(3158), - [anon_sym_GT_AMP] = ACTIONS(3158), - [anon_sym_LT_LT] = ACTIONS(3160), - [anon_sym_LT_LT_DASH] = ACTIONS(3158), - [anon_sym_LT_LT_LT] = ACTIONS(3158), - [sym__special_characters] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [anon_sym_DOLLAR] = ACTIONS(3160), - [sym_raw_string] = ACTIONS(3158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), - [anon_sym_BQUOTE] = ACTIONS(3158), - [anon_sym_LT_LPAREN] = ACTIONS(3158), - [anon_sym_GT_LPAREN] = ACTIONS(3158), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3160), - [anon_sym_LF] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2702), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(6207), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(6201), + [anon_sym_SEMI_SEMI] = ACTIONS(6209), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6209), + [anon_sym_AMP] = ACTIONS(6207), }, [2567] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(6154), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2702), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(6207), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(6201), + [anon_sym_SEMI_SEMI] = ACTIONS(6209), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(6209), + [anon_sym_AMP] = ACTIONS(6207), }, [2568] = { - [sym_file_redirect] = STATE(1437), - [sym_file_descriptor] = ACTIONS(5610), - [anon_sym_SEMI] = ACTIONS(2614), - [anon_sym_esac] = ACTIONS(2612), - [anon_sym_PIPE] = ACTIONS(2614), - [anon_sym_SEMI_SEMI] = ACTIONS(2612), - [anon_sym_PIPE_AMP] = ACTIONS(2612), - [anon_sym_AMP_AMP] = ACTIONS(2612), - [anon_sym_PIPE_PIPE] = ACTIONS(2612), - [anon_sym_LT] = ACTIONS(5612), - [anon_sym_GT] = ACTIONS(5612), - [anon_sym_GT_GT] = ACTIONS(5614), - [anon_sym_AMP_GT] = ACTIONS(5612), - [anon_sym_AMP_GT_GT] = ACTIONS(5614), - [anon_sym_LT_AMP] = ACTIONS(5614), - [anon_sym_GT_AMP] = ACTIONS(5614), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2612), - [anon_sym_AMP] = ACTIONS(2614), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(6201), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2569] = { - [aux_sym_concatenation_repeat1] = STATE(2572), - [sym__simple_heredoc_body] = ACTIONS(1088), - [sym__heredoc_body_beginning] = ACTIONS(1088), - [sym_file_descriptor] = ACTIONS(1088), - [sym__concat] = ACTIONS(5840), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_esac] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1090), - [anon_sym_SEMI_SEMI] = ACTIONS(1088), - [anon_sym_PIPE_AMP] = ACTIONS(1088), - [anon_sym_AMP_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1088), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(1090), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_AMP_GT] = ACTIONS(1090), - [anon_sym_AMP_GT_GT] = ACTIONS(1088), - [anon_sym_LT_AMP] = ACTIONS(1088), - [anon_sym_GT_AMP] = ACTIONS(1088), - [anon_sym_LT_LT] = ACTIONS(1090), - [anon_sym_LT_LT_DASH] = ACTIONS(1088), - [anon_sym_LT_LT_LT] = ACTIONS(1088), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(6211), + [anon_sym_SEMI_SEMI] = ACTIONS(6213), + [anon_sym_BQUOTE] = ACTIONS(6201), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6213), + [anon_sym_AMP] = ACTIONS(6213), }, [2570] = { - [aux_sym_concatenation_repeat1] = STATE(2572), - [sym__simple_heredoc_body] = ACTIONS(1092), - [sym__heredoc_body_beginning] = ACTIONS(1092), - [sym_file_descriptor] = ACTIONS(1092), - [sym__concat] = ACTIONS(5840), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_esac] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_SEMI_SEMI] = ACTIONS(1092), - [anon_sym_PIPE_AMP] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_LT] = ACTIONS(1094), - [anon_sym_GT] = ACTIONS(1094), - [anon_sym_GT_GT] = ACTIONS(1092), - [anon_sym_AMP_GT] = ACTIONS(1094), - [anon_sym_AMP_GT_GT] = ACTIONS(1092), - [anon_sym_LT_AMP] = ACTIONS(1092), - [anon_sym_GT_AMP] = ACTIONS(1092), - [anon_sym_LT_LT] = ACTIONS(1094), - [anon_sym_LT_LT_DASH] = ACTIONS(1092), - [anon_sym_LT_LT_LT] = ACTIONS(1092), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1092), - [anon_sym_AMP] = ACTIONS(1094), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(2705), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(6215), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(6217), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(6201), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6217), + [anon_sym_AMP] = ACTIONS(6215), }, [2571] = { - [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(6156), - [anon_sym_DQUOTE] = ACTIONS(5470), - [anon_sym_DOLLAR] = ACTIONS(5472), - [sym_raw_string] = ACTIONS(6156), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5476), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5478), - [anon_sym_BQUOTE] = ACTIONS(5480), - [anon_sym_LT_LPAREN] = ACTIONS(5482), - [anon_sym_GT_LPAREN] = ACTIONS(5482), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(6156), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(2705), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(6215), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(6217), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(6201), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(6217), + [anon_sym_AMP] = ACTIONS(6215), }, [2572] = { - [aux_sym_concatenation_repeat1] = STATE(2703), - [sym__simple_heredoc_body] = ACTIONS(807), - [sym__heredoc_body_beginning] = ACTIONS(807), - [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(5840), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_esac] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(809), - [anon_sym_AMP_GT_GT] = ACTIONS(807), - [anon_sym_LT_AMP] = ACTIONS(807), - [anon_sym_GT_AMP] = ACTIONS(807), - [anon_sym_LT_LT] = ACTIONS(809), - [anon_sym_LT_LT_DASH] = ACTIONS(807), - [anon_sym_LT_LT_LT] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(6219), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2573] = { - [sym__simple_heredoc_body] = ACTIONS(811), - [sym__heredoc_body_beginning] = ACTIONS(811), - [sym_file_descriptor] = ACTIONS(811), - [sym__concat] = ACTIONS(811), - [anon_sym_SEMI] = ACTIONS(813), - [anon_sym_esac] = ACTIONS(811), - [anon_sym_PIPE] = ACTIONS(813), - [anon_sym_SEMI_SEMI] = ACTIONS(811), - [anon_sym_PIPE_AMP] = ACTIONS(811), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_GT_GT] = ACTIONS(811), - [anon_sym_AMP_GT] = ACTIONS(813), - [anon_sym_AMP_GT_GT] = ACTIONS(811), - [anon_sym_LT_AMP] = ACTIONS(811), - [anon_sym_GT_AMP] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(813), - [anon_sym_LT_LT_DASH] = ACTIONS(811), - [anon_sym_LT_LT_LT] = ACTIONS(811), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(813), + [sym__simple_heredoc_body] = ACTIONS(1924), + [sym__heredoc_body_beginning] = ACTIONS(1924), + [sym_file_descriptor] = ACTIONS(1924), + [sym__concat] = ACTIONS(1924), + [sym_variable_name] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_esac] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [anon_sym_PIPE_AMP] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_GT_GT] = ACTIONS(1924), + [anon_sym_AMP_GT] = ACTIONS(1926), + [anon_sym_AMP_GT_GT] = ACTIONS(1924), + [anon_sym_LT_AMP] = ACTIONS(1924), + [anon_sym_GT_AMP] = ACTIONS(1924), + [anon_sym_LT_LT] = ACTIONS(1926), + [anon_sym_LT_LT_DASH] = ACTIONS(1924), + [anon_sym_LT_LT_LT] = ACTIONS(1924), + [sym__special_characters] = ACTIONS(1924), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(1924), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1924), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1924), + [anon_sym_BQUOTE] = ACTIONS(1924), + [anon_sym_LT_LPAREN] = ACTIONS(1924), + [anon_sym_GT_LPAREN] = ACTIONS(1924), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1926), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1926), }, [2574] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(6158), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(6221), + [anon_sym_RPAREN] = ACTIONS(6219), + [anon_sym_SEMI_SEMI] = ACTIONS(6223), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6223), + [anon_sym_AMP] = ACTIONS(6223), }, [2575] = { - [sym_simple_expansion] = STATE(148), - [sym_expansion] = STATE(148), - [sym_command_substitution] = STATE(148), - [aux_sym_string_repeat1] = STATE(473), - [anon_sym_DQUOTE] = ACTIONS(6158), - [anon_sym_DOLLAR] = ACTIONS(6160), - [sym__string_content] = ACTIONS(273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(277), - [anon_sym_BQUOTE] = ACTIONS(279), - [sym_comment] = ACTIONS(281), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2709), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(6225), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(6219), + [anon_sym_SEMI_SEMI] = ACTIONS(6227), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6227), + [anon_sym_AMP] = ACTIONS(6225), }, [2576] = { - [sym__simple_heredoc_body] = ACTIONS(845), - [sym__heredoc_body_beginning] = ACTIONS(845), - [sym_file_descriptor] = ACTIONS(845), - [sym__concat] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_esac] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_SEMI_SEMI] = ACTIONS(845), - [anon_sym_PIPE_AMP] = ACTIONS(845), - [anon_sym_AMP_AMP] = ACTIONS(845), - [anon_sym_PIPE_PIPE] = ACTIONS(845), - [anon_sym_LT] = ACTIONS(847), - [anon_sym_GT] = ACTIONS(847), - [anon_sym_GT_GT] = ACTIONS(845), - [anon_sym_AMP_GT] = ACTIONS(847), - [anon_sym_AMP_GT_GT] = ACTIONS(845), - [anon_sym_LT_AMP] = ACTIONS(845), - [anon_sym_GT_AMP] = ACTIONS(845), - [anon_sym_LT_LT] = ACTIONS(847), - [anon_sym_LT_LT_DASH] = ACTIONS(845), - [anon_sym_LT_LT_LT] = ACTIONS(845), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(845), - [anon_sym_AMP] = ACTIONS(847), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2709), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(6225), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(6219), + [anon_sym_SEMI_SEMI] = ACTIONS(6227), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(6227), + [anon_sym_AMP] = ACTIONS(6225), }, [2577] = { - [sym__simple_heredoc_body] = ACTIONS(849), - [sym__heredoc_body_beginning] = ACTIONS(849), - [sym_file_descriptor] = ACTIONS(849), - [sym__concat] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_esac] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_SEMI_SEMI] = ACTIONS(849), - [anon_sym_PIPE_AMP] = ACTIONS(849), - [anon_sym_AMP_AMP] = ACTIONS(849), - [anon_sym_PIPE_PIPE] = ACTIONS(849), - [anon_sym_LT] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(851), - [anon_sym_GT_GT] = ACTIONS(849), - [anon_sym_AMP_GT] = ACTIONS(851), - [anon_sym_AMP_GT_GT] = ACTIONS(849), - [anon_sym_LT_AMP] = ACTIONS(849), - [anon_sym_GT_AMP] = ACTIONS(849), - [anon_sym_LT_LT] = ACTIONS(851), - [anon_sym_LT_LT_DASH] = ACTIONS(849), - [anon_sym_LT_LT_LT] = ACTIONS(849), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(849), - [anon_sym_AMP] = ACTIONS(851), + [sym__simple_heredoc_body] = ACTIONS(2076), + [sym__heredoc_body_beginning] = ACTIONS(2076), + [sym_file_descriptor] = ACTIONS(2076), + [sym_variable_name] = ACTIONS(2076), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_esac] = ACTIONS(2078), + [anon_sym_PIPE] = ACTIONS(2078), + [anon_sym_SEMI_SEMI] = ACTIONS(2076), + [anon_sym_PIPE_AMP] = ACTIONS(2076), + [anon_sym_AMP_AMP] = ACTIONS(2076), + [anon_sym_PIPE_PIPE] = ACTIONS(2076), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_GT] = ACTIONS(2078), + [anon_sym_GT_GT] = ACTIONS(2076), + [anon_sym_AMP_GT] = ACTIONS(2078), + [anon_sym_AMP_GT_GT] = ACTIONS(2076), + [anon_sym_LT_AMP] = ACTIONS(2076), + [anon_sym_GT_AMP] = ACTIONS(2076), + [anon_sym_LT_LT] = ACTIONS(2078), + [anon_sym_LT_LT_DASH] = ACTIONS(2076), + [anon_sym_LT_LT_LT] = ACTIONS(2076), + [sym__special_characters] = ACTIONS(2076), + [anon_sym_DQUOTE] = ACTIONS(2076), + [anon_sym_DOLLAR] = ACTIONS(2078), + [sym_raw_string] = ACTIONS(2076), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2076), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2076), + [anon_sym_BQUOTE] = ACTIONS(2076), + [anon_sym_LT_LPAREN] = ACTIONS(2076), + [anon_sym_GT_LPAREN] = ACTIONS(2076), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2078), + [sym_word] = ACTIONS(2078), + [anon_sym_LF] = ACTIONS(2076), + [anon_sym_AMP] = ACTIONS(2078), }, [2578] = { - [sym__simple_heredoc_body] = ACTIONS(853), - [sym__heredoc_body_beginning] = ACTIONS(853), - [sym_file_descriptor] = ACTIONS(853), - [sym__concat] = ACTIONS(853), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_esac] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(855), - [anon_sym_SEMI_SEMI] = ACTIONS(853), - [anon_sym_PIPE_AMP] = ACTIONS(853), - [anon_sym_AMP_AMP] = ACTIONS(853), - [anon_sym_PIPE_PIPE] = ACTIONS(853), - [anon_sym_LT] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(855), - [anon_sym_GT_GT] = ACTIONS(853), - [anon_sym_AMP_GT] = ACTIONS(855), - [anon_sym_AMP_GT_GT] = ACTIONS(853), - [anon_sym_LT_AMP] = ACTIONS(853), - [anon_sym_GT_AMP] = ACTIONS(853), - [anon_sym_LT_LT] = ACTIONS(855), - [anon_sym_LT_LT_DASH] = ACTIONS(853), - [anon_sym_LT_LT_LT] = ACTIONS(853), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(855), + [sym_concatenation] = STATE(1007), + [sym_string] = STATE(537), + [sym_simple_expansion] = STATE(537), + [sym_string_expansion] = STATE(537), + [sym_expansion] = STATE(537), + [sym_command_substitution] = STATE(537), + [sym_process_substitution] = STATE(537), + [aux_sym_for_statement_repeat1] = STATE(1007), + [anon_sym_RPAREN] = ACTIONS(6229), + [sym__special_characters] = ACTIONS(1091), + [anon_sym_DQUOTE] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1095), + [sym_raw_string] = ACTIONS(1097), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1099), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1101), + [anon_sym_BQUOTE] = ACTIONS(1103), + [anon_sym_LT_LPAREN] = ACTIONS(1105), + [anon_sym_GT_LPAREN] = ACTIONS(1105), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1097), }, [2579] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(6162), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(2930), + [sym__heredoc_body_beginning] = ACTIONS(2930), + [sym_file_descriptor] = ACTIONS(2930), + [sym__concat] = ACTIONS(2930), + [sym_variable_name] = ACTIONS(2930), + [anon_sym_SEMI] = ACTIONS(2932), + [anon_sym_esac] = ACTIONS(2932), + [anon_sym_PIPE] = ACTIONS(2932), + [anon_sym_SEMI_SEMI] = ACTIONS(2930), + [anon_sym_PIPE_AMP] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_PIPE_PIPE] = ACTIONS(2930), + [anon_sym_LT] = ACTIONS(2932), + [anon_sym_GT] = ACTIONS(2932), + [anon_sym_GT_GT] = ACTIONS(2930), + [anon_sym_AMP_GT] = ACTIONS(2932), + [anon_sym_AMP_GT_GT] = ACTIONS(2930), + [anon_sym_LT_AMP] = ACTIONS(2930), + [anon_sym_GT_AMP] = ACTIONS(2930), + [anon_sym_LT_LT] = ACTIONS(2932), + [anon_sym_LT_LT_DASH] = ACTIONS(2930), + [anon_sym_LT_LT_LT] = ACTIONS(2930), + [sym__special_characters] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [anon_sym_DOLLAR] = ACTIONS(2932), + [sym_raw_string] = ACTIONS(2930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2930), + [anon_sym_BQUOTE] = ACTIONS(2930), + [anon_sym_LT_LPAREN] = ACTIONS(2930), + [anon_sym_GT_LPAREN] = ACTIONS(2930), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2932), + [sym_word] = ACTIONS(2932), + [anon_sym_LF] = ACTIONS(2930), + [anon_sym_AMP] = ACTIONS(2932), }, [2580] = { - [sym_subscript] = STATE(2709), - [sym_variable_name] = ACTIONS(6164), - [anon_sym_DASH] = ACTIONS(6166), - [anon_sym_DOLLAR] = ACTIONS(6166), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6168), - [anon_sym_STAR] = ACTIONS(6170), - [anon_sym_AT] = ACTIONS(6170), - [anon_sym_QMARK] = ACTIONS(6170), - [anon_sym_0] = ACTIONS(6168), - [anon_sym__] = ACTIONS(6168), + [sym__simple_heredoc_body] = ACTIONS(2944), + [sym__heredoc_body_beginning] = ACTIONS(2944), + [sym_file_descriptor] = ACTIONS(2944), + [sym__concat] = ACTIONS(2944), + [sym_variable_name] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_esac] = ACTIONS(2946), + [anon_sym_PIPE] = ACTIONS(2946), + [anon_sym_SEMI_SEMI] = ACTIONS(2944), + [anon_sym_PIPE_AMP] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_GT] = ACTIONS(2946), + [anon_sym_GT_GT] = ACTIONS(2944), + [anon_sym_AMP_GT] = ACTIONS(2946), + [anon_sym_AMP_GT_GT] = ACTIONS(2944), + [anon_sym_LT_AMP] = ACTIONS(2944), + [anon_sym_GT_AMP] = ACTIONS(2944), + [anon_sym_LT_LT] = ACTIONS(2946), + [anon_sym_LT_LT_DASH] = ACTIONS(2944), + [anon_sym_LT_LT_LT] = ACTIONS(2944), + [sym__special_characters] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_DOLLAR] = ACTIONS(2946), + [sym_raw_string] = ACTIONS(2944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2944), + [anon_sym_BQUOTE] = ACTIONS(2944), + [anon_sym_LT_LPAREN] = ACTIONS(2944), + [anon_sym_GT_LPAREN] = ACTIONS(2944), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2946), + [sym_word] = ACTIONS(2946), + [anon_sym_LF] = ACTIONS(2944), + [anon_sym_AMP] = ACTIONS(2946), }, [2581] = { - [sym_concatenation] = STATE(2712), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2712), - [anon_sym_RBRACE] = ACTIONS(6172), - [anon_sym_EQ] = ACTIONS(6174), - [anon_sym_DASH] = ACTIONS(6174), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6176), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(6178), - [anon_sym_COLON] = ACTIONS(6174), - [anon_sym_COLON_QMARK] = ACTIONS(6174), - [anon_sym_COLON_DASH] = ACTIONS(6174), - [anon_sym_PERCENT] = ACTIONS(6174), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(6231), + [sym_comment] = ACTIONS(57), }, [2582] = { - [sym_concatenation] = STATE(2715), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2715), - [anon_sym_RBRACE] = ACTIONS(6180), - [anon_sym_EQ] = ACTIONS(6182), - [anon_sym_DASH] = ACTIONS(6182), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6184), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(6186), - [anon_sym_COLON] = ACTIONS(6182), - [anon_sym_COLON_QMARK] = ACTIONS(6182), - [anon_sym_COLON_DASH] = ACTIONS(6182), - [anon_sym_PERCENT] = ACTIONS(6182), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(6233), + [sym_comment] = ACTIONS(57), }, [2583] = { - [anon_sym_SEMI] = ACTIONS(6188), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(6190), - [anon_sym_SEMI_SEMI] = ACTIONS(6192), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(6192), - [anon_sym_AMP] = ACTIONS(6188), + [anon_sym_RBRACE] = ACTIONS(6233), + [sym_comment] = ACTIONS(57), }, [2584] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(6188), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(6190), - [anon_sym_SEMI_SEMI] = ACTIONS(6192), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(6192), - [anon_sym_AMP] = ACTIONS(6188), + [sym_concatenation] = STATE(2715), + [sym_string] = STATE(2714), + [sym_simple_expansion] = STATE(2714), + [sym_string_expansion] = STATE(2714), + [sym_expansion] = STATE(2714), + [sym_command_substitution] = STATE(2714), + [sym_process_substitution] = STATE(2714), + [anon_sym_RBRACE] = ACTIONS(6233), + [sym__special_characters] = ACTIONS(6235), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(6237), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6237), }, [2585] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(2718), - [sym_c_style_for_statement] = STATE(2718), - [sym_while_statement] = STATE(2718), - [sym_if_statement] = STATE(2718), - [sym_case_statement] = STATE(2718), - [sym_function_definition] = STATE(2718), - [sym_subshell] = STATE(2718), - [sym_pipeline] = STATE(2718), - [sym_list] = STATE(2718), - [sym_negated_command] = STATE(2718), - [sym_test_command] = STATE(2718), - [sym_declaration_command] = STATE(2718), - [sym_unset_command] = STATE(2718), - [sym_command] = STATE(2718), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(2719), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), + [sym__simple_heredoc_body] = ACTIONS(2980), + [sym__heredoc_body_beginning] = ACTIONS(2980), + [sym_file_descriptor] = ACTIONS(2980), + [sym__concat] = ACTIONS(2980), + [sym_variable_name] = ACTIONS(2980), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_esac] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2982), + [anon_sym_SEMI_SEMI] = ACTIONS(2980), + [anon_sym_PIPE_AMP] = ACTIONS(2980), + [anon_sym_AMP_AMP] = ACTIONS(2980), + [anon_sym_PIPE_PIPE] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_GT] = ACTIONS(2982), + [anon_sym_GT_GT] = ACTIONS(2980), + [anon_sym_AMP_GT] = ACTIONS(2982), + [anon_sym_AMP_GT_GT] = ACTIONS(2980), + [anon_sym_LT_AMP] = ACTIONS(2980), + [anon_sym_GT_AMP] = ACTIONS(2980), + [anon_sym_LT_LT] = ACTIONS(2982), + [anon_sym_LT_LT_DASH] = ACTIONS(2980), + [anon_sym_LT_LT_LT] = ACTIONS(2980), + [sym__special_characters] = ACTIONS(2980), + [anon_sym_DQUOTE] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2982), + [sym_raw_string] = ACTIONS(2980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2980), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2980), + [anon_sym_BQUOTE] = ACTIONS(2980), + [anon_sym_LT_LPAREN] = ACTIONS(2980), + [anon_sym_GT_LPAREN] = ACTIONS(2980), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2982), + [sym_word] = ACTIONS(2982), + [anon_sym_LF] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), }, [2586] = { - [anon_sym_SEMI] = ACTIONS(6194), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(6196), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(6190), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(6196), - [anon_sym_AMP] = ACTIONS(6194), + [sym_concatenation] = STATE(2718), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2718), + [sym_regex] = ACTIONS(6239), + [anon_sym_RBRACE] = ACTIONS(6241), + [anon_sym_EQ] = ACTIONS(6243), + [anon_sym_DASH] = ACTIONS(6243), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6245), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6243), + [anon_sym_COLON_QMARK] = ACTIONS(6243), + [anon_sym_COLON_DASH] = ACTIONS(6243), + [anon_sym_PERCENT] = ACTIONS(6243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2587] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(6194), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(6196), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(6190), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(6196), - [anon_sym_AMP] = ACTIONS(6194), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6241), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2588] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(2721), - [sym_c_style_for_statement] = STATE(2721), - [sym_while_statement] = STATE(2721), - [sym_if_statement] = STATE(2721), - [sym_case_statement] = STATE(2721), - [sym_function_definition] = STATE(2721), - [sym_subshell] = STATE(2721), - [sym_pipeline] = STATE(2721), - [sym_list] = STATE(2721), - [sym_negated_command] = STATE(2721), - [sym_test_command] = STATE(2721), - [sym_declaration_command] = STATE(2721), - [sym_unset_command] = STATE(2721), - [sym_command] = STATE(2721), - [sym_command_name] = STATE(173), - [sym_variable_assignment] = STATE(2722), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(176), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(176), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(305), - [anon_sym_while] = ACTIONS(307), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_LBRACK_LBRACK] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(321), + [sym_concatenation] = STATE(2720), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2720), + [sym_regex] = ACTIONS(6247), + [anon_sym_RBRACE] = ACTIONS(6233), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_DASH] = ACTIONS(6249), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6249), + [anon_sym_COLON_QMARK] = ACTIONS(6249), + [anon_sym_COLON_DASH] = ACTIONS(6249), + [anon_sym_PERCENT] = ACTIONS(6249), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2589] = { - [anon_sym_SEMI] = ACTIONS(6198), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(6200), - [anon_sym_SEMI_SEMI] = ACTIONS(6202), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(6202), - [anon_sym_AMP] = ACTIONS(6198), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6233), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2590] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(6198), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(6200), - [anon_sym_SEMI_SEMI] = ACTIONS(6202), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(6202), - [anon_sym_AMP] = ACTIONS(6198), - }, - [2591] = { - [sym__terminated_statement] = STATE(198), - [sym_for_statement] = STATE(2725), - [sym_c_style_for_statement] = STATE(2725), - [sym_while_statement] = STATE(2725), - [sym_if_statement] = STATE(2725), - [sym_case_statement] = STATE(2725), - [sym_function_definition] = STATE(2725), - [sym_subshell] = STATE(2725), - [sym_pipeline] = STATE(2725), - [sym_list] = STATE(2725), - [sym_negated_command] = STATE(2725), - [sym_test_command] = STATE(2725), - [sym_declaration_command] = STATE(2725), - [sym_unset_command] = STATE(2725), - [sym_command] = STATE(2725), - [sym_command_name] = STATE(92), - [sym_variable_assignment] = STATE(2726), - [sym_subscript] = STATE(94), - [sym_file_redirect] = STATE(96), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(89), - [sym_simple_expansion] = STATE(89), - [sym_string_expansion] = STATE(89), - [sym_expansion] = STATE(89), - [sym_command_substitution] = STATE(89), - [sym_process_substitution] = STATE(89), - [aux_sym__statements_repeat1] = STATE(198), - [aux_sym_command_repeat1] = STATE(96), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(137), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(139), - [anon_sym_while] = ACTIONS(141), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(143), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_LBRACK_LBRACK] = ACTIONS(149), - [anon_sym_declare] = ACTIONS(151), - [anon_sym_typeset] = ACTIONS(151), - [anon_sym_export] = ACTIONS(151), - [anon_sym_readonly] = ACTIONS(151), - [anon_sym_local] = ACTIONS(151), - [anon_sym_unset] = ACTIONS(153), - [anon_sym_unsetenv] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(159), - }, - [2592] = { - [sym_file_redirect] = STATE(2418), - [sym_heredoc_redirect] = STATE(2418), - [sym_heredoc_body] = STATE(1449), - [sym_herestring_redirect] = STATE(2418), - [aux_sym_while_statement_repeat1] = STATE(2418), - [sym__simple_heredoc_body] = ACTIONS(339), - [sym__heredoc_body_beginning] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(5091), - [anon_sym_SEMI] = ACTIONS(3207), - [anon_sym_esac] = ACTIONS(3205), - [anon_sym_PIPE] = ACTIONS(3207), - [anon_sym_SEMI_SEMI] = ACTIONS(3205), - [anon_sym_PIPE_AMP] = ACTIONS(3205), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_PIPE_PIPE] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(5095), - [anon_sym_GT] = ACTIONS(5095), - [anon_sym_GT_GT] = ACTIONS(5097), - [anon_sym_AMP_GT] = ACTIONS(5095), - [anon_sym_AMP_GT_GT] = ACTIONS(5097), - [anon_sym_LT_AMP] = ACTIONS(5097), - [anon_sym_GT_AMP] = ACTIONS(5097), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_LT_LT_DASH] = ACTIONS(357), - [anon_sym_LT_LT_LT] = ACTIONS(5099), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3207), - }, - [2593] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_esac] = ACTIONS(6204), - [anon_sym_SEMI_SEMI] = ACTIONS(943), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(6206), - [anon_sym_DQUOTE] = ACTIONS(6208), - [anon_sym_DOLLAR] = ACTIONS(6206), - [sym_raw_string] = ACTIONS(6208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6208), - [anon_sym_BQUOTE] = ACTIONS(6208), - [anon_sym_LT_LPAREN] = ACTIONS(6208), - [anon_sym_GT_LPAREN] = ACTIONS(6208), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(6206), - }, - [2594] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_esac] = ACTIONS(6210), - [anon_sym_SEMI_SEMI] = ACTIONS(943), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(6212), - [anon_sym_DQUOTE] = ACTIONS(6214), - [anon_sym_DOLLAR] = ACTIONS(6212), - [sym_raw_string] = ACTIONS(6214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6214), - [anon_sym_BQUOTE] = ACTIONS(6214), - [anon_sym_LT_LPAREN] = ACTIONS(6214), - [anon_sym_GT_LPAREN] = ACTIONS(6214), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(6212), - }, - [2595] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_SEMI_SEMI] = ACTIONS(943), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(5454), - [anon_sym_DQUOTE] = ACTIONS(5456), - [anon_sym_DOLLAR] = ACTIONS(5454), - [sym_raw_string] = ACTIONS(5456), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5456), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5456), - [anon_sym_BQUOTE] = ACTIONS(5456), - [anon_sym_LT_LPAREN] = ACTIONS(5456), - [anon_sym_GT_LPAREN] = ACTIONS(5456), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5454), - }, - [2596] = { - [sym__special_characters] = ACTIONS(5456), - [anon_sym_DQUOTE] = ACTIONS(5456), - [anon_sym_DOLLAR] = ACTIONS(5454), - [sym_raw_string] = ACTIONS(5456), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5456), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5456), - [anon_sym_BQUOTE] = ACTIONS(5456), - [anon_sym_LT_LPAREN] = ACTIONS(5456), - [anon_sym_GT_LPAREN] = ACTIONS(5456), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5456), - }, - [2597] = { - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_SEMI_SEMI] = ACTIONS(6216), - [anon_sym_PIPE_AMP] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(535), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2081), - }, - [2598] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_SEMI_SEMI] = ACTIONS(6216), - [anon_sym_PIPE_AMP] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2081), - }, - [2599] = { - [sym__terminated_statement] = STATE(2599), - [sym_for_statement] = STATE(545), - [sym_c_style_for_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_function_definition] = STATE(545), - [sym_subshell] = STATE(545), - [sym_pipeline] = STATE(545), - [sym_list] = STATE(545), - [sym_negated_command] = STATE(545), - [sym_test_command] = STATE(545), - [sym_declaration_command] = STATE(545), - [sym_unset_command] = STATE(545), - [sym_command] = STATE(545), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(546), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(2599), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(997), - [sym_variable_name] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1003), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1009), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_case] = ACTIONS(1015), - [anon_sym_SEMI_SEMI] = ACTIONS(3728), - [anon_sym_function] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1027), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1030), - [anon_sym_declare] = ACTIONS(1033), - [anon_sym_typeset] = ACTIONS(1033), - [anon_sym_export] = ACTIONS(1033), - [anon_sym_readonly] = ACTIONS(1033), - [anon_sym_local] = ACTIONS(1033), - [anon_sym_unset] = ACTIONS(1036), - [anon_sym_unsetenv] = ACTIONS(1036), - [anon_sym_LT] = ACTIONS(1039), - [anon_sym_GT] = ACTIONS(1039), - [anon_sym_GT_GT] = ACTIONS(1042), - [anon_sym_AMP_GT] = ACTIONS(1039), - [anon_sym_AMP_GT_GT] = ACTIONS(1042), - [anon_sym_LT_AMP] = ACTIONS(1042), - [anon_sym_GT_AMP] = ACTIONS(1042), - [sym__special_characters] = ACTIONS(1045), - [anon_sym_DQUOTE] = ACTIONS(1048), - [anon_sym_DOLLAR] = ACTIONS(1051), - [sym_raw_string] = ACTIONS(1054), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1060), - [anon_sym_BQUOTE] = ACTIONS(1063), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1069), - }, - [2600] = { - [sym__terminated_statement] = STATE(2599), - [sym_for_statement] = STATE(2729), - [sym_c_style_for_statement] = STATE(2729), - [sym_while_statement] = STATE(2729), - [sym_if_statement] = STATE(2729), - [sym_case_statement] = STATE(2729), - [sym_function_definition] = STATE(2729), - [sym_subshell] = STATE(2729), - [sym_pipeline] = STATE(2729), - [sym_list] = STATE(2729), - [sym_negated_command] = STATE(2729), - [sym_test_command] = STATE(2729), - [sym_declaration_command] = STATE(2729), - [sym_unset_command] = STATE(2729), - [sym_command] = STATE(2729), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(2730), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(2599), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_SEMI_SEMI] = ACTIONS(6218), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), - }, - [2601] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_SEMI_SEMI] = ACTIONS(943), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(5496), - [anon_sym_DQUOTE] = ACTIONS(5498), - [anon_sym_DOLLAR] = ACTIONS(5496), - [sym_raw_string] = ACTIONS(5498), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5498), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5498), - [anon_sym_BQUOTE] = ACTIONS(5498), - [anon_sym_LT_LPAREN] = ACTIONS(5498), - [anon_sym_GT_LPAREN] = ACTIONS(5498), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5496), - }, - [2602] = { - [sym__special_characters] = ACTIONS(5498), - [anon_sym_DQUOTE] = ACTIONS(5498), - [anon_sym_DOLLAR] = ACTIONS(5496), - [sym_raw_string] = ACTIONS(5498), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5498), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5498), - [anon_sym_BQUOTE] = ACTIONS(5498), - [anon_sym_LT_LPAREN] = ACTIONS(5498), - [anon_sym_GT_LPAREN] = ACTIONS(5498), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5498), - }, - [2603] = { - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_SEMI_SEMI] = ACTIONS(6220), - [anon_sym_PIPE_AMP] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(535), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2081), - }, - [2604] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_SEMI_SEMI] = ACTIONS(6220), - [anon_sym_PIPE_AMP] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2081), - }, - [2605] = { - [sym__terminated_statement] = STATE(2599), - [sym_for_statement] = STATE(2733), - [sym_c_style_for_statement] = STATE(2733), - [sym_while_statement] = STATE(2733), - [sym_if_statement] = STATE(2733), - [sym_case_statement] = STATE(2733), - [sym_function_definition] = STATE(2733), - [sym_subshell] = STATE(2733), - [sym_pipeline] = STATE(2733), - [sym_list] = STATE(2733), - [sym_negated_command] = STATE(2733), - [sym_test_command] = STATE(2733), - [sym_declaration_command] = STATE(2733), - [sym_unset_command] = STATE(2733), - [sym_command] = STATE(2733), - [sym_command_name] = STATE(64), - [sym_variable_assignment] = STATE(2734), - [sym_subscript] = STATE(66), - [sym_file_redirect] = STATE(67), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(60), - [sym_simple_expansion] = STATE(60), - [sym_string_expansion] = STATE(60), - [sym_expansion] = STATE(60), - [sym_command_substitution] = STATE(60), - [sym_process_substitution] = STATE(60), - [aux_sym__statements_repeat1] = STATE(2599), - [aux_sym_command_repeat1] = STATE(67), - [sym_file_descriptor] = ACTIONS(5), - [sym_variable_name] = ACTIONS(95), - [anon_sym_for] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(97), - [anon_sym_while] = ACTIONS(99), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_SEMI_SEMI] = ACTIONS(6222), - [anon_sym_function] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_LBRACK_LBRACK] = ACTIONS(107), - [anon_sym_declare] = ACTIONS(109), - [anon_sym_typeset] = ACTIONS(109), - [anon_sym_export] = ACTIONS(109), - [anon_sym_readonly] = ACTIONS(109), - [anon_sym_local] = ACTIONS(109), - [anon_sym_unset] = ACTIONS(111), - [anon_sym_unsetenv] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(37), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(37), - [anon_sym_LT_AMP] = ACTIONS(37), - [anon_sym_GT_AMP] = ACTIONS(37), - [sym__special_characters] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(41), - [anon_sym_DOLLAR] = ACTIONS(43), - [sym_raw_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), - [anon_sym_BQUOTE] = ACTIONS(51), - [anon_sym_LT_LPAREN] = ACTIONS(53), - [anon_sym_GT_LPAREN] = ACTIONS(53), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(117), - }, - [2606] = { - [sym__concat] = ACTIONS(5202), - [anon_sym_RBRACE] = ACTIONS(5202), - [sym_comment] = ACTIONS(55), - }, - [2607] = { - [sym__concat] = ACTIONS(5206), - [anon_sym_RBRACE] = ACTIONS(5206), - [sym_comment] = ACTIONS(55), - }, - [2608] = { - [sym_file_descriptor] = ACTIONS(5202), - [sym__concat] = ACTIONS(5202), - [ts_builtin_sym_end] = ACTIONS(5202), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_esac] = ACTIONS(5202), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_RPAREN] = ACTIONS(5202), - [anon_sym_SEMI_SEMI] = ACTIONS(5202), - [anon_sym_PIPE_AMP] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_PIPE_PIPE] = ACTIONS(5202), - [anon_sym_LT] = ACTIONS(5204), - [anon_sym_GT] = ACTIONS(5204), - [anon_sym_GT_GT] = ACTIONS(5202), - [anon_sym_AMP_GT] = ACTIONS(5204), - [anon_sym_AMP_GT_GT] = ACTIONS(5202), - [anon_sym_LT_AMP] = ACTIONS(5202), - [anon_sym_GT_AMP] = ACTIONS(5202), - [anon_sym_LT_LT] = ACTIONS(5204), - [anon_sym_LT_LT_DASH] = ACTIONS(5202), - [anon_sym_LT_LT_LT] = ACTIONS(5202), - [anon_sym_BQUOTE] = ACTIONS(5202), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5204), - }, - [2609] = { - [sym_file_descriptor] = ACTIONS(5206), - [sym__concat] = ACTIONS(5206), - [ts_builtin_sym_end] = ACTIONS(5206), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym_esac] = ACTIONS(5206), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_RPAREN] = ACTIONS(5206), - [anon_sym_SEMI_SEMI] = ACTIONS(5206), - [anon_sym_PIPE_AMP] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [anon_sym_LT] = ACTIONS(5208), - [anon_sym_GT] = ACTIONS(5208), - [anon_sym_GT_GT] = ACTIONS(5206), - [anon_sym_AMP_GT] = ACTIONS(5208), - [anon_sym_AMP_GT_GT] = ACTIONS(5206), - [anon_sym_LT_AMP] = ACTIONS(5206), - [anon_sym_GT_AMP] = ACTIONS(5206), - [anon_sym_LT_LT] = ACTIONS(5208), - [anon_sym_LT_LT_DASH] = ACTIONS(5206), - [anon_sym_LT_LT_LT] = ACTIONS(5206), - [anon_sym_BQUOTE] = ACTIONS(5206), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5208), - }, - [2610] = { - [sym_file_descriptor] = ACTIONS(3265), - [sym_variable_name] = ACTIONS(3265), - [anon_sym_SEMI] = ACTIONS(3267), - [anon_sym_esac] = ACTIONS(3267), - [anon_sym_PIPE] = ACTIONS(3267), - [anon_sym_SEMI_SEMI] = ACTIONS(3265), - [anon_sym_PIPE_AMP] = ACTIONS(3265), - [anon_sym_AMP_AMP] = ACTIONS(3265), - [anon_sym_PIPE_PIPE] = ACTIONS(3265), - [anon_sym_LT] = ACTIONS(3267), - [anon_sym_GT] = ACTIONS(3267), - [anon_sym_GT_GT] = ACTIONS(3265), - [anon_sym_AMP_GT] = ACTIONS(3267), - [anon_sym_AMP_GT_GT] = ACTIONS(3265), - [anon_sym_LT_AMP] = ACTIONS(3265), - [anon_sym_GT_AMP] = ACTIONS(3265), - [sym__special_characters] = ACTIONS(3265), - [anon_sym_DQUOTE] = ACTIONS(3265), - [anon_sym_DOLLAR] = ACTIONS(3267), - [sym_raw_string] = ACTIONS(3265), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3265), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3265), - [anon_sym_BQUOTE] = ACTIONS(3265), - [anon_sym_LT_LPAREN] = ACTIONS(3265), - [anon_sym_GT_LPAREN] = ACTIONS(3265), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3267), - [anon_sym_LF] = ACTIONS(3265), - [anon_sym_AMP] = ACTIONS(3267), - }, - [2611] = { - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(1763), - [sym_variable_name] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_esac] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - }, - [2612] = { - [aux_sym_concatenation_repeat1] = STATE(2612), - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(6224), - [sym_variable_name] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_esac] = ACTIONS(1765), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [sym__special_characters] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1765), - [sym_raw_string] = ACTIONS(1763), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1763), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), - [anon_sym_BQUOTE] = ACTIONS(1763), - [anon_sym_LT_LPAREN] = ACTIONS(1763), - [anon_sym_GT_LPAREN] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1765), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), - }, - [2613] = { - [sym_file_descriptor] = ACTIONS(1770), - [sym__concat] = ACTIONS(1770), - [sym_variable_name] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_esac] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_SEMI_SEMI] = ACTIONS(1770), - [anon_sym_PIPE_AMP] = ACTIONS(1770), - [anon_sym_AMP_AMP] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1770), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1772), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_AMP_GT] = ACTIONS(1772), - [anon_sym_AMP_GT_GT] = ACTIONS(1770), - [anon_sym_LT_AMP] = ACTIONS(1770), - [anon_sym_GT_AMP] = ACTIONS(1770), - [sym__special_characters] = ACTIONS(1770), - [anon_sym_DQUOTE] = ACTIONS(1770), - [anon_sym_DOLLAR] = ACTIONS(1772), - [sym_raw_string] = ACTIONS(1770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), - [anon_sym_BQUOTE] = ACTIONS(1770), - [anon_sym_LT_LPAREN] = ACTIONS(1770), - [anon_sym_GT_LPAREN] = ACTIONS(1770), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1772), - [anon_sym_LF] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1772), - }, - [2614] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(6227), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), - }, - [2615] = { - [sym_concatenation] = STATE(2739), - [sym_string] = STATE(2738), - [sym_simple_expansion] = STATE(2738), - [sym_string_expansion] = STATE(2738), - [sym_expansion] = STATE(2738), - [sym_command_substitution] = STATE(2738), - [sym_process_substitution] = STATE(2738), - [anon_sym_RBRACE] = ACTIONS(6229), - [sym__special_characters] = ACTIONS(6231), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(6233), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(6233), - }, - [2616] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(6235), - [sym_comment] = ACTIONS(55), - }, - [2617] = { - [sym_concatenation] = STATE(2743), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2743), - [anon_sym_RBRACE] = ACTIONS(6237), - [anon_sym_EQ] = ACTIONS(6239), - [anon_sym_DASH] = ACTIONS(6239), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6241), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(6243), - [anon_sym_COLON] = ACTIONS(6239), - [anon_sym_COLON_QMARK] = ACTIONS(6239), - [anon_sym_COLON_DASH] = ACTIONS(6239), - [anon_sym_PERCENT] = ACTIONS(6239), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2618] = { - [sym_concatenation] = STATE(2745), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2745), - [anon_sym_RBRACE] = ACTIONS(6229), - [anon_sym_EQ] = ACTIONS(6245), - [anon_sym_DASH] = ACTIONS(6245), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(6249), - [anon_sym_COLON] = ACTIONS(6245), - [anon_sym_COLON_QMARK] = ACTIONS(6245), - [anon_sym_COLON_DASH] = ACTIONS(6245), - [anon_sym_PERCENT] = ACTIONS(6245), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2619] = { - [sym_file_descriptor] = ACTIONS(1871), - [sym__concat] = ACTIONS(1871), - [sym_variable_name] = ACTIONS(1871), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_esac] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_SEMI_SEMI] = ACTIONS(1871), - [anon_sym_PIPE_AMP] = ACTIONS(1871), - [anon_sym_AMP_AMP] = ACTIONS(1871), - [anon_sym_PIPE_PIPE] = ACTIONS(1871), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_GT] = ACTIONS(1873), - [anon_sym_GT_GT] = ACTIONS(1871), - [anon_sym_AMP_GT] = ACTIONS(1873), - [anon_sym_AMP_GT_GT] = ACTIONS(1871), - [anon_sym_LT_AMP] = ACTIONS(1871), - [anon_sym_GT_AMP] = ACTIONS(1871), - [sym__special_characters] = ACTIONS(1871), - [anon_sym_DQUOTE] = ACTIONS(1871), - [anon_sym_DOLLAR] = ACTIONS(1873), - [sym_raw_string] = ACTIONS(1871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1871), - [anon_sym_BQUOTE] = ACTIONS(1871), - [anon_sym_LT_LPAREN] = ACTIONS(1871), - [anon_sym_GT_LPAREN] = ACTIONS(1871), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1873), - [anon_sym_LF] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1873), - }, - [2620] = { - [sym_concatenation] = STATE(2748), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2748), - [sym_regex] = ACTIONS(6251), + [sym_concatenation] = STATE(2722), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2722), [anon_sym_RBRACE] = ACTIONS(6253), [anon_sym_EQ] = ACTIONS(6255), [anon_sym_DASH] = ACTIONS(6255), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), [anon_sym_POUND] = ACTIONS(6257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), [anon_sym_COLON] = ACTIONS(6255), [anon_sym_COLON_QMARK] = ACTIONS(6255), [anon_sym_COLON_DASH] = ACTIONS(6255), [anon_sym_PERCENT] = ACTIONS(6255), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2591] = { + [sym__simple_heredoc_body] = ACTIONS(3036), + [sym__heredoc_body_beginning] = ACTIONS(3036), + [sym_file_descriptor] = ACTIONS(3036), + [sym__concat] = ACTIONS(3036), + [sym_variable_name] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_esac] = ACTIONS(3038), + [anon_sym_PIPE] = ACTIONS(3038), + [anon_sym_SEMI_SEMI] = ACTIONS(3036), + [anon_sym_PIPE_AMP] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3038), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_AMP_GT] = ACTIONS(3038), + [anon_sym_AMP_GT_GT] = ACTIONS(3036), + [anon_sym_LT_AMP] = ACTIONS(3036), + [anon_sym_GT_AMP] = ACTIONS(3036), + [anon_sym_LT_LT] = ACTIONS(3038), + [anon_sym_LT_LT_DASH] = ACTIONS(3036), + [anon_sym_LT_LT_LT] = ACTIONS(3036), + [sym__special_characters] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_DOLLAR] = ACTIONS(3038), + [sym_raw_string] = ACTIONS(3036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3036), + [anon_sym_BQUOTE] = ACTIONS(3036), + [anon_sym_LT_LPAREN] = ACTIONS(3036), + [anon_sym_GT_LPAREN] = ACTIONS(3036), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3038), + [sym_word] = ACTIONS(3038), + [anon_sym_LF] = ACTIONS(3036), + [anon_sym_AMP] = ACTIONS(3038), + }, + [2592] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6253), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2593] = { + [sym_concatenation] = STATE(2720), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2720), + [anon_sym_RBRACE] = ACTIONS(6233), + [anon_sym_EQ] = ACTIONS(6249), + [anon_sym_DASH] = ACTIONS(6249), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6249), + [anon_sym_COLON_QMARK] = ACTIONS(6249), + [anon_sym_COLON_DASH] = ACTIONS(6249), + [anon_sym_PERCENT] = ACTIONS(6249), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2594] = { + [sym__simple_heredoc_body] = ACTIONS(3091), + [sym__heredoc_body_beginning] = ACTIONS(3091), + [sym_file_descriptor] = ACTIONS(3091), + [sym__concat] = ACTIONS(3091), + [sym_variable_name] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_esac] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3093), + [anon_sym_SEMI_SEMI] = ACTIONS(3091), + [anon_sym_PIPE_AMP] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_GT] = ACTIONS(3093), + [anon_sym_GT_GT] = ACTIONS(3091), + [anon_sym_AMP_GT] = ACTIONS(3093), + [anon_sym_AMP_GT_GT] = ACTIONS(3091), + [anon_sym_LT_AMP] = ACTIONS(3091), + [anon_sym_GT_AMP] = ACTIONS(3091), + [anon_sym_LT_LT] = ACTIONS(3093), + [anon_sym_LT_LT_DASH] = ACTIONS(3091), + [anon_sym_LT_LT_LT] = ACTIONS(3091), + [sym__special_characters] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [anon_sym_DOLLAR] = ACTIONS(3093), + [sym_raw_string] = ACTIONS(3091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3091), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(3091), + [anon_sym_LT_LPAREN] = ACTIONS(3091), + [anon_sym_GT_LPAREN] = ACTIONS(3091), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3093), + [sym_word] = ACTIONS(3093), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3093), + }, + [2595] = { + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(6259), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), + }, + [2596] = { + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(6259), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), + }, + [2597] = { + [anon_sym_SEMI] = ACTIONS(6261), + [anon_sym_RPAREN] = ACTIONS(6259), + [anon_sym_SEMI_SEMI] = ACTIONS(6263), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6263), + [anon_sym_AMP] = ACTIONS(6263), + }, + [2598] = { + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(6259), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), + }, + [2599] = { + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(6259), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), + }, + [2600] = { + [anon_sym_SEMI] = ACTIONS(6265), + [anon_sym_SEMI_SEMI] = ACTIONS(6267), + [anon_sym_BQUOTE] = ACTIONS(6259), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6267), + [anon_sym_AMP] = ACTIONS(6267), + }, + [2601] = { + [sym__simple_heredoc_body] = ACTIONS(3121), + [sym__heredoc_body_beginning] = ACTIONS(3121), + [sym_file_descriptor] = ACTIONS(3121), + [sym__concat] = ACTIONS(3121), + [sym_variable_name] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_esac] = ACTIONS(3123), + [anon_sym_PIPE] = ACTIONS(3123), + [anon_sym_SEMI_SEMI] = ACTIONS(3121), + [anon_sym_PIPE_AMP] = ACTIONS(3121), + [anon_sym_AMP_AMP] = ACTIONS(3121), + [anon_sym_PIPE_PIPE] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(3123), + [anon_sym_GT] = ACTIONS(3123), + [anon_sym_GT_GT] = ACTIONS(3121), + [anon_sym_AMP_GT] = ACTIONS(3123), + [anon_sym_AMP_GT_GT] = ACTIONS(3121), + [anon_sym_LT_AMP] = ACTIONS(3121), + [anon_sym_GT_AMP] = ACTIONS(3121), + [anon_sym_LT_LT] = ACTIONS(3123), + [anon_sym_LT_LT_DASH] = ACTIONS(3121), + [anon_sym_LT_LT_LT] = ACTIONS(3121), + [sym__special_characters] = ACTIONS(3121), + [anon_sym_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3123), + [sym_raw_string] = ACTIONS(3121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3121), + [anon_sym_BQUOTE] = ACTIONS(3121), + [anon_sym_LT_LPAREN] = ACTIONS(3121), + [anon_sym_GT_LPAREN] = ACTIONS(3121), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3123), + [sym_word] = ACTIONS(3123), + [anon_sym_LF] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), + }, + [2602] = { + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(6269), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), + }, + [2603] = { + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(6269), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), + }, + [2604] = { + [anon_sym_SEMI] = ACTIONS(6271), + [anon_sym_RPAREN] = ACTIONS(6269), + [anon_sym_SEMI_SEMI] = ACTIONS(6273), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6273), + [anon_sym_AMP] = ACTIONS(6273), + }, + [2605] = { + [sym__simple_heredoc_body] = ACTIONS(2930), + [sym__heredoc_body_beginning] = ACTIONS(2930), + [sym_file_descriptor] = ACTIONS(2930), + [sym__concat] = ACTIONS(2930), + [anon_sym_SEMI] = ACTIONS(2932), + [anon_sym_esac] = ACTIONS(2932), + [anon_sym_PIPE] = ACTIONS(2932), + [anon_sym_SEMI_SEMI] = ACTIONS(2930), + [anon_sym_PIPE_AMP] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_PIPE_PIPE] = ACTIONS(2930), + [anon_sym_LT] = ACTIONS(2932), + [anon_sym_GT] = ACTIONS(2932), + [anon_sym_GT_GT] = ACTIONS(2930), + [anon_sym_AMP_GT] = ACTIONS(2932), + [anon_sym_AMP_GT_GT] = ACTIONS(2930), + [anon_sym_LT_AMP] = ACTIONS(2930), + [anon_sym_GT_AMP] = ACTIONS(2930), + [anon_sym_LT_LT] = ACTIONS(2932), + [anon_sym_LT_LT_DASH] = ACTIONS(2930), + [anon_sym_LT_LT_LT] = ACTIONS(2930), + [sym__special_characters] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [anon_sym_DOLLAR] = ACTIONS(2932), + [sym_raw_string] = ACTIONS(2930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2930), + [anon_sym_BQUOTE] = ACTIONS(2930), + [anon_sym_LT_LPAREN] = ACTIONS(2930), + [anon_sym_GT_LPAREN] = ACTIONS(2930), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2932), + [sym_word] = ACTIONS(2932), + [anon_sym_LF] = ACTIONS(2930), + [anon_sym_AMP] = ACTIONS(2932), + }, + [2606] = { + [sym__simple_heredoc_body] = ACTIONS(2944), + [sym__heredoc_body_beginning] = ACTIONS(2944), + [sym_file_descriptor] = ACTIONS(2944), + [sym__concat] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_esac] = ACTIONS(2946), + [anon_sym_PIPE] = ACTIONS(2946), + [anon_sym_SEMI_SEMI] = ACTIONS(2944), + [anon_sym_PIPE_AMP] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_GT] = ACTIONS(2946), + [anon_sym_GT_GT] = ACTIONS(2944), + [anon_sym_AMP_GT] = ACTIONS(2946), + [anon_sym_AMP_GT_GT] = ACTIONS(2944), + [anon_sym_LT_AMP] = ACTIONS(2944), + [anon_sym_GT_AMP] = ACTIONS(2944), + [anon_sym_LT_LT] = ACTIONS(2946), + [anon_sym_LT_LT_DASH] = ACTIONS(2944), + [anon_sym_LT_LT_LT] = ACTIONS(2944), + [sym__special_characters] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_DOLLAR] = ACTIONS(2946), + [sym_raw_string] = ACTIONS(2944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2944), + [anon_sym_BQUOTE] = ACTIONS(2944), + [anon_sym_LT_LPAREN] = ACTIONS(2944), + [anon_sym_GT_LPAREN] = ACTIONS(2944), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2946), + [sym_word] = ACTIONS(2946), + [anon_sym_LF] = ACTIONS(2944), + [anon_sym_AMP] = ACTIONS(2946), + }, + [2607] = { + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(6275), + [sym_comment] = ACTIONS(57), + }, + [2608] = { + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(6277), + [sym_comment] = ACTIONS(57), + }, + [2609] = { + [anon_sym_RBRACE] = ACTIONS(6277), + [sym_comment] = ACTIONS(57), + }, + [2610] = { + [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(6277), + [sym__special_characters] = ACTIONS(6279), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(6281), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6281), + }, + [2611] = { + [sym__simple_heredoc_body] = ACTIONS(2980), + [sym__heredoc_body_beginning] = ACTIONS(2980), + [sym_file_descriptor] = ACTIONS(2980), + [sym__concat] = ACTIONS(2980), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_esac] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2982), + [anon_sym_SEMI_SEMI] = ACTIONS(2980), + [anon_sym_PIPE_AMP] = ACTIONS(2980), + [anon_sym_AMP_AMP] = ACTIONS(2980), + [anon_sym_PIPE_PIPE] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_GT] = ACTIONS(2982), + [anon_sym_GT_GT] = ACTIONS(2980), + [anon_sym_AMP_GT] = ACTIONS(2982), + [anon_sym_AMP_GT_GT] = ACTIONS(2980), + [anon_sym_LT_AMP] = ACTIONS(2980), + [anon_sym_GT_AMP] = ACTIONS(2980), + [anon_sym_LT_LT] = ACTIONS(2982), + [anon_sym_LT_LT_DASH] = ACTIONS(2980), + [anon_sym_LT_LT_LT] = ACTIONS(2980), + [sym__special_characters] = ACTIONS(2980), + [anon_sym_DQUOTE] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2982), + [sym_raw_string] = ACTIONS(2980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2980), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2980), + [anon_sym_BQUOTE] = ACTIONS(2980), + [anon_sym_LT_LPAREN] = ACTIONS(2980), + [anon_sym_GT_LPAREN] = ACTIONS(2980), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2982), + [sym_word] = ACTIONS(2982), + [anon_sym_LF] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), + }, + [2612] = { + [sym_concatenation] = STATE(2735), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2735), + [sym_regex] = ACTIONS(6283), + [anon_sym_RBRACE] = ACTIONS(6285), + [anon_sym_EQ] = ACTIONS(6287), + [anon_sym_DASH] = ACTIONS(6287), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6287), + [anon_sym_COLON_QMARK] = ACTIONS(6287), + [anon_sym_COLON_DASH] = ACTIONS(6287), + [anon_sym_PERCENT] = ACTIONS(6287), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2613] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6285), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2614] = { + [sym_concatenation] = STATE(2737), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2737), + [sym_regex] = ACTIONS(6291), + [anon_sym_RBRACE] = ACTIONS(6277), + [anon_sym_EQ] = ACTIONS(6293), + [anon_sym_DASH] = ACTIONS(6293), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6293), + [anon_sym_COLON_QMARK] = ACTIONS(6293), + [anon_sym_COLON_DASH] = ACTIONS(6293), + [anon_sym_PERCENT] = ACTIONS(6293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2615] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6277), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2616] = { + [sym_concatenation] = STATE(2739), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2739), + [anon_sym_RBRACE] = ACTIONS(6297), + [anon_sym_EQ] = ACTIONS(6299), + [anon_sym_DASH] = ACTIONS(6299), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6301), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6299), + [anon_sym_COLON_QMARK] = ACTIONS(6299), + [anon_sym_COLON_DASH] = ACTIONS(6299), + [anon_sym_PERCENT] = ACTIONS(6299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2617] = { + [sym__simple_heredoc_body] = ACTIONS(3036), + [sym__heredoc_body_beginning] = ACTIONS(3036), + [sym_file_descriptor] = ACTIONS(3036), + [sym__concat] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_esac] = ACTIONS(3038), + [anon_sym_PIPE] = ACTIONS(3038), + [anon_sym_SEMI_SEMI] = ACTIONS(3036), + [anon_sym_PIPE_AMP] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3038), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_AMP_GT] = ACTIONS(3038), + [anon_sym_AMP_GT_GT] = ACTIONS(3036), + [anon_sym_LT_AMP] = ACTIONS(3036), + [anon_sym_GT_AMP] = ACTIONS(3036), + [anon_sym_LT_LT] = ACTIONS(3038), + [anon_sym_LT_LT_DASH] = ACTIONS(3036), + [anon_sym_LT_LT_LT] = ACTIONS(3036), + [sym__special_characters] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_DOLLAR] = ACTIONS(3038), + [sym_raw_string] = ACTIONS(3036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3036), + [anon_sym_BQUOTE] = ACTIONS(3036), + [anon_sym_LT_LPAREN] = ACTIONS(3036), + [anon_sym_GT_LPAREN] = ACTIONS(3036), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3038), + [sym_word] = ACTIONS(3038), + [anon_sym_LF] = ACTIONS(3036), + [anon_sym_AMP] = ACTIONS(3038), + }, + [2618] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6297), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2619] = { + [sym_concatenation] = STATE(2737), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2737), + [anon_sym_RBRACE] = ACTIONS(6277), + [anon_sym_EQ] = ACTIONS(6293), + [anon_sym_DASH] = ACTIONS(6293), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6293), + [anon_sym_COLON_QMARK] = ACTIONS(6293), + [anon_sym_COLON_DASH] = ACTIONS(6293), + [anon_sym_PERCENT] = ACTIONS(6293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2620] = { + [sym__simple_heredoc_body] = ACTIONS(3091), + [sym__heredoc_body_beginning] = ACTIONS(3091), + [sym_file_descriptor] = ACTIONS(3091), + [sym__concat] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_esac] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3093), + [anon_sym_SEMI_SEMI] = ACTIONS(3091), + [anon_sym_PIPE_AMP] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_GT] = ACTIONS(3093), + [anon_sym_GT_GT] = ACTIONS(3091), + [anon_sym_AMP_GT] = ACTIONS(3093), + [anon_sym_AMP_GT_GT] = ACTIONS(3091), + [anon_sym_LT_AMP] = ACTIONS(3091), + [anon_sym_GT_AMP] = ACTIONS(3091), + [anon_sym_LT_LT] = ACTIONS(3093), + [anon_sym_LT_LT_DASH] = ACTIONS(3091), + [anon_sym_LT_LT_LT] = ACTIONS(3091), + [sym__special_characters] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [anon_sym_DOLLAR] = ACTIONS(3093), + [sym_raw_string] = ACTIONS(3091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3091), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(3091), + [anon_sym_LT_LPAREN] = ACTIONS(3091), + [anon_sym_GT_LPAREN] = ACTIONS(3091), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3093), + [sym_word] = ACTIONS(3093), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3093), }, [2621] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6253), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(6303), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [2622] = { - [sym_file_descriptor] = ACTIONS(1919), - [sym__concat] = ACTIONS(1919), - [sym_variable_name] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_esac] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_SEMI_SEMI] = ACTIONS(1919), - [anon_sym_PIPE_AMP] = ACTIONS(1919), - [anon_sym_AMP_AMP] = ACTIONS(1919), - [anon_sym_PIPE_PIPE] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1921), - [anon_sym_GT_GT] = ACTIONS(1919), - [anon_sym_AMP_GT] = ACTIONS(1921), - [anon_sym_AMP_GT_GT] = ACTIONS(1919), - [anon_sym_LT_AMP] = ACTIONS(1919), - [anon_sym_GT_AMP] = ACTIONS(1919), - [sym__special_characters] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1919), - [anon_sym_DOLLAR] = ACTIONS(1921), - [sym_raw_string] = ACTIONS(1919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1919), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1919), - [anon_sym_BQUOTE] = ACTIONS(1919), - [anon_sym_LT_LPAREN] = ACTIONS(1919), - [anon_sym_GT_LPAREN] = ACTIONS(1919), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1921), - [anon_sym_LF] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1921), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(6303), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2623] = { - [sym_concatenation] = STATE(2745), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2745), - [sym_regex] = ACTIONS(6259), - [anon_sym_RBRACE] = ACTIONS(6229), - [anon_sym_EQ] = ACTIONS(6245), - [anon_sym_DASH] = ACTIONS(6245), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6245), - [anon_sym_COLON_QMARK] = ACTIONS(6245), - [anon_sym_COLON_DASH] = ACTIONS(6245), - [anon_sym_PERCENT] = ACTIONS(6245), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(6305), + [anon_sym_RPAREN] = ACTIONS(6303), + [anon_sym_SEMI_SEMI] = ACTIONS(6307), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6307), + [anon_sym_AMP] = ACTIONS(6307), }, [2624] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6229), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(6303), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [2625] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(6261), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(6303), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2626] = { - [sym_file_descriptor] = ACTIONS(1927), - [sym__concat] = ACTIONS(1927), - [sym_variable_name] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_esac] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1927), - [anon_sym_PIPE_AMP] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1929), - [anon_sym_GT_GT] = ACTIONS(1927), - [anon_sym_AMP_GT] = ACTIONS(1929), - [anon_sym_AMP_GT_GT] = ACTIONS(1927), - [anon_sym_LT_AMP] = ACTIONS(1927), - [anon_sym_GT_AMP] = ACTIONS(1927), - [sym__special_characters] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1929), - [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(55), - [sym_word] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1927), - [anon_sym_AMP] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(6309), + [anon_sym_SEMI_SEMI] = ACTIONS(6311), + [anon_sym_BQUOTE] = ACTIONS(6303), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6311), + [anon_sym_AMP] = ACTIONS(6311), }, [2627] = { - [anon_sym_SEMI] = ACTIONS(6263), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(6261), - [anon_sym_SEMI_SEMI] = ACTIONS(6265), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(6265), - [anon_sym_AMP] = ACTIONS(6263), + [sym__simple_heredoc_body] = ACTIONS(3121), + [sym__heredoc_body_beginning] = ACTIONS(3121), + [sym_file_descriptor] = ACTIONS(3121), + [sym__concat] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_esac] = ACTIONS(3123), + [anon_sym_PIPE] = ACTIONS(3123), + [anon_sym_SEMI_SEMI] = ACTIONS(3121), + [anon_sym_PIPE_AMP] = ACTIONS(3121), + [anon_sym_AMP_AMP] = ACTIONS(3121), + [anon_sym_PIPE_PIPE] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(3123), + [anon_sym_GT] = ACTIONS(3123), + [anon_sym_GT_GT] = ACTIONS(3121), + [anon_sym_AMP_GT] = ACTIONS(3123), + [anon_sym_AMP_GT_GT] = ACTIONS(3121), + [anon_sym_LT_AMP] = ACTIONS(3121), + [anon_sym_GT_AMP] = ACTIONS(3121), + [anon_sym_LT_LT] = ACTIONS(3123), + [anon_sym_LT_LT_DASH] = ACTIONS(3121), + [anon_sym_LT_LT_LT] = ACTIONS(3121), + [sym__special_characters] = ACTIONS(3121), + [anon_sym_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3123), + [sym_raw_string] = ACTIONS(3121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3121), + [anon_sym_BQUOTE] = ACTIONS(3121), + [anon_sym_LT_LPAREN] = ACTIONS(3121), + [anon_sym_GT_LPAREN] = ACTIONS(3121), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3123), + [sym_word] = ACTIONS(3123), + [anon_sym_LF] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), }, [2628] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(6263), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(6261), - [anon_sym_SEMI_SEMI] = ACTIONS(6265), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(6265), - [anon_sym_AMP] = ACTIONS(6263), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(6313), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [2629] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(6261), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(6313), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2630] = { - [anon_sym_SEMI] = ACTIONS(6267), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(6269), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(6261), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(6269), - [anon_sym_AMP] = ACTIONS(6267), + [anon_sym_SEMI] = ACTIONS(6315), + [anon_sym_RPAREN] = ACTIONS(6313), + [anon_sym_SEMI_SEMI] = ACTIONS(6317), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6317), + [anon_sym_AMP] = ACTIONS(6317), }, [2631] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(6267), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(6269), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(6261), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(6269), - [anon_sym_AMP] = ACTIONS(6267), + [sym__simple_heredoc_body] = ACTIONS(3921), + [sym__heredoc_body_beginning] = ACTIONS(3921), + [sym_file_descriptor] = ACTIONS(3921), + [sym__concat] = ACTIONS(3921), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym_esac] = ACTIONS(3923), + [anon_sym_PIPE] = ACTIONS(3923), + [anon_sym_SEMI_SEMI] = ACTIONS(3921), + [anon_sym_PIPE_AMP] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_EQ_TILDE] = ACTIONS(3923), + [anon_sym_EQ_EQ] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_GT] = ACTIONS(3923), + [anon_sym_GT_GT] = ACTIONS(3921), + [anon_sym_AMP_GT] = ACTIONS(3923), + [anon_sym_AMP_GT_GT] = ACTIONS(3921), + [anon_sym_LT_AMP] = ACTIONS(3921), + [anon_sym_GT_AMP] = ACTIONS(3921), + [anon_sym_LT_LT] = ACTIONS(3923), + [anon_sym_LT_LT_DASH] = ACTIONS(3921), + [anon_sym_LT_LT_LT] = ACTIONS(3921), + [sym__special_characters] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_DOLLAR] = ACTIONS(3923), + [sym_raw_string] = ACTIONS(3921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3921), + [anon_sym_BQUOTE] = ACTIONS(3921), + [anon_sym_LT_LPAREN] = ACTIONS(3921), + [anon_sym_GT_LPAREN] = ACTIONS(3921), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3923), + [anon_sym_LF] = ACTIONS(3921), + [anon_sym_AMP] = ACTIONS(3923), }, [2632] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(6271), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__simple_heredoc_body] = ACTIONS(3929), + [sym__heredoc_body_beginning] = ACTIONS(3929), + [sym_file_descriptor] = ACTIONS(3929), + [sym__concat] = ACTIONS(3929), + [anon_sym_SEMI] = ACTIONS(3931), + [anon_sym_esac] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3931), + [anon_sym_SEMI_SEMI] = ACTIONS(3929), + [anon_sym_PIPE_AMP] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_EQ_TILDE] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3931), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_GT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_AMP_GT] = ACTIONS(3931), + [anon_sym_AMP_GT_GT] = ACTIONS(3929), + [anon_sym_LT_AMP] = ACTIONS(3929), + [anon_sym_GT_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_LT_LT_DASH] = ACTIONS(3929), + [anon_sym_LT_LT_LT] = ACTIONS(3929), + [sym__special_characters] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_DOLLAR] = ACTIONS(3931), + [sym_raw_string] = ACTIONS(3929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3929), + [anon_sym_BQUOTE] = ACTIONS(3929), + [anon_sym_LT_LPAREN] = ACTIONS(3929), + [anon_sym_GT_LPAREN] = ACTIONS(3929), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3931), + [anon_sym_LF] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3931), }, [2633] = { - [sym_file_descriptor] = ACTIONS(1959), - [sym__concat] = ACTIONS(1959), - [sym_variable_name] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_esac] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1959), - [anon_sym_PIPE_AMP] = ACTIONS(1959), - [anon_sym_AMP_AMP] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1959), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_AMP_GT] = ACTIONS(1961), - [anon_sym_AMP_GT_GT] = ACTIONS(1959), - [anon_sym_LT_AMP] = ACTIONS(1959), - [anon_sym_GT_AMP] = ACTIONS(1959), - [sym__special_characters] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1961), - [sym_raw_string] = ACTIONS(1959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1959), - [anon_sym_BQUOTE] = ACTIONS(1959), - [anon_sym_LT_LPAREN] = ACTIONS(1959), - [anon_sym_GT_LPAREN] = ACTIONS(1959), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1961), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(6319), + [sym_comment] = ACTIONS(57), }, [2634] = { - [anon_sym_SEMI] = ACTIONS(6273), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(6271), - [anon_sym_SEMI_SEMI] = ACTIONS(6275), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(6275), - [anon_sym_AMP] = ACTIONS(6273), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(6321), + [sym_comment] = ACTIONS(57), }, [2635] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(6273), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(6271), - [anon_sym_SEMI_SEMI] = ACTIONS(6275), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(6275), - [anon_sym_AMP] = ACTIONS(6273), + [anon_sym_RBRACE] = ACTIONS(6321), + [sym_comment] = ACTIONS(57), }, [2636] = { - [sym_concatenation] = STATE(1586), + [sym_concatenation] = STATE(2748), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2748), + [anon_sym_RBRACE] = ACTIONS(6323), + [anon_sym_EQ] = ACTIONS(6325), + [anon_sym_DASH] = ACTIONS(6325), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6327), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6325), + [anon_sym_COLON_QMARK] = ACTIONS(6325), + [anon_sym_COLON_DASH] = ACTIONS(6325), + [anon_sym_PERCENT] = ACTIONS(6325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2637] = { + [sym__simple_heredoc_body] = ACTIONS(3985), + [sym__heredoc_body_beginning] = ACTIONS(3985), + [sym_file_descriptor] = ACTIONS(3985), + [sym__concat] = ACTIONS(3985), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_esac] = ACTIONS(3987), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [anon_sym_PIPE_AMP] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_EQ_TILDE] = ACTIONS(3987), + [anon_sym_EQ_EQ] = ACTIONS(3987), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_GT_GT] = ACTIONS(3985), + [anon_sym_AMP_GT] = ACTIONS(3987), + [anon_sym_AMP_GT_GT] = ACTIONS(3985), + [anon_sym_LT_AMP] = ACTIONS(3985), + [anon_sym_GT_AMP] = ACTIONS(3985), + [anon_sym_LT_LT] = ACTIONS(3987), + [anon_sym_LT_LT_DASH] = ACTIONS(3985), + [anon_sym_LT_LT_LT] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3987), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3987), + }, + [2638] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6323), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2639] = { + [sym_concatenation] = STATE(2749), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2749), + [anon_sym_RBRACE] = ACTIONS(6321), + [anon_sym_EQ] = ACTIONS(6329), + [anon_sym_DASH] = ACTIONS(6329), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6331), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6329), + [anon_sym_COLON_QMARK] = ACTIONS(6329), + [anon_sym_COLON_DASH] = ACTIONS(6329), + [anon_sym_PERCENT] = ACTIONS(6329), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2640] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6321), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2641] = { + [sym__simple_heredoc_body] = ACTIONS(4030), + [sym__heredoc_body_beginning] = ACTIONS(4030), + [sym_file_descriptor] = ACTIONS(4030), + [sym__concat] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_esac] = ACTIONS(4032), + [anon_sym_PIPE] = ACTIONS(4032), + [anon_sym_SEMI_SEMI] = ACTIONS(4030), + [anon_sym_PIPE_AMP] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_EQ_TILDE] = ACTIONS(4032), + [anon_sym_EQ_EQ] = ACTIONS(4032), + [anon_sym_LT] = ACTIONS(4032), + [anon_sym_GT] = ACTIONS(4032), + [anon_sym_GT_GT] = ACTIONS(4030), + [anon_sym_AMP_GT] = ACTIONS(4032), + [anon_sym_AMP_GT_GT] = ACTIONS(4030), + [anon_sym_LT_AMP] = ACTIONS(4030), + [anon_sym_GT_AMP] = ACTIONS(4030), + [anon_sym_LT_LT] = ACTIONS(4032), + [anon_sym_LT_LT_DASH] = ACTIONS(4030), + [anon_sym_LT_LT_LT] = ACTIONS(4030), + [sym__special_characters] = ACTIONS(4030), + [anon_sym_DQUOTE] = ACTIONS(4030), + [anon_sym_DOLLAR] = ACTIONS(4032), + [sym_raw_string] = ACTIONS(4030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4030), + [anon_sym_BQUOTE] = ACTIONS(4030), + [anon_sym_LT_LPAREN] = ACTIONS(4030), + [anon_sym_GT_LPAREN] = ACTIONS(4030), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4032), + [anon_sym_LF] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4032), + }, + [2642] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6333), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2643] = { + [sym__simple_heredoc_body] = ACTIONS(4064), + [sym__heredoc_body_beginning] = ACTIONS(4064), + [sym_file_descriptor] = ACTIONS(4064), + [sym__concat] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4066), + [anon_sym_esac] = ACTIONS(4066), + [anon_sym_PIPE] = ACTIONS(4066), + [anon_sym_SEMI_SEMI] = ACTIONS(4064), + [anon_sym_PIPE_AMP] = ACTIONS(4064), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_PIPE_PIPE] = ACTIONS(4064), + [anon_sym_EQ_TILDE] = ACTIONS(4066), + [anon_sym_EQ_EQ] = ACTIONS(4066), + [anon_sym_LT] = ACTIONS(4066), + [anon_sym_GT] = ACTIONS(4066), + [anon_sym_GT_GT] = ACTIONS(4064), + [anon_sym_AMP_GT] = ACTIONS(4066), + [anon_sym_AMP_GT_GT] = ACTIONS(4064), + [anon_sym_LT_AMP] = ACTIONS(4064), + [anon_sym_GT_AMP] = ACTIONS(4064), + [anon_sym_LT_LT] = ACTIONS(4066), + [anon_sym_LT_LT_DASH] = ACTIONS(4064), + [anon_sym_LT_LT_LT] = ACTIONS(4064), + [sym__special_characters] = ACTIONS(4064), + [anon_sym_DQUOTE] = ACTIONS(4064), + [anon_sym_DOLLAR] = ACTIONS(4066), + [sym_raw_string] = ACTIONS(4064), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4064), + [anon_sym_BQUOTE] = ACTIONS(4064), + [anon_sym_LT_LPAREN] = ACTIONS(4064), + [anon_sym_GT_LPAREN] = ACTIONS(4064), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4066), + [anon_sym_LF] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4066), + }, + [2644] = { + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(6335), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), + }, + [2645] = { + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(6335), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), + }, + [2646] = { + [sym__simple_heredoc_body] = ACTIONS(4070), + [sym__heredoc_body_beginning] = ACTIONS(4070), + [sym_file_descriptor] = ACTIONS(4070), + [sym__concat] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym_esac] = ACTIONS(4072), + [anon_sym_PIPE] = ACTIONS(4072), + [anon_sym_SEMI_SEMI] = ACTIONS(4070), + [anon_sym_PIPE_AMP] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_PIPE_PIPE] = ACTIONS(4070), + [anon_sym_EQ_TILDE] = ACTIONS(4072), + [anon_sym_EQ_EQ] = ACTIONS(4072), + [anon_sym_LT] = ACTIONS(4072), + [anon_sym_GT] = ACTIONS(4072), + [anon_sym_GT_GT] = ACTIONS(4070), + [anon_sym_AMP_GT] = ACTIONS(4072), + [anon_sym_AMP_GT_GT] = ACTIONS(4070), + [anon_sym_LT_AMP] = ACTIONS(4070), + [anon_sym_GT_AMP] = ACTIONS(4070), + [anon_sym_LT_LT] = ACTIONS(4072), + [anon_sym_LT_LT_DASH] = ACTIONS(4070), + [anon_sym_LT_LT_LT] = ACTIONS(4070), + [sym__special_characters] = ACTIONS(4070), + [anon_sym_DQUOTE] = ACTIONS(4070), + [anon_sym_DOLLAR] = ACTIONS(4072), + [sym_raw_string] = ACTIONS(4070), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4070), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4070), + [anon_sym_BQUOTE] = ACTIONS(4070), + [anon_sym_LT_LPAREN] = ACTIONS(4070), + [anon_sym_GT_LPAREN] = ACTIONS(4070), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4072), + [anon_sym_LF] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4072), + }, + [2647] = { + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(6337), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), + }, + [2648] = { + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_esac] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), + }, + [2649] = { + [aux_sym_concatenation_repeat1] = STATE(2649), + [sym__simple_heredoc_body] = ACTIONS(1726), + [sym__heredoc_body_beginning] = ACTIONS(1726), + [sym_file_descriptor] = ACTIONS(1726), + [sym__concat] = ACTIONS(6339), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_esac] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_GT] = ACTIONS(1728), + [anon_sym_GT_GT] = ACTIONS(1726), + [anon_sym_AMP_GT] = ACTIONS(1728), + [anon_sym_AMP_GT_GT] = ACTIONS(1726), + [anon_sym_LT_AMP] = ACTIONS(1726), + [anon_sym_GT_AMP] = ACTIONS(1726), + [anon_sym_LT_LT] = ACTIONS(1728), + [anon_sym_LT_LT_DASH] = ACTIONS(1726), + [anon_sym_LT_LT_LT] = ACTIONS(1726), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1728), + }, + [2650] = { + [sym__simple_heredoc_body] = ACTIONS(1733), + [sym__heredoc_body_beginning] = ACTIONS(1733), + [sym_file_descriptor] = ACTIONS(1733), + [sym__concat] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_esac] = ACTIONS(1733), + [anon_sym_PIPE] = ACTIONS(1735), + [anon_sym_SEMI_SEMI] = ACTIONS(1733), + [anon_sym_PIPE_AMP] = ACTIONS(1733), + [anon_sym_AMP_AMP] = ACTIONS(1733), + [anon_sym_PIPE_PIPE] = ACTIONS(1733), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_GT] = ACTIONS(1735), + [anon_sym_GT_GT] = ACTIONS(1733), + [anon_sym_AMP_GT] = ACTIONS(1735), + [anon_sym_AMP_GT_GT] = ACTIONS(1733), + [anon_sym_LT_AMP] = ACTIONS(1733), + [anon_sym_GT_AMP] = ACTIONS(1733), + [anon_sym_LT_LT] = ACTIONS(1735), + [anon_sym_LT_LT_DASH] = ACTIONS(1733), + [anon_sym_LT_LT_LT] = ACTIONS(1733), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1733), + [anon_sym_AMP] = ACTIONS(1735), + }, + [2651] = { + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(6342), + [anon_sym_DOLLAR] = ACTIONS(791), + [sym__string_content] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(787), + [sym_comment] = ACTIONS(265), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_AT] = ACTIONS(797), + [anon_sym_QMARK] = ACTIONS(797), + [anon_sym_0] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + }, + [2652] = { + [sym_concatenation] = STATE(2757), [sym_string] = STATE(2756), [sym_simple_expansion] = STATE(2756), [sym_string_expansion] = STATE(2756), [sym_expansion] = STATE(2756), [sym_command_substitution] = STATE(2756), [sym_process_substitution] = STATE(2756), - [sym__special_characters] = ACTIONS(6277), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(6279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), - [anon_sym_BQUOTE] = ACTIONS(2406), - [anon_sym_LT_LPAREN] = ACTIONS(2408), - [anon_sym_GT_LPAREN] = ACTIONS(2408), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(6279), - }, - [2637] = { - [aux_sym_concatenation_repeat1] = STATE(2757), - [sym_file_descriptor] = ACTIONS(773), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_esac] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(773), - [anon_sym_AMP_GT] = ACTIONS(777), - [anon_sym_AMP_GT_GT] = ACTIONS(773), - [anon_sym_LT_AMP] = ACTIONS(773), - [anon_sym_GT_AMP] = ACTIONS(773), - [anon_sym_LT_LT] = ACTIONS(777), - [anon_sym_LT_LT_DASH] = ACTIONS(773), - [anon_sym_LT_LT_LT] = ACTIONS(773), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(777), - }, - [2638] = { - [aux_sym_concatenation_repeat1] = STATE(2757), - [sym_file_descriptor] = ACTIONS(791), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_esac] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_SEMI_SEMI] = ACTIONS(791), - [anon_sym_PIPE_AMP] = ACTIONS(791), - [anon_sym_AMP_AMP] = ACTIONS(791), - [anon_sym_PIPE_PIPE] = ACTIONS(791), - [anon_sym_LT] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_GT_GT] = ACTIONS(791), - [anon_sym_AMP_GT] = ACTIONS(793), - [anon_sym_AMP_GT_GT] = ACTIONS(791), - [anon_sym_LT_AMP] = ACTIONS(791), - [anon_sym_GT_AMP] = ACTIONS(791), - [anon_sym_LT_LT] = ACTIONS(793), - [anon_sym_LT_LT_DASH] = ACTIONS(791), - [anon_sym_LT_LT_LT] = ACTIONS(791), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_AMP] = ACTIONS(793), - }, - [2639] = { - [aux_sym_concatenation_repeat1] = STATE(2757), - [sym_file_descriptor] = ACTIONS(2015), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(2017), - [anon_sym_esac] = ACTIONS(2015), - [anon_sym_PIPE] = ACTIONS(2017), - [anon_sym_SEMI_SEMI] = ACTIONS(2015), - [anon_sym_PIPE_AMP] = ACTIONS(2015), - [anon_sym_AMP_AMP] = ACTIONS(2015), - [anon_sym_PIPE_PIPE] = ACTIONS(2015), - [anon_sym_LT] = ACTIONS(2017), - [anon_sym_GT] = ACTIONS(2017), - [anon_sym_GT_GT] = ACTIONS(2015), - [anon_sym_AMP_GT] = ACTIONS(2017), - [anon_sym_AMP_GT_GT] = ACTIONS(2015), - [anon_sym_LT_AMP] = ACTIONS(2015), - [anon_sym_GT_AMP] = ACTIONS(2015), - [anon_sym_LT_LT] = ACTIONS(2017), - [anon_sym_LT_LT_DASH] = ACTIONS(2015), - [anon_sym_LT_LT_LT] = ACTIONS(2015), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2017), - }, - [2640] = { - [aux_sym_concatenation_repeat1] = STATE(2757), - [sym_file_descriptor] = ACTIONS(2019), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_esac] = ACTIONS(2019), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_SEMI_SEMI] = ACTIONS(2019), - [anon_sym_PIPE_AMP] = ACTIONS(2019), - [anon_sym_AMP_AMP] = ACTIONS(2019), - [anon_sym_PIPE_PIPE] = ACTIONS(2019), - [anon_sym_LT] = ACTIONS(2021), - [anon_sym_GT] = ACTIONS(2021), - [anon_sym_GT_GT] = ACTIONS(2019), - [anon_sym_AMP_GT] = ACTIONS(2021), - [anon_sym_AMP_GT_GT] = ACTIONS(2019), - [anon_sym_LT_AMP] = ACTIONS(2019), - [anon_sym_GT_AMP] = ACTIONS(2019), - [anon_sym_LT_LT] = ACTIONS(2021), - [anon_sym_LT_LT_DASH] = ACTIONS(2019), - [anon_sym_LT_LT_LT] = ACTIONS(2019), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2019), - [anon_sym_AMP] = ACTIONS(2021), - }, - [2641] = { - [sym_file_redirect] = STATE(2641), - [sym_heredoc_redirect] = STATE(2641), - [sym_herestring_redirect] = STATE(2641), - [aux_sym_while_statement_repeat1] = STATE(2641), - [sym_file_descriptor] = ACTIONS(6281), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_esac] = ACTIONS(2027), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2027), - [anon_sym_PIPE_AMP] = ACTIONS(2027), - [anon_sym_AMP_AMP] = ACTIONS(2027), - [anon_sym_PIPE_PIPE] = ACTIONS(2027), - [anon_sym_LT] = ACTIONS(6284), - [anon_sym_GT] = ACTIONS(6284), - [anon_sym_GT_GT] = ACTIONS(6287), - [anon_sym_AMP_GT] = ACTIONS(6284), - [anon_sym_AMP_GT_GT] = ACTIONS(6287), - [anon_sym_LT_AMP] = ACTIONS(6287), - [anon_sym_GT_AMP] = ACTIONS(6287), - [anon_sym_LT_LT] = ACTIONS(3612), - [anon_sym_LT_LT_DASH] = ACTIONS(3615), - [anon_sym_LT_LT_LT] = ACTIONS(6290), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(2032), - }, - [2642] = { - [sym_file_redirect] = STATE(1651), - [sym_file_descriptor] = ACTIONS(5610), - [anon_sym_SEMI] = ACTIONS(3722), - [anon_sym_esac] = ACTIONS(3720), - [anon_sym_PIPE] = ACTIONS(3722), - [anon_sym_SEMI_SEMI] = ACTIONS(3720), - [anon_sym_PIPE_AMP] = ACTIONS(3720), - [anon_sym_AMP_AMP] = ACTIONS(3720), - [anon_sym_PIPE_PIPE] = ACTIONS(3720), - [anon_sym_LT] = ACTIONS(5612), - [anon_sym_GT] = ACTIONS(5612), - [anon_sym_GT_GT] = ACTIONS(5614), - [anon_sym_AMP_GT] = ACTIONS(5612), - [anon_sym_AMP_GT_GT] = ACTIONS(5614), - [anon_sym_LT_AMP] = ACTIONS(5614), - [anon_sym_GT_AMP] = ACTIONS(5614), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3720), - [anon_sym_AMP] = ACTIONS(3722), - }, - [2643] = { - [sym_concatenation] = STATE(1654), - [sym_string] = STATE(2759), - [sym_simple_expansion] = STATE(2759), - [sym_string_expansion] = STATE(2759), - [sym_expansion] = STATE(2759), - [sym_command_substitution] = STATE(2759), - [sym_process_substitution] = STATE(2759), - [sym__special_characters] = ACTIONS(6293), - [anon_sym_DQUOTE] = ACTIONS(411), - [anon_sym_DOLLAR] = ACTIONS(413), - [sym_raw_string] = ACTIONS(6295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [anon_sym_BQUOTE] = ACTIONS(421), - [anon_sym_LT_LPAREN] = ACTIONS(423), - [anon_sym_GT_LPAREN] = ACTIONS(423), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(6295), - }, - [2644] = { - [aux_sym_concatenation_repeat1] = STATE(2760), - [sym__concat] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_esac] = ACTIONS(773), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_SEMI_SEMI] = ACTIONS(773), - [anon_sym_PIPE_AMP] = ACTIONS(773), - [anon_sym_AMP_AMP] = ACTIONS(773), - [anon_sym_PIPE_PIPE] = ACTIONS(773), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(773), - [anon_sym_AMP] = ACTIONS(777), - }, - [2645] = { - [aux_sym_concatenation_repeat1] = STATE(2760), - [sym__concat] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_esac] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_SEMI_SEMI] = ACTIONS(791), - [anon_sym_PIPE_AMP] = ACTIONS(791), - [anon_sym_AMP_AMP] = ACTIONS(791), - [anon_sym_PIPE_PIPE] = ACTIONS(791), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_AMP] = ACTIONS(793), - }, - [2646] = { - [sym_variable_name] = ACTIONS(2099), - [anon_sym_SEMI] = ACTIONS(2101), - [anon_sym_esac] = ACTIONS(2101), - [anon_sym_PIPE] = ACTIONS(2101), - [anon_sym_SEMI_SEMI] = ACTIONS(2099), - [anon_sym_PIPE_AMP] = ACTIONS(2099), - [anon_sym_AMP_AMP] = ACTIONS(2099), - [anon_sym_PIPE_PIPE] = ACTIONS(2099), - [sym__special_characters] = ACTIONS(2099), - [anon_sym_DQUOTE] = ACTIONS(2099), - [anon_sym_DOLLAR] = ACTIONS(2101), - [sym_raw_string] = ACTIONS(2099), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2099), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2099), - [anon_sym_BQUOTE] = ACTIONS(2099), - [anon_sym_LT_LPAREN] = ACTIONS(2099), - [anon_sym_GT_LPAREN] = ACTIONS(2099), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2101), - [sym_word] = ACTIONS(2101), - [anon_sym_LF] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2101), - }, - [2647] = { - [sym_concatenation] = STATE(1026), - [sym_string] = STATE(558), - [sym_simple_expansion] = STATE(558), - [sym_string_expansion] = STATE(558), - [sym_expansion] = STATE(558), - [sym_command_substitution] = STATE(558), - [sym_process_substitution] = STATE(558), - [aux_sym_for_statement_repeat1] = STATE(1026), - [anon_sym_RPAREN] = ACTIONS(6297), - [sym__special_characters] = ACTIONS(1112), - [anon_sym_DQUOTE] = ACTIONS(1114), - [anon_sym_DOLLAR] = ACTIONS(1116), - [sym_raw_string] = ACTIONS(1118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), - [anon_sym_BQUOTE] = ACTIONS(1124), - [anon_sym_LT_LPAREN] = ACTIONS(1126), - [anon_sym_GT_LPAREN] = ACTIONS(1126), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(1118), - }, - [2648] = { - [sym__concat] = ACTIONS(2959), - [sym_variable_name] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_esac] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2961), - [anon_sym_SEMI_SEMI] = ACTIONS(2959), - [anon_sym_PIPE_AMP] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [sym__special_characters] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_DOLLAR] = ACTIONS(2961), - [sym_raw_string] = ACTIONS(2959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), - [anon_sym_BQUOTE] = ACTIONS(2959), - [anon_sym_LT_LPAREN] = ACTIONS(2959), - [anon_sym_GT_LPAREN] = ACTIONS(2959), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2961), - [sym_word] = ACTIONS(2961), - [anon_sym_LF] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), - }, - [2649] = { - [sym__concat] = ACTIONS(2973), - [sym_variable_name] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym_esac] = ACTIONS(2975), - [anon_sym_PIPE] = ACTIONS(2975), - [anon_sym_SEMI_SEMI] = ACTIONS(2973), - [anon_sym_PIPE_AMP] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [sym__special_characters] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_DOLLAR] = ACTIONS(2975), - [sym_raw_string] = ACTIONS(2973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), - [anon_sym_BQUOTE] = ACTIONS(2973), - [anon_sym_LT_LPAREN] = ACTIONS(2973), - [anon_sym_GT_LPAREN] = ACTIONS(2973), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2975), - [sym_word] = ACTIONS(2975), - [anon_sym_LF] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2975), - }, - [2650] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(6299), - [sym_comment] = ACTIONS(55), - }, - [2651] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(6301), - [sym_comment] = ACTIONS(55), - }, - [2652] = { - [anon_sym_RBRACE] = ACTIONS(6301), - [sym_comment] = ACTIONS(55), + [anon_sym_RBRACE] = ACTIONS(6344), + [sym__special_characters] = ACTIONS(6346), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(6348), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6348), }, [2653] = { - [sym_concatenation] = STATE(2766), - [sym_string] = STATE(2765), - [sym_simple_expansion] = STATE(2765), - [sym_string_expansion] = STATE(2765), - [sym_expansion] = STATE(2765), - [sym_command_substitution] = STATE(2765), - [sym_process_substitution] = STATE(2765), - [anon_sym_RBRACE] = ACTIONS(6301), - [sym__special_characters] = ACTIONS(6303), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(6305), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(6305), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(6350), + [sym_comment] = ACTIONS(57), }, [2654] = { - [sym__concat] = ACTIONS(3009), - [sym_variable_name] = ACTIONS(3009), - [anon_sym_SEMI] = ACTIONS(3011), - [anon_sym_esac] = ACTIONS(3011), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_SEMI_SEMI] = ACTIONS(3009), - [anon_sym_PIPE_AMP] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3009), - [sym__special_characters] = ACTIONS(3009), - [anon_sym_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3011), - [sym_raw_string] = ACTIONS(3009), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), - [anon_sym_BQUOTE] = ACTIONS(3009), - [anon_sym_LT_LPAREN] = ACTIONS(3009), - [anon_sym_GT_LPAREN] = ACTIONS(3009), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3011), - [sym_word] = ACTIONS(3011), - [anon_sym_LF] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3011), + [sym_concatenation] = STATE(2761), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2761), + [anon_sym_RBRACE] = ACTIONS(6352), + [anon_sym_EQ] = ACTIONS(6354), + [anon_sym_DASH] = ACTIONS(6354), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6356), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(6358), + [anon_sym_COLON] = ACTIONS(6354), + [anon_sym_COLON_QMARK] = ACTIONS(6354), + [anon_sym_COLON_DASH] = ACTIONS(6354), + [anon_sym_PERCENT] = ACTIONS(6354), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2655] = { - [sym_concatenation] = STATE(2769), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2769), - [sym_regex] = ACTIONS(6307), - [anon_sym_RBRACE] = ACTIONS(6309), - [anon_sym_EQ] = ACTIONS(6311), - [anon_sym_DASH] = ACTIONS(6311), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6313), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6311), - [anon_sym_COLON_QMARK] = ACTIONS(6311), - [anon_sym_COLON_DASH] = ACTIONS(6311), - [anon_sym_PERCENT] = ACTIONS(6311), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(2763), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2763), + [anon_sym_RBRACE] = ACTIONS(6344), + [anon_sym_EQ] = ACTIONS(6360), + [anon_sym_DASH] = ACTIONS(6360), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(6364), + [anon_sym_COLON] = ACTIONS(6360), + [anon_sym_COLON_QMARK] = ACTIONS(6360), + [anon_sym_COLON_DASH] = ACTIONS(6360), + [anon_sym_PERCENT] = ACTIONS(6360), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2656] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6309), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(1834), + [sym__heredoc_body_beginning] = ACTIONS(1834), + [sym_file_descriptor] = ACTIONS(1834), + [sym__concat] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_esac] = ACTIONS(1834), + [anon_sym_PIPE] = ACTIONS(1836), + [anon_sym_SEMI_SEMI] = ACTIONS(1834), + [anon_sym_PIPE_AMP] = ACTIONS(1834), + [anon_sym_AMP_AMP] = ACTIONS(1834), + [anon_sym_PIPE_PIPE] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1836), + [anon_sym_GT] = ACTIONS(1836), + [anon_sym_GT_GT] = ACTIONS(1834), + [anon_sym_AMP_GT] = ACTIONS(1836), + [anon_sym_AMP_GT_GT] = ACTIONS(1834), + [anon_sym_LT_AMP] = ACTIONS(1834), + [anon_sym_GT_AMP] = ACTIONS(1834), + [anon_sym_LT_LT] = ACTIONS(1836), + [anon_sym_LT_LT_DASH] = ACTIONS(1834), + [anon_sym_LT_LT_LT] = ACTIONS(1834), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1836), }, [2657] = { - [sym_concatenation] = STATE(2771), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2771), - [sym_regex] = ACTIONS(6315), - [anon_sym_RBRACE] = ACTIONS(6301), - [anon_sym_EQ] = ACTIONS(6317), - [anon_sym_DASH] = ACTIONS(6317), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6319), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6317), - [anon_sym_COLON_QMARK] = ACTIONS(6317), - [anon_sym_COLON_DASH] = ACTIONS(6317), - [anon_sym_PERCENT] = ACTIONS(6317), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(2766), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2766), + [sym_regex] = ACTIONS(6366), + [anon_sym_RBRACE] = ACTIONS(6368), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_DASH] = ACTIONS(6370), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6372), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6370), + [anon_sym_COLON_QMARK] = ACTIONS(6370), + [anon_sym_COLON_DASH] = ACTIONS(6370), + [anon_sym_PERCENT] = ACTIONS(6370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2658] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6301), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6368), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2659] = { - [sym_concatenation] = STATE(2773), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2773), - [anon_sym_RBRACE] = ACTIONS(6321), - [anon_sym_EQ] = ACTIONS(6323), - [anon_sym_DASH] = ACTIONS(6323), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6323), - [anon_sym_COLON_QMARK] = ACTIONS(6323), - [anon_sym_COLON_DASH] = ACTIONS(6323), - [anon_sym_PERCENT] = ACTIONS(6323), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(1882), + [sym__heredoc_body_beginning] = ACTIONS(1882), + [sym_file_descriptor] = ACTIONS(1882), + [sym__concat] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_esac] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_SEMI_SEMI] = ACTIONS(1882), + [anon_sym_PIPE_AMP] = ACTIONS(1882), + [anon_sym_AMP_AMP] = ACTIONS(1882), + [anon_sym_PIPE_PIPE] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1882), + [anon_sym_AMP_GT] = ACTIONS(1884), + [anon_sym_AMP_GT_GT] = ACTIONS(1882), + [anon_sym_LT_AMP] = ACTIONS(1882), + [anon_sym_GT_AMP] = ACTIONS(1882), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_LT_LT_DASH] = ACTIONS(1882), + [anon_sym_LT_LT_LT] = ACTIONS(1882), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1884), }, [2660] = { - [sym__concat] = ACTIONS(3065), - [sym_variable_name] = ACTIONS(3065), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym_esac] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_SEMI_SEMI] = ACTIONS(3065), - [anon_sym_PIPE_AMP] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_PIPE_PIPE] = ACTIONS(3065), - [sym__special_characters] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [anon_sym_DOLLAR] = ACTIONS(3067), - [sym_raw_string] = ACTIONS(3065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), - [anon_sym_BQUOTE] = ACTIONS(3065), - [anon_sym_LT_LPAREN] = ACTIONS(3065), - [anon_sym_GT_LPAREN] = ACTIONS(3065), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3067), - [sym_word] = ACTIONS(3067), - [anon_sym_LF] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), + [sym_concatenation] = STATE(2763), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2763), + [sym_regex] = ACTIONS(6374), + [anon_sym_RBRACE] = ACTIONS(6344), + [anon_sym_EQ] = ACTIONS(6360), + [anon_sym_DASH] = ACTIONS(6360), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6360), + [anon_sym_COLON_QMARK] = ACTIONS(6360), + [anon_sym_COLON_DASH] = ACTIONS(6360), + [anon_sym_PERCENT] = ACTIONS(6360), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2661] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6321), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6344), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2662] = { - [sym_concatenation] = STATE(2771), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2771), - [anon_sym_RBRACE] = ACTIONS(6301), - [anon_sym_EQ] = ACTIONS(6317), - [anon_sym_DASH] = ACTIONS(6317), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6319), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6317), - [anon_sym_COLON_QMARK] = ACTIONS(6317), - [anon_sym_COLON_DASH] = ACTIONS(6317), - [anon_sym_PERCENT] = ACTIONS(6317), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(6376), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2663] = { - [sym__concat] = ACTIONS(3120), - [sym_variable_name] = ACTIONS(3120), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_esac] = ACTIONS(3122), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_SEMI_SEMI] = ACTIONS(3120), - [anon_sym_PIPE_AMP] = ACTIONS(3120), - [anon_sym_AMP_AMP] = ACTIONS(3120), - [anon_sym_PIPE_PIPE] = ACTIONS(3120), - [sym__special_characters] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [sym_raw_string] = ACTIONS(3120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), - [anon_sym_BQUOTE] = ACTIONS(3120), - [anon_sym_LT_LPAREN] = ACTIONS(3120), - [anon_sym_GT_LPAREN] = ACTIONS(3120), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3122), - [sym_word] = ACTIONS(3122), - [anon_sym_LF] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3122), + [sym__simple_heredoc_body] = ACTIONS(1890), + [sym__heredoc_body_beginning] = ACTIONS(1890), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_esac] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1892), }, [2664] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(6327), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(6378), + [anon_sym_RPAREN] = ACTIONS(6376), + [anon_sym_SEMI_SEMI] = ACTIONS(6380), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6380), + [anon_sym_AMP] = ACTIONS(6380), }, [2665] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(6327), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2771), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(6382), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(6376), + [anon_sym_SEMI_SEMI] = ACTIONS(6384), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6384), + [anon_sym_AMP] = ACTIONS(6382), }, [2666] = { - [sym__concat] = ACTIONS(3158), - [sym_variable_name] = ACTIONS(3158), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_esac] = ACTIONS(3160), - [anon_sym_PIPE] = ACTIONS(3160), - [anon_sym_SEMI_SEMI] = ACTIONS(3158), - [anon_sym_PIPE_AMP] = ACTIONS(3158), - [anon_sym_AMP_AMP] = ACTIONS(3158), - [anon_sym_PIPE_PIPE] = ACTIONS(3158), - [sym__special_characters] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [anon_sym_DOLLAR] = ACTIONS(3160), - [sym_raw_string] = ACTIONS(3158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), - [anon_sym_BQUOTE] = ACTIONS(3158), - [anon_sym_LT_LPAREN] = ACTIONS(3158), - [anon_sym_GT_LPAREN] = ACTIONS(3158), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3160), - [sym_word] = ACTIONS(3160), - [anon_sym_LF] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2771), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(6382), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(6376), + [anon_sym_SEMI_SEMI] = ACTIONS(6384), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(6384), + [anon_sym_AMP] = ACTIONS(6382), }, [2667] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(6329), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(6376), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2668] = { - [sym__concat] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_esac] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2961), - [anon_sym_SEMI_SEMI] = ACTIONS(2959), - [anon_sym_PIPE_AMP] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [sym__special_characters] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_DOLLAR] = ACTIONS(2961), - [sym_raw_string] = ACTIONS(2959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), - [anon_sym_BQUOTE] = ACTIONS(2959), - [anon_sym_LT_LPAREN] = ACTIONS(2959), - [anon_sym_GT_LPAREN] = ACTIONS(2959), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2961), - [sym_word] = ACTIONS(2961), - [anon_sym_LF] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_SEMI] = ACTIONS(6386), + [anon_sym_SEMI_SEMI] = ACTIONS(6388), + [anon_sym_BQUOTE] = ACTIONS(6376), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6388), + [anon_sym_AMP] = ACTIONS(6388), }, [2669] = { - [sym__concat] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym_esac] = ACTIONS(2975), - [anon_sym_PIPE] = ACTIONS(2975), - [anon_sym_SEMI_SEMI] = ACTIONS(2973), - [anon_sym_PIPE_AMP] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [sym__special_characters] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_DOLLAR] = ACTIONS(2975), - [sym_raw_string] = ACTIONS(2973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), - [anon_sym_BQUOTE] = ACTIONS(2973), - [anon_sym_LT_LPAREN] = ACTIONS(2973), - [anon_sym_GT_LPAREN] = ACTIONS(2973), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2975), - [sym_word] = ACTIONS(2975), - [anon_sym_LF] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2975), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(2774), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(6392), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(899), + [anon_sym_LT_AMP] = ACTIONS(899), + [anon_sym_GT_AMP] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [anon_sym_BQUOTE] = ACTIONS(6376), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6392), + [anon_sym_AMP] = ACTIONS(6390), }, [2670] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(6331), - [sym_comment] = ACTIONS(55), + [sym_file_redirect] = STATE(489), + [sym_heredoc_redirect] = STATE(489), + [sym_heredoc_body] = STATE(2774), + [sym_herestring_redirect] = STATE(489), + [aux_sym_redirected_statement_repeat1] = STATE(489), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(6390), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_SEMI_SEMI] = ACTIONS(6392), + [anon_sym_PIPE_AMP] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(901), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(6376), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(6392), + [anon_sym_AMP] = ACTIONS(6390), }, [2671] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(6333), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(6394), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2672] = { - [anon_sym_RBRACE] = ACTIONS(6333), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(1924), + [sym__heredoc_body_beginning] = ACTIONS(1924), + [sym_file_descriptor] = ACTIONS(1924), + [sym__concat] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_esac] = ACTIONS(1924), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_SEMI_SEMI] = ACTIONS(1924), + [anon_sym_PIPE_AMP] = ACTIONS(1924), + [anon_sym_AMP_AMP] = ACTIONS(1924), + [anon_sym_PIPE_PIPE] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_GT] = ACTIONS(1926), + [anon_sym_GT_GT] = ACTIONS(1924), + [anon_sym_AMP_GT] = ACTIONS(1926), + [anon_sym_AMP_GT_GT] = ACTIONS(1924), + [anon_sym_LT_AMP] = ACTIONS(1924), + [anon_sym_GT_AMP] = ACTIONS(1924), + [anon_sym_LT_LT] = ACTIONS(1926), + [anon_sym_LT_LT_DASH] = ACTIONS(1924), + [anon_sym_LT_LT_LT] = ACTIONS(1924), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1926), }, [2673] = { - [sym_concatenation] = STATE(2780), - [sym_string] = STATE(2779), - [sym_simple_expansion] = STATE(2779), - [sym_string_expansion] = STATE(2779), - [sym_expansion] = STATE(2779), - [sym_command_substitution] = STATE(2779), - [sym_process_substitution] = STATE(2779), - [anon_sym_RBRACE] = ACTIONS(6333), - [sym__special_characters] = ACTIONS(6335), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(6337), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(6337), + [anon_sym_SEMI] = ACTIONS(6396), + [anon_sym_RPAREN] = ACTIONS(6394), + [anon_sym_SEMI_SEMI] = ACTIONS(6398), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6398), + [anon_sym_AMP] = ACTIONS(6398), }, [2674] = { - [sym__concat] = ACTIONS(3009), - [anon_sym_SEMI] = ACTIONS(3011), - [anon_sym_esac] = ACTIONS(3011), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_SEMI_SEMI] = ACTIONS(3009), - [anon_sym_PIPE_AMP] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3009), - [sym__special_characters] = ACTIONS(3009), - [anon_sym_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3011), - [sym_raw_string] = ACTIONS(3009), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), - [anon_sym_BQUOTE] = ACTIONS(3009), - [anon_sym_LT_LPAREN] = ACTIONS(3009), - [anon_sym_GT_LPAREN] = ACTIONS(3009), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3011), - [sym_word] = ACTIONS(3011), - [anon_sym_LF] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3011), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2778), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(6400), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(6394), + [anon_sym_SEMI_SEMI] = ACTIONS(6402), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(599), + [anon_sym_AMP_GT] = ACTIONS(597), + [anon_sym_AMP_GT_GT] = ACTIONS(599), + [anon_sym_LT_AMP] = ACTIONS(599), + [anon_sym_GT_AMP] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6402), + [anon_sym_AMP] = ACTIONS(6400), }, [2675] = { - [sym_concatenation] = STATE(2783), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2783), - [sym_regex] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(6341), - [anon_sym_EQ] = ACTIONS(6343), - [anon_sym_DASH] = ACTIONS(6343), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6345), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6343), - [anon_sym_COLON_QMARK] = ACTIONS(6343), - [anon_sym_COLON_DASH] = ACTIONS(6343), - [anon_sym_PERCENT] = ACTIONS(6343), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(328), + [sym_heredoc_redirect] = STATE(328), + [sym_heredoc_body] = STATE(2778), + [sym_herestring_redirect] = STATE(328), + [aux_sym_redirected_statement_repeat1] = STATE(328), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(6400), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_RPAREN] = ACTIONS(6394), + [anon_sym_SEMI_SEMI] = ACTIONS(6402), + [anon_sym_PIPE_AMP] = ACTIONS(593), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(601), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(6402), + [anon_sym_AMP] = ACTIONS(6400), }, [2676] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6341), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(927), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(5836), + [anon_sym_DQUOTE] = ACTIONS(5838), + [anon_sym_DOLLAR] = ACTIONS(5836), + [sym_raw_string] = ACTIONS(5838), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5838), + [anon_sym_BQUOTE] = ACTIONS(5838), + [anon_sym_LT_LPAREN] = ACTIONS(5838), + [anon_sym_GT_LPAREN] = ACTIONS(5838), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5836), }, [2677] = { - [sym_concatenation] = STATE(2785), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2785), - [sym_regex] = ACTIONS(6347), - [anon_sym_RBRACE] = ACTIONS(6333), - [anon_sym_EQ] = ACTIONS(6349), - [anon_sym_DASH] = ACTIONS(6349), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6351), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6349), - [anon_sym_COLON_QMARK] = ACTIONS(6349), - [anon_sym_COLON_DASH] = ACTIONS(6349), - [anon_sym_PERCENT] = ACTIONS(6349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__special_characters] = ACTIONS(5838), + [anon_sym_DQUOTE] = ACTIONS(5838), + [anon_sym_DOLLAR] = ACTIONS(5836), + [sym_raw_string] = ACTIONS(5838), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5838), + [anon_sym_BQUOTE] = ACTIONS(5838), + [anon_sym_LT_LPAREN] = ACTIONS(5838), + [anon_sym_GT_LPAREN] = ACTIONS(5838), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5838), }, [2678] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6333), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_heredoc_body] = STATE(979), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(6404), + [anon_sym_PIPE_AMP] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_AMP_GT] = ACTIONS(507), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(511), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2054), }, [2679] = { - [sym_concatenation] = STATE(2787), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2787), - [anon_sym_RBRACE] = ACTIONS(6353), - [anon_sym_EQ] = ACTIONS(6355), - [anon_sym_DASH] = ACTIONS(6355), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6357), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6355), - [anon_sym_COLON_QMARK] = ACTIONS(6355), - [anon_sym_COLON_DASH] = ACTIONS(6355), - [anon_sym_PERCENT] = ACTIONS(6355), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_heredoc_body] = STATE(979), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(6404), + [anon_sym_PIPE_AMP] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(511), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2054), }, [2680] = { - [sym__concat] = ACTIONS(3065), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym_esac] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_SEMI_SEMI] = ACTIONS(3065), - [anon_sym_PIPE_AMP] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_PIPE_PIPE] = ACTIONS(3065), - [sym__special_characters] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [anon_sym_DOLLAR] = ACTIONS(3067), - [sym_raw_string] = ACTIONS(3065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), - [anon_sym_BQUOTE] = ACTIONS(3065), - [anon_sym_LT_LPAREN] = ACTIONS(3065), - [anon_sym_GT_LPAREN] = ACTIONS(3065), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3067), - [sym_word] = ACTIONS(3067), - [anon_sym_LF] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(927), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(5846), + [anon_sym_DQUOTE] = ACTIONS(5848), + [anon_sym_DOLLAR] = ACTIONS(5846), + [sym_raw_string] = ACTIONS(5848), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5848), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5848), + [anon_sym_BQUOTE] = ACTIONS(5848), + [anon_sym_LT_LPAREN] = ACTIONS(5848), + [anon_sym_GT_LPAREN] = ACTIONS(5848), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5846), }, [2681] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6353), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__special_characters] = ACTIONS(5848), + [anon_sym_DQUOTE] = ACTIONS(5848), + [anon_sym_DOLLAR] = ACTIONS(5846), + [sym_raw_string] = ACTIONS(5848), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5848), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5848), + [anon_sym_BQUOTE] = ACTIONS(5848), + [anon_sym_LT_LPAREN] = ACTIONS(5848), + [anon_sym_GT_LPAREN] = ACTIONS(5848), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5848), }, [2682] = { - [sym_concatenation] = STATE(2785), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2785), - [anon_sym_RBRACE] = ACTIONS(6333), - [anon_sym_EQ] = ACTIONS(6349), - [anon_sym_DASH] = ACTIONS(6349), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6351), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6349), - [anon_sym_COLON_QMARK] = ACTIONS(6349), - [anon_sym_COLON_DASH] = ACTIONS(6349), - [anon_sym_PERCENT] = ACTIONS(6349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_heredoc_body] = STATE(979), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(6406), + [anon_sym_PIPE_AMP] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(507), + [anon_sym_GT] = ACTIONS(507), + [anon_sym_GT_GT] = ACTIONS(509), + [anon_sym_AMP_GT] = ACTIONS(507), + [anon_sym_AMP_GT_GT] = ACTIONS(509), + [anon_sym_LT_AMP] = ACTIONS(509), + [anon_sym_GT_AMP] = ACTIONS(509), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(511), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2054), }, [2683] = { - [sym__concat] = ACTIONS(3120), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_esac] = ACTIONS(3122), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_SEMI_SEMI] = ACTIONS(3120), - [anon_sym_PIPE_AMP] = ACTIONS(3120), - [anon_sym_AMP_AMP] = ACTIONS(3120), - [anon_sym_PIPE_PIPE] = ACTIONS(3120), - [sym__special_characters] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [sym_raw_string] = ACTIONS(3120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), - [anon_sym_BQUOTE] = ACTIONS(3120), - [anon_sym_LT_LPAREN] = ACTIONS(3120), - [anon_sym_GT_LPAREN] = ACTIONS(3120), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3122), - [sym_word] = ACTIONS(3122), - [anon_sym_LF] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3122), + [sym_file_redirect] = STATE(276), + [sym_heredoc_redirect] = STATE(276), + [sym_heredoc_body] = STATE(979), + [sym_herestring_redirect] = STATE(276), + [aux_sym_redirected_statement_repeat1] = STATE(276), + [sym__simple_heredoc_body] = ACTIONS(299), + [sym__heredoc_body_beginning] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(339), + [sym_variable_name] = ACTIONS(339), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(499), + [anon_sym_SEMI_SEMI] = ACTIONS(6406), + [anon_sym_PIPE_AMP] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_GT] = ACTIONS(339), + [anon_sym_AMP_GT] = ACTIONS(341), + [anon_sym_AMP_GT_GT] = ACTIONS(339), + [anon_sym_LT_AMP] = ACTIONS(339), + [anon_sym_GT_AMP] = ACTIONS(339), + [anon_sym_LT_LT] = ACTIONS(321), + [anon_sym_LT_LT_DASH] = ACTIONS(323), + [anon_sym_LT_LT_LT] = ACTIONS(511), + [sym__special_characters] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(341), + [sym_raw_string] = ACTIONS(339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(339), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(339), + [anon_sym_BQUOTE] = ACTIONS(339), + [anon_sym_LT_LPAREN] = ACTIONS(339), + [anon_sym_GT_LPAREN] = ACTIONS(339), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(341), + [anon_sym_LF] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2054), }, [2684] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(6359), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__simple_heredoc_body] = ACTIONS(2930), + [sym__heredoc_body_beginning] = ACTIONS(2930), + [sym_file_descriptor] = ACTIONS(2930), + [sym__concat] = ACTIONS(2930), + [sym_variable_name] = ACTIONS(2930), + [anon_sym_SEMI] = ACTIONS(2932), + [anon_sym_esac] = ACTIONS(2932), + [anon_sym_PIPE] = ACTIONS(2932), + [anon_sym_SEMI_SEMI] = ACTIONS(2930), + [anon_sym_PIPE_AMP] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_PIPE_PIPE] = ACTIONS(2930), + [anon_sym_LT] = ACTIONS(2932), + [anon_sym_GT] = ACTIONS(2932), + [anon_sym_GT_GT] = ACTIONS(2930), + [anon_sym_AMP_GT] = ACTIONS(2932), + [anon_sym_AMP_GT_GT] = ACTIONS(2930), + [anon_sym_LT_AMP] = ACTIONS(2930), + [anon_sym_GT_AMP] = ACTIONS(2930), + [anon_sym_LT_LT] = ACTIONS(2932), + [anon_sym_LT_LT_DASH] = ACTIONS(2930), + [anon_sym_LT_LT_LT] = ACTIONS(2930), + [sym__special_characters] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [anon_sym_DOLLAR] = ACTIONS(2932), + [sym_raw_string] = ACTIONS(2930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2930), + [anon_sym_BQUOTE] = ACTIONS(2930), + [anon_sym_LT_LPAREN] = ACTIONS(2930), + [anon_sym_GT_LPAREN] = ACTIONS(2930), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2932), + [anon_sym_LF] = ACTIONS(2930), + [anon_sym_AMP] = ACTIONS(2932), }, [2685] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(6359), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__simple_heredoc_body] = ACTIONS(2944), + [sym__heredoc_body_beginning] = ACTIONS(2944), + [sym_file_descriptor] = ACTIONS(2944), + [sym__concat] = ACTIONS(2944), + [sym_variable_name] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_esac] = ACTIONS(2946), + [anon_sym_PIPE] = ACTIONS(2946), + [anon_sym_SEMI_SEMI] = ACTIONS(2944), + [anon_sym_PIPE_AMP] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_GT] = ACTIONS(2946), + [anon_sym_GT_GT] = ACTIONS(2944), + [anon_sym_AMP_GT] = ACTIONS(2946), + [anon_sym_AMP_GT_GT] = ACTIONS(2944), + [anon_sym_LT_AMP] = ACTIONS(2944), + [anon_sym_GT_AMP] = ACTIONS(2944), + [anon_sym_LT_LT] = ACTIONS(2946), + [anon_sym_LT_LT_DASH] = ACTIONS(2944), + [anon_sym_LT_LT_LT] = ACTIONS(2944), + [sym__special_characters] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_DOLLAR] = ACTIONS(2946), + [sym_raw_string] = ACTIONS(2944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2944), + [anon_sym_BQUOTE] = ACTIONS(2944), + [anon_sym_LT_LPAREN] = ACTIONS(2944), + [anon_sym_GT_LPAREN] = ACTIONS(2944), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2946), + [anon_sym_LF] = ACTIONS(2944), + [anon_sym_AMP] = ACTIONS(2946), }, [2686] = { - [sym__concat] = ACTIONS(3158), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_esac] = ACTIONS(3160), - [anon_sym_PIPE] = ACTIONS(3160), - [anon_sym_SEMI_SEMI] = ACTIONS(3158), - [anon_sym_PIPE_AMP] = ACTIONS(3158), - [anon_sym_AMP_AMP] = ACTIONS(3158), - [anon_sym_PIPE_PIPE] = ACTIONS(3158), - [sym__special_characters] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [anon_sym_DOLLAR] = ACTIONS(3160), - [sym_raw_string] = ACTIONS(3158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), - [anon_sym_BQUOTE] = ACTIONS(3158), - [anon_sym_LT_LPAREN] = ACTIONS(3158), - [anon_sym_GT_LPAREN] = ACTIONS(3158), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3160), - [sym_word] = ACTIONS(3160), - [anon_sym_LF] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(6408), + [sym_comment] = ACTIONS(57), }, [2687] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(6361), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(6410), + [sym_comment] = ACTIONS(57), }, [2688] = { - [sym__simple_heredoc_body] = ACTIONS(3934), - [sym__heredoc_body_beginning] = ACTIONS(3934), - [sym_file_descriptor] = ACTIONS(3934), - [sym__concat] = ACTIONS(3934), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym_esac] = ACTIONS(3936), - [anon_sym_PIPE] = ACTIONS(3936), - [anon_sym_SEMI_SEMI] = ACTIONS(3934), - [anon_sym_PIPE_AMP] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_EQ_TILDE] = ACTIONS(3936), - [anon_sym_EQ_EQ] = ACTIONS(3936), - [anon_sym_LT] = ACTIONS(3936), - [anon_sym_GT] = ACTIONS(3936), - [anon_sym_GT_GT] = ACTIONS(3934), - [anon_sym_AMP_GT] = ACTIONS(3936), - [anon_sym_AMP_GT_GT] = ACTIONS(3934), - [anon_sym_LT_AMP] = ACTIONS(3934), - [anon_sym_GT_AMP] = ACTIONS(3934), - [anon_sym_LT_LT] = ACTIONS(3936), - [anon_sym_LT_LT_DASH] = ACTIONS(3934), - [anon_sym_LT_LT_LT] = ACTIONS(3934), - [sym__special_characters] = ACTIONS(3934), - [anon_sym_DQUOTE] = ACTIONS(3934), - [anon_sym_DOLLAR] = ACTIONS(3936), - [sym_raw_string] = ACTIONS(3934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), - [anon_sym_BQUOTE] = ACTIONS(3934), - [anon_sym_LT_LPAREN] = ACTIONS(3934), - [anon_sym_GT_LPAREN] = ACTIONS(3934), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3936), - [anon_sym_LF] = ACTIONS(3934), - [anon_sym_AMP] = ACTIONS(3936), + [anon_sym_RBRACE] = ACTIONS(6410), + [sym_comment] = ACTIONS(57), }, [2689] = { - [sym__simple_heredoc_body] = ACTIONS(3942), - [sym__heredoc_body_beginning] = ACTIONS(3942), - [sym_file_descriptor] = ACTIONS(3942), - [sym__concat] = ACTIONS(3942), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym_esac] = ACTIONS(3944), - [anon_sym_PIPE] = ACTIONS(3944), - [anon_sym_SEMI_SEMI] = ACTIONS(3942), - [anon_sym_PIPE_AMP] = ACTIONS(3942), - [anon_sym_AMP_AMP] = ACTIONS(3942), - [anon_sym_PIPE_PIPE] = ACTIONS(3942), - [anon_sym_EQ_TILDE] = ACTIONS(3944), - [anon_sym_EQ_EQ] = ACTIONS(3944), - [anon_sym_LT] = ACTIONS(3944), - [anon_sym_GT] = ACTIONS(3944), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_AMP_GT] = ACTIONS(3944), - [anon_sym_AMP_GT_GT] = ACTIONS(3942), - [anon_sym_LT_AMP] = ACTIONS(3942), - [anon_sym_GT_AMP] = ACTIONS(3942), - [anon_sym_LT_LT] = ACTIONS(3944), - [anon_sym_LT_LT_DASH] = ACTIONS(3942), - [anon_sym_LT_LT_LT] = ACTIONS(3942), - [sym__special_characters] = ACTIONS(3942), - [anon_sym_DQUOTE] = ACTIONS(3942), - [anon_sym_DOLLAR] = ACTIONS(3944), - [sym_raw_string] = ACTIONS(3942), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), - [anon_sym_BQUOTE] = ACTIONS(3942), - [anon_sym_LT_LPAREN] = ACTIONS(3942), - [anon_sym_GT_LPAREN] = ACTIONS(3942), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3944), - [anon_sym_LF] = ACTIONS(3942), - [anon_sym_AMP] = ACTIONS(3944), + [sym_concatenation] = STATE(2785), + [sym_string] = STATE(2784), + [sym_simple_expansion] = STATE(2784), + [sym_string_expansion] = STATE(2784), + [sym_expansion] = STATE(2784), + [sym_command_substitution] = STATE(2784), + [sym_process_substitution] = STATE(2784), + [anon_sym_RBRACE] = ACTIONS(6410), + [sym__special_characters] = ACTIONS(6412), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(6414), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6414), }, [2690] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(6363), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(2980), + [sym__heredoc_body_beginning] = ACTIONS(2980), + [sym_file_descriptor] = ACTIONS(2980), + [sym__concat] = ACTIONS(2980), + [sym_variable_name] = ACTIONS(2980), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_esac] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2982), + [anon_sym_SEMI_SEMI] = ACTIONS(2980), + [anon_sym_PIPE_AMP] = ACTIONS(2980), + [anon_sym_AMP_AMP] = ACTIONS(2980), + [anon_sym_PIPE_PIPE] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_GT] = ACTIONS(2982), + [anon_sym_GT_GT] = ACTIONS(2980), + [anon_sym_AMP_GT] = ACTIONS(2982), + [anon_sym_AMP_GT_GT] = ACTIONS(2980), + [anon_sym_LT_AMP] = ACTIONS(2980), + [anon_sym_GT_AMP] = ACTIONS(2980), + [anon_sym_LT_LT] = ACTIONS(2982), + [anon_sym_LT_LT_DASH] = ACTIONS(2980), + [anon_sym_LT_LT_LT] = ACTIONS(2980), + [sym__special_characters] = ACTIONS(2980), + [anon_sym_DQUOTE] = ACTIONS(2980), + [anon_sym_DOLLAR] = ACTIONS(2982), + [sym_raw_string] = ACTIONS(2980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2980), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2980), + [anon_sym_BQUOTE] = ACTIONS(2980), + [anon_sym_LT_LPAREN] = ACTIONS(2980), + [anon_sym_GT_LPAREN] = ACTIONS(2980), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(2982), + [anon_sym_LF] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), }, [2691] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(6365), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(2788), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2788), + [sym_regex] = ACTIONS(6416), + [anon_sym_RBRACE] = ACTIONS(6418), + [anon_sym_EQ] = ACTIONS(6420), + [anon_sym_DASH] = ACTIONS(6420), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6422), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6420), + [anon_sym_COLON_QMARK] = ACTIONS(6420), + [anon_sym_COLON_DASH] = ACTIONS(6420), + [anon_sym_PERCENT] = ACTIONS(6420), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2692] = { - [anon_sym_RBRACE] = ACTIONS(6365), - [sym_comment] = ACTIONS(55), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6418), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2693] = { - [sym_concatenation] = STATE(2793), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2793), - [anon_sym_RBRACE] = ACTIONS(6367), - [anon_sym_EQ] = ACTIONS(6369), - [anon_sym_DASH] = ACTIONS(6369), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6369), - [anon_sym_COLON_QMARK] = ACTIONS(6369), - [anon_sym_COLON_DASH] = ACTIONS(6369), - [anon_sym_PERCENT] = ACTIONS(6369), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(2790), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2790), + [sym_regex] = ACTIONS(6424), + [anon_sym_RBRACE] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(6426), + [anon_sym_DASH] = ACTIONS(6426), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6426), + [anon_sym_COLON_QMARK] = ACTIONS(6426), + [anon_sym_COLON_DASH] = ACTIONS(6426), + [anon_sym_PERCENT] = ACTIONS(6426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2694] = { - [sym__simple_heredoc_body] = ACTIONS(3998), - [sym__heredoc_body_beginning] = ACTIONS(3998), - [sym_file_descriptor] = ACTIONS(3998), - [sym__concat] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym_esac] = ACTIONS(4000), - [anon_sym_PIPE] = ACTIONS(4000), - [anon_sym_SEMI_SEMI] = ACTIONS(3998), - [anon_sym_PIPE_AMP] = ACTIONS(3998), - [anon_sym_AMP_AMP] = ACTIONS(3998), - [anon_sym_PIPE_PIPE] = ACTIONS(3998), - [anon_sym_EQ_TILDE] = ACTIONS(4000), - [anon_sym_EQ_EQ] = ACTIONS(4000), - [anon_sym_LT] = ACTIONS(4000), - [anon_sym_GT] = ACTIONS(4000), - [anon_sym_GT_GT] = ACTIONS(3998), - [anon_sym_AMP_GT] = ACTIONS(4000), - [anon_sym_AMP_GT_GT] = ACTIONS(3998), - [anon_sym_LT_AMP] = ACTIONS(3998), - [anon_sym_GT_AMP] = ACTIONS(3998), - [anon_sym_LT_LT] = ACTIONS(4000), - [anon_sym_LT_LT_DASH] = ACTIONS(3998), - [anon_sym_LT_LT_LT] = ACTIONS(3998), - [sym__special_characters] = ACTIONS(3998), - [anon_sym_DQUOTE] = ACTIONS(3998), - [anon_sym_DOLLAR] = ACTIONS(4000), - [sym_raw_string] = ACTIONS(3998), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), - [anon_sym_BQUOTE] = ACTIONS(3998), - [anon_sym_LT_LPAREN] = ACTIONS(3998), - [anon_sym_GT_LPAREN] = ACTIONS(3998), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4000), - [anon_sym_LF] = ACTIONS(3998), - [anon_sym_AMP] = ACTIONS(4000), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2695] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6367), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(2792), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2792), + [anon_sym_RBRACE] = ACTIONS(6430), + [anon_sym_EQ] = ACTIONS(6432), + [anon_sym_DASH] = ACTIONS(6432), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6434), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6432), + [anon_sym_COLON_QMARK] = ACTIONS(6432), + [anon_sym_COLON_DASH] = ACTIONS(6432), + [anon_sym_PERCENT] = ACTIONS(6432), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2696] = { - [sym_concatenation] = STATE(2794), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2794), - [anon_sym_RBRACE] = ACTIONS(6365), - [anon_sym_EQ] = ACTIONS(6373), - [anon_sym_DASH] = ACTIONS(6373), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6375), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6373), - [anon_sym_COLON_QMARK] = ACTIONS(6373), - [anon_sym_COLON_DASH] = ACTIONS(6373), - [anon_sym_PERCENT] = ACTIONS(6373), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(3036), + [sym__heredoc_body_beginning] = ACTIONS(3036), + [sym_file_descriptor] = ACTIONS(3036), + [sym__concat] = ACTIONS(3036), + [sym_variable_name] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_esac] = ACTIONS(3038), + [anon_sym_PIPE] = ACTIONS(3038), + [anon_sym_SEMI_SEMI] = ACTIONS(3036), + [anon_sym_PIPE_AMP] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3038), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_AMP_GT] = ACTIONS(3038), + [anon_sym_AMP_GT_GT] = ACTIONS(3036), + [anon_sym_LT_AMP] = ACTIONS(3036), + [anon_sym_GT_AMP] = ACTIONS(3036), + [anon_sym_LT_LT] = ACTIONS(3038), + [anon_sym_LT_LT_DASH] = ACTIONS(3036), + [anon_sym_LT_LT_LT] = ACTIONS(3036), + [sym__special_characters] = ACTIONS(3036), + [anon_sym_DQUOTE] = ACTIONS(3036), + [anon_sym_DOLLAR] = ACTIONS(3038), + [sym_raw_string] = ACTIONS(3036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3036), + [anon_sym_BQUOTE] = ACTIONS(3036), + [anon_sym_LT_LPAREN] = ACTIONS(3036), + [anon_sym_GT_LPAREN] = ACTIONS(3036), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3038), + [anon_sym_LF] = ACTIONS(3036), + [anon_sym_AMP] = ACTIONS(3038), }, [2697] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6365), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6430), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2698] = { - [sym__simple_heredoc_body] = ACTIONS(4043), - [sym__heredoc_body_beginning] = ACTIONS(4043), - [sym_file_descriptor] = ACTIONS(4043), - [sym__concat] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4045), - [anon_sym_esac] = ACTIONS(4045), - [anon_sym_PIPE] = ACTIONS(4045), - [anon_sym_SEMI_SEMI] = ACTIONS(4043), - [anon_sym_PIPE_AMP] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_EQ_TILDE] = ACTIONS(4045), - [anon_sym_EQ_EQ] = ACTIONS(4045), - [anon_sym_LT] = ACTIONS(4045), - [anon_sym_GT] = ACTIONS(4045), - [anon_sym_GT_GT] = ACTIONS(4043), - [anon_sym_AMP_GT] = ACTIONS(4045), - [anon_sym_AMP_GT_GT] = ACTIONS(4043), - [anon_sym_LT_AMP] = ACTIONS(4043), - [anon_sym_GT_AMP] = ACTIONS(4043), - [anon_sym_LT_LT] = ACTIONS(4045), - [anon_sym_LT_LT_DASH] = ACTIONS(4043), - [anon_sym_LT_LT_LT] = ACTIONS(4043), - [sym__special_characters] = ACTIONS(4043), - [anon_sym_DQUOTE] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(4045), - [sym_raw_string] = ACTIONS(4043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), - [anon_sym_BQUOTE] = ACTIONS(4043), - [anon_sym_LT_LPAREN] = ACTIONS(4043), - [anon_sym_GT_LPAREN] = ACTIONS(4043), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4045), - [anon_sym_LF] = ACTIONS(4043), - [anon_sym_AMP] = ACTIONS(4045), + [sym_concatenation] = STATE(2790), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2790), + [anon_sym_RBRACE] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(6426), + [anon_sym_DASH] = ACTIONS(6426), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6426), + [anon_sym_COLON_QMARK] = ACTIONS(6426), + [anon_sym_COLON_DASH] = ACTIONS(6426), + [anon_sym_PERCENT] = ACTIONS(6426), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2699] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6377), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(3091), + [sym__heredoc_body_beginning] = ACTIONS(3091), + [sym_file_descriptor] = ACTIONS(3091), + [sym__concat] = ACTIONS(3091), + [sym_variable_name] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_esac] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3093), + [anon_sym_SEMI_SEMI] = ACTIONS(3091), + [anon_sym_PIPE_AMP] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_GT] = ACTIONS(3093), + [anon_sym_GT_GT] = ACTIONS(3091), + [anon_sym_AMP_GT] = ACTIONS(3093), + [anon_sym_AMP_GT_GT] = ACTIONS(3091), + [anon_sym_LT_AMP] = ACTIONS(3091), + [anon_sym_GT_AMP] = ACTIONS(3091), + [anon_sym_LT_LT] = ACTIONS(3093), + [anon_sym_LT_LT_DASH] = ACTIONS(3091), + [anon_sym_LT_LT_LT] = ACTIONS(3091), + [sym__special_characters] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [anon_sym_DOLLAR] = ACTIONS(3093), + [sym_raw_string] = ACTIONS(3091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3091), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3091), + [anon_sym_BQUOTE] = ACTIONS(3091), + [anon_sym_LT_LPAREN] = ACTIONS(3091), + [anon_sym_GT_LPAREN] = ACTIONS(3091), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3093), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3093), }, [2700] = { - [sym__simple_heredoc_body] = ACTIONS(4065), - [sym__heredoc_body_beginning] = ACTIONS(4065), - [sym_file_descriptor] = ACTIONS(4065), - [sym__concat] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_esac] = ACTIONS(4067), - [anon_sym_PIPE] = ACTIONS(4067), - [anon_sym_SEMI_SEMI] = ACTIONS(4065), - [anon_sym_PIPE_AMP] = ACTIONS(4065), - [anon_sym_AMP_AMP] = ACTIONS(4065), - [anon_sym_PIPE_PIPE] = ACTIONS(4065), - [anon_sym_EQ_TILDE] = ACTIONS(4067), - [anon_sym_EQ_EQ] = ACTIONS(4067), - [anon_sym_LT] = ACTIONS(4067), - [anon_sym_GT] = ACTIONS(4067), - [anon_sym_GT_GT] = ACTIONS(4065), - [anon_sym_AMP_GT] = ACTIONS(4067), - [anon_sym_AMP_GT_GT] = ACTIONS(4065), - [anon_sym_LT_AMP] = ACTIONS(4065), - [anon_sym_GT_AMP] = ACTIONS(4065), - [anon_sym_LT_LT] = ACTIONS(4067), - [anon_sym_LT_LT_DASH] = ACTIONS(4065), - [anon_sym_LT_LT_LT] = ACTIONS(4065), - [sym__special_characters] = ACTIONS(4065), - [anon_sym_DQUOTE] = ACTIONS(4065), - [anon_sym_DOLLAR] = ACTIONS(4067), - [sym_raw_string] = ACTIONS(4065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), - [anon_sym_BQUOTE] = ACTIONS(4065), - [anon_sym_LT_LPAREN] = ACTIONS(4065), - [anon_sym_GT_LPAREN] = ACTIONS(4065), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4067), - [anon_sym_LF] = ACTIONS(4065), - [anon_sym_AMP] = ACTIONS(4067), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(6436), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [2701] = { - [sym__simple_heredoc_body] = ACTIONS(4089), - [sym__heredoc_body_beginning] = ACTIONS(4089), - [sym_file_descriptor] = ACTIONS(4089), - [sym__concat] = ACTIONS(4089), - [anon_sym_SEMI] = ACTIONS(4091), - [anon_sym_esac] = ACTIONS(4091), - [anon_sym_PIPE] = ACTIONS(4091), - [anon_sym_SEMI_SEMI] = ACTIONS(4089), - [anon_sym_PIPE_AMP] = ACTIONS(4089), - [anon_sym_AMP_AMP] = ACTIONS(4089), - [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_EQ_TILDE] = ACTIONS(4091), - [anon_sym_EQ_EQ] = ACTIONS(4091), - [anon_sym_LT] = ACTIONS(4091), - [anon_sym_GT] = ACTIONS(4091), - [anon_sym_GT_GT] = ACTIONS(4089), - [anon_sym_AMP_GT] = ACTIONS(4091), - [anon_sym_AMP_GT_GT] = ACTIONS(4089), - [anon_sym_LT_AMP] = ACTIONS(4089), - [anon_sym_GT_AMP] = ACTIONS(4089), - [anon_sym_LT_LT] = ACTIONS(4091), - [anon_sym_LT_LT_DASH] = ACTIONS(4089), - [anon_sym_LT_LT_LT] = ACTIONS(4089), - [sym__special_characters] = ACTIONS(4089), - [anon_sym_DQUOTE] = ACTIONS(4089), - [anon_sym_DOLLAR] = ACTIONS(4091), - [sym_raw_string] = ACTIONS(4089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), - [anon_sym_BQUOTE] = ACTIONS(4089), - [anon_sym_LT_LPAREN] = ACTIONS(4089), - [anon_sym_GT_LPAREN] = ACTIONS(4089), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4091), - [anon_sym_LF] = ACTIONS(4089), - [anon_sym_AMP] = ACTIONS(4091), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(6436), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2702] = { - [sym__simple_heredoc_body] = ACTIONS(1763), - [sym__heredoc_body_beginning] = ACTIONS(1763), - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_esac] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_LT_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT_LT] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_SEMI] = ACTIONS(6438), + [anon_sym_RPAREN] = ACTIONS(6436), + [anon_sym_SEMI_SEMI] = ACTIONS(6440), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6440), + [anon_sym_AMP] = ACTIONS(6440), }, [2703] = { - [aux_sym_concatenation_repeat1] = STATE(2703), - [sym__simple_heredoc_body] = ACTIONS(1763), - [sym__heredoc_body_beginning] = ACTIONS(1763), - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(6379), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_esac] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_LT_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT_LT] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(6436), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [2704] = { - [sym__simple_heredoc_body] = ACTIONS(1770), - [sym__heredoc_body_beginning] = ACTIONS(1770), - [sym_file_descriptor] = ACTIONS(1770), - [sym__concat] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_esac] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_SEMI_SEMI] = ACTIONS(1770), - [anon_sym_PIPE_AMP] = ACTIONS(1770), - [anon_sym_AMP_AMP] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1770), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_GT] = ACTIONS(1772), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_AMP_GT] = ACTIONS(1772), - [anon_sym_AMP_GT_GT] = ACTIONS(1770), - [anon_sym_LT_AMP] = ACTIONS(1770), - [anon_sym_GT_AMP] = ACTIONS(1770), - [anon_sym_LT_LT] = ACTIONS(1772), - [anon_sym_LT_LT_DASH] = ACTIONS(1770), - [anon_sym_LT_LT_LT] = ACTIONS(1770), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1772), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(6436), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2705] = { - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(6382), - [anon_sym_DOLLAR] = ACTIONS(819), - [sym__string_content] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(815), - [sym_comment] = ACTIONS(281), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(823), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(825), - [anon_sym_0] = ACTIONS(823), - [anon_sym__] = ACTIONS(823), + [anon_sym_SEMI] = ACTIONS(6442), + [anon_sym_SEMI_SEMI] = ACTIONS(6444), + [anon_sym_BQUOTE] = ACTIONS(6436), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6444), + [anon_sym_AMP] = ACTIONS(6444), }, [2706] = { - [sym_concatenation] = STATE(2800), - [sym_string] = STATE(2799), - [sym_simple_expansion] = STATE(2799), - [sym_string_expansion] = STATE(2799), - [sym_expansion] = STATE(2799), - [sym_command_substitution] = STATE(2799), - [sym_process_substitution] = STATE(2799), - [anon_sym_RBRACE] = ACTIONS(6384), - [sym__special_characters] = ACTIONS(6386), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(6388), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(6388), + [sym__simple_heredoc_body] = ACTIONS(3121), + [sym__heredoc_body_beginning] = ACTIONS(3121), + [sym_file_descriptor] = ACTIONS(3121), + [sym__concat] = ACTIONS(3121), + [sym_variable_name] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_esac] = ACTIONS(3123), + [anon_sym_PIPE] = ACTIONS(3123), + [anon_sym_SEMI_SEMI] = ACTIONS(3121), + [anon_sym_PIPE_AMP] = ACTIONS(3121), + [anon_sym_AMP_AMP] = ACTIONS(3121), + [anon_sym_PIPE_PIPE] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(3123), + [anon_sym_GT] = ACTIONS(3123), + [anon_sym_GT_GT] = ACTIONS(3121), + [anon_sym_AMP_GT] = ACTIONS(3123), + [anon_sym_AMP_GT_GT] = ACTIONS(3121), + [anon_sym_LT_AMP] = ACTIONS(3121), + [anon_sym_GT_AMP] = ACTIONS(3121), + [anon_sym_LT_LT] = ACTIONS(3123), + [anon_sym_LT_LT_DASH] = ACTIONS(3121), + [anon_sym_LT_LT_LT] = ACTIONS(3121), + [sym__special_characters] = ACTIONS(3121), + [anon_sym_DQUOTE] = ACTIONS(3121), + [anon_sym_DOLLAR] = ACTIONS(3123), + [sym_raw_string] = ACTIONS(3121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3121), + [anon_sym_BQUOTE] = ACTIONS(3121), + [anon_sym_LT_LPAREN] = ACTIONS(3121), + [anon_sym_GT_LPAREN] = ACTIONS(3121), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3123), + [anon_sym_LF] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), }, [2707] = { - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(6390), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(6446), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [2708] = { - [sym_concatenation] = STATE(2804), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2804), - [anon_sym_RBRACE] = ACTIONS(6392), - [anon_sym_EQ] = ACTIONS(6394), - [anon_sym_DASH] = ACTIONS(6394), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(6398), - [anon_sym_COLON] = ACTIONS(6394), - [anon_sym_COLON_QMARK] = ACTIONS(6394), - [anon_sym_COLON_DASH] = ACTIONS(6394), - [anon_sym_PERCENT] = ACTIONS(6394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(6446), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2709] = { - [sym_concatenation] = STATE(2806), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2806), - [anon_sym_RBRACE] = ACTIONS(6384), - [anon_sym_EQ] = ACTIONS(6400), - [anon_sym_DASH] = ACTIONS(6400), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(6404), - [anon_sym_COLON] = ACTIONS(6400), - [anon_sym_COLON_QMARK] = ACTIONS(6400), - [anon_sym_COLON_DASH] = ACTIONS(6400), - [anon_sym_PERCENT] = ACTIONS(6400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(6448), + [anon_sym_RPAREN] = ACTIONS(6446), + [anon_sym_SEMI_SEMI] = ACTIONS(6450), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6450), + [anon_sym_AMP] = ACTIONS(6450), }, [2710] = { - [sym__simple_heredoc_body] = ACTIONS(1871), - [sym__heredoc_body_beginning] = ACTIONS(1871), - [sym_file_descriptor] = ACTIONS(1871), - [sym__concat] = ACTIONS(1871), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_esac] = ACTIONS(1871), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_SEMI_SEMI] = ACTIONS(1871), - [anon_sym_PIPE_AMP] = ACTIONS(1871), - [anon_sym_AMP_AMP] = ACTIONS(1871), - [anon_sym_PIPE_PIPE] = ACTIONS(1871), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_GT] = ACTIONS(1873), - [anon_sym_GT_GT] = ACTIONS(1871), - [anon_sym_AMP_GT] = ACTIONS(1873), - [anon_sym_AMP_GT_GT] = ACTIONS(1871), - [anon_sym_LT_AMP] = ACTIONS(1871), - [anon_sym_GT_AMP] = ACTIONS(1871), - [anon_sym_LT_LT] = ACTIONS(1873), - [anon_sym_LT_LT_DASH] = ACTIONS(1871), - [anon_sym_LT_LT_LT] = ACTIONS(1871), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1871), - [anon_sym_AMP] = ACTIONS(1873), + [sym__simple_heredoc_body] = ACTIONS(3238), + [sym__heredoc_body_beginning] = ACTIONS(3238), + [sym_file_descriptor] = ACTIONS(3238), + [sym_variable_name] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_esac] = ACTIONS(3240), + [anon_sym_PIPE] = ACTIONS(3240), + [anon_sym_SEMI_SEMI] = ACTIONS(3238), + [anon_sym_PIPE_AMP] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3240), + [anon_sym_GT] = ACTIONS(3240), + [anon_sym_GT_GT] = ACTIONS(3238), + [anon_sym_AMP_GT] = ACTIONS(3240), + [anon_sym_AMP_GT_GT] = ACTIONS(3238), + [anon_sym_LT_AMP] = ACTIONS(3238), + [anon_sym_GT_AMP] = ACTIONS(3238), + [anon_sym_LT_LT] = ACTIONS(3240), + [anon_sym_LT_LT_DASH] = ACTIONS(3238), + [anon_sym_LT_LT_LT] = ACTIONS(3238), + [sym__special_characters] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3238), + [anon_sym_DOLLAR] = ACTIONS(3240), + [sym_raw_string] = ACTIONS(3238), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3238), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3238), + [anon_sym_BQUOTE] = ACTIONS(3238), + [anon_sym_LT_LPAREN] = ACTIONS(3238), + [anon_sym_GT_LPAREN] = ACTIONS(3238), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3240), + [sym_word] = ACTIONS(3240), + [anon_sym_LF] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3240), }, [2711] = { - [sym_concatenation] = STATE(2809), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2809), - [sym_regex] = ACTIONS(6406), - [anon_sym_RBRACE] = ACTIONS(6408), - [anon_sym_EQ] = ACTIONS(6410), - [anon_sym_DASH] = ACTIONS(6410), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6410), - [anon_sym_COLON_QMARK] = ACTIONS(6410), - [anon_sym_COLON_DASH] = ACTIONS(6410), - [anon_sym_PERCENT] = ACTIONS(6410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(3921), + [sym__heredoc_body_beginning] = ACTIONS(3921), + [sym_file_descriptor] = ACTIONS(3921), + [sym__concat] = ACTIONS(3921), + [sym_variable_name] = ACTIONS(3921), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym_esac] = ACTIONS(3923), + [anon_sym_PIPE] = ACTIONS(3923), + [anon_sym_SEMI_SEMI] = ACTIONS(3921), + [anon_sym_PIPE_AMP] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_GT] = ACTIONS(3923), + [anon_sym_GT_GT] = ACTIONS(3921), + [anon_sym_AMP_GT] = ACTIONS(3923), + [anon_sym_AMP_GT_GT] = ACTIONS(3921), + [anon_sym_LT_AMP] = ACTIONS(3921), + [anon_sym_GT_AMP] = ACTIONS(3921), + [anon_sym_LT_LT] = ACTIONS(3923), + [anon_sym_LT_LT_DASH] = ACTIONS(3921), + [anon_sym_LT_LT_LT] = ACTIONS(3921), + [sym__special_characters] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_DOLLAR] = ACTIONS(3923), + [sym_raw_string] = ACTIONS(3921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3921), + [anon_sym_BQUOTE] = ACTIONS(3921), + [anon_sym_LT_LPAREN] = ACTIONS(3921), + [anon_sym_GT_LPAREN] = ACTIONS(3921), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3923), + [sym_word] = ACTIONS(3923), + [anon_sym_LF] = ACTIONS(3921), + [anon_sym_AMP] = ACTIONS(3923), }, [2712] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6408), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(3929), + [sym__heredoc_body_beginning] = ACTIONS(3929), + [sym_file_descriptor] = ACTIONS(3929), + [sym__concat] = ACTIONS(3929), + [sym_variable_name] = ACTIONS(3929), + [anon_sym_SEMI] = ACTIONS(3931), + [anon_sym_esac] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3931), + [anon_sym_SEMI_SEMI] = ACTIONS(3929), + [anon_sym_PIPE_AMP] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_GT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_AMP_GT] = ACTIONS(3931), + [anon_sym_AMP_GT_GT] = ACTIONS(3929), + [anon_sym_LT_AMP] = ACTIONS(3929), + [anon_sym_GT_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_LT_LT_DASH] = ACTIONS(3929), + [anon_sym_LT_LT_LT] = ACTIONS(3929), + [sym__special_characters] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_DOLLAR] = ACTIONS(3931), + [sym_raw_string] = ACTIONS(3929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3929), + [anon_sym_BQUOTE] = ACTIONS(3929), + [anon_sym_LT_LPAREN] = ACTIONS(3929), + [anon_sym_GT_LPAREN] = ACTIONS(3929), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3931), + [sym_word] = ACTIONS(3931), + [anon_sym_LF] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3931), }, [2713] = { - [sym__simple_heredoc_body] = ACTIONS(1919), - [sym__heredoc_body_beginning] = ACTIONS(1919), - [sym_file_descriptor] = ACTIONS(1919), - [sym__concat] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_esac] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_SEMI_SEMI] = ACTIONS(1919), - [anon_sym_PIPE_AMP] = ACTIONS(1919), - [anon_sym_AMP_AMP] = ACTIONS(1919), - [anon_sym_PIPE_PIPE] = ACTIONS(1919), - [anon_sym_LT] = ACTIONS(1921), - [anon_sym_GT] = ACTIONS(1921), - [anon_sym_GT_GT] = ACTIONS(1919), - [anon_sym_AMP_GT] = ACTIONS(1921), - [anon_sym_AMP_GT_GT] = ACTIONS(1919), - [anon_sym_LT_AMP] = ACTIONS(1919), - [anon_sym_GT_AMP] = ACTIONS(1919), - [anon_sym_LT_LT] = ACTIONS(1921), - [anon_sym_LT_LT_DASH] = ACTIONS(1919), - [anon_sym_LT_LT_LT] = ACTIONS(1919), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1921), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(6452), + [sym_comment] = ACTIONS(57), }, [2714] = { - [sym_concatenation] = STATE(2806), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2806), - [sym_regex] = ACTIONS(6414), - [anon_sym_RBRACE] = ACTIONS(6384), - [anon_sym_EQ] = ACTIONS(6400), - [anon_sym_DASH] = ACTIONS(6400), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6400), - [anon_sym_COLON_QMARK] = ACTIONS(6400), - [anon_sym_COLON_DASH] = ACTIONS(6400), - [anon_sym_PERCENT] = ACTIONS(6400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(6454), + [sym_comment] = ACTIONS(57), }, [2715] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6384), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(6454), + [sym_comment] = ACTIONS(57), }, [2716] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(6416), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_concatenation] = STATE(2801), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2801), + [anon_sym_RBRACE] = ACTIONS(6456), + [anon_sym_EQ] = ACTIONS(6458), + [anon_sym_DASH] = ACTIONS(6458), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6460), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6458), + [anon_sym_COLON_QMARK] = ACTIONS(6458), + [anon_sym_COLON_DASH] = ACTIONS(6458), + [anon_sym_PERCENT] = ACTIONS(6458), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2717] = { - [sym__simple_heredoc_body] = ACTIONS(1927), - [sym__heredoc_body_beginning] = ACTIONS(1927), - [sym_file_descriptor] = ACTIONS(1927), - [sym__concat] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_esac] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_SEMI_SEMI] = ACTIONS(1927), - [anon_sym_PIPE_AMP] = ACTIONS(1927), - [anon_sym_AMP_AMP] = ACTIONS(1927), - [anon_sym_PIPE_PIPE] = ACTIONS(1927), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_GT] = ACTIONS(1929), - [anon_sym_GT_GT] = ACTIONS(1927), - [anon_sym_AMP_GT] = ACTIONS(1929), - [anon_sym_AMP_GT_GT] = ACTIONS(1927), - [anon_sym_LT_AMP] = ACTIONS(1927), - [anon_sym_GT_AMP] = ACTIONS(1927), - [anon_sym_LT_LT] = ACTIONS(1929), - [anon_sym_LT_LT_DASH] = ACTIONS(1927), - [anon_sym_LT_LT_LT] = ACTIONS(1927), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1927), - [anon_sym_AMP] = ACTIONS(1929), + [sym__simple_heredoc_body] = ACTIONS(3985), + [sym__heredoc_body_beginning] = ACTIONS(3985), + [sym_file_descriptor] = ACTIONS(3985), + [sym__concat] = ACTIONS(3985), + [sym_variable_name] = ACTIONS(3985), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_esac] = ACTIONS(3987), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [anon_sym_PIPE_AMP] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_GT_GT] = ACTIONS(3985), + [anon_sym_AMP_GT] = ACTIONS(3987), + [anon_sym_AMP_GT_GT] = ACTIONS(3985), + [anon_sym_LT_AMP] = ACTIONS(3985), + [anon_sym_GT_AMP] = ACTIONS(3985), + [anon_sym_LT_LT] = ACTIONS(3987), + [anon_sym_LT_LT_DASH] = ACTIONS(3985), + [anon_sym_LT_LT_LT] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3987), + [sym_word] = ACTIONS(3987), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3987), }, [2718] = { - [anon_sym_SEMI] = ACTIONS(6418), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(6416), - [anon_sym_SEMI_SEMI] = ACTIONS(6420), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(6420), - [anon_sym_AMP] = ACTIONS(6418), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6456), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2719] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(6418), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(6416), - [anon_sym_SEMI_SEMI] = ACTIONS(6420), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(6420), - [anon_sym_AMP] = ACTIONS(6418), + [sym_concatenation] = STATE(2802), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2802), + [anon_sym_RBRACE] = ACTIONS(6454), + [anon_sym_EQ] = ACTIONS(6462), + [anon_sym_DASH] = ACTIONS(6462), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6464), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6462), + [anon_sym_COLON_QMARK] = ACTIONS(6462), + [anon_sym_COLON_DASH] = ACTIONS(6462), + [anon_sym_PERCENT] = ACTIONS(6462), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2720] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(6416), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6454), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2721] = { - [anon_sym_SEMI] = ACTIONS(6422), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(6424), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_BQUOTE] = ACTIONS(6416), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(6424), - [anon_sym_AMP] = ACTIONS(6422), + [sym__simple_heredoc_body] = ACTIONS(4030), + [sym__heredoc_body_beginning] = ACTIONS(4030), + [sym_file_descriptor] = ACTIONS(4030), + [sym__concat] = ACTIONS(4030), + [sym_variable_name] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_esac] = ACTIONS(4032), + [anon_sym_PIPE] = ACTIONS(4032), + [anon_sym_SEMI_SEMI] = ACTIONS(4030), + [anon_sym_PIPE_AMP] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4032), + [anon_sym_GT] = ACTIONS(4032), + [anon_sym_GT_GT] = ACTIONS(4030), + [anon_sym_AMP_GT] = ACTIONS(4032), + [anon_sym_AMP_GT_GT] = ACTIONS(4030), + [anon_sym_LT_AMP] = ACTIONS(4030), + [anon_sym_GT_AMP] = ACTIONS(4030), + [anon_sym_LT_LT] = ACTIONS(4032), + [anon_sym_LT_LT_DASH] = ACTIONS(4030), + [anon_sym_LT_LT_LT] = ACTIONS(4030), + [sym__special_characters] = ACTIONS(4030), + [anon_sym_DQUOTE] = ACTIONS(4030), + [anon_sym_DOLLAR] = ACTIONS(4032), + [sym_raw_string] = ACTIONS(4030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4030), + [anon_sym_BQUOTE] = ACTIONS(4030), + [anon_sym_LT_LPAREN] = ACTIONS(4030), + [anon_sym_GT_LPAREN] = ACTIONS(4030), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4032), + [sym_word] = ACTIONS(4032), + [anon_sym_LF] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4032), }, [2722] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(6422), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_SEMI_SEMI] = ACTIONS(6424), - [anon_sym_PIPE_AMP] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(6416), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(6424), - [anon_sym_AMP] = ACTIONS(6422), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6466), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2723] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(6426), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), + [sym__simple_heredoc_body] = ACTIONS(4064), + [sym__heredoc_body_beginning] = ACTIONS(4064), + [sym_file_descriptor] = ACTIONS(4064), + [sym__concat] = ACTIONS(4064), + [sym_variable_name] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4066), + [anon_sym_esac] = ACTIONS(4066), + [anon_sym_PIPE] = ACTIONS(4066), + [anon_sym_SEMI_SEMI] = ACTIONS(4064), + [anon_sym_PIPE_AMP] = ACTIONS(4064), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_PIPE_PIPE] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(4066), + [anon_sym_GT] = ACTIONS(4066), + [anon_sym_GT_GT] = ACTIONS(4064), + [anon_sym_AMP_GT] = ACTIONS(4066), + [anon_sym_AMP_GT_GT] = ACTIONS(4064), + [anon_sym_LT_AMP] = ACTIONS(4064), + [anon_sym_GT_AMP] = ACTIONS(4064), + [anon_sym_LT_LT] = ACTIONS(4066), + [anon_sym_LT_LT_DASH] = ACTIONS(4064), + [anon_sym_LT_LT_LT] = ACTIONS(4064), + [sym__special_characters] = ACTIONS(4064), + [anon_sym_DQUOTE] = ACTIONS(4064), + [anon_sym_DOLLAR] = ACTIONS(4066), + [sym_raw_string] = ACTIONS(4064), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4064), + [anon_sym_BQUOTE] = ACTIONS(4064), + [anon_sym_LT_LPAREN] = ACTIONS(4064), + [anon_sym_GT_LPAREN] = ACTIONS(4064), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4066), + [sym_word] = ACTIONS(4066), + [anon_sym_LF] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4066), }, [2724] = { - [sym__simple_heredoc_body] = ACTIONS(1959), - [sym__heredoc_body_beginning] = ACTIONS(1959), - [sym_file_descriptor] = ACTIONS(1959), - [sym__concat] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_esac] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_SEMI_SEMI] = ACTIONS(1959), - [anon_sym_PIPE_AMP] = ACTIONS(1959), - [anon_sym_AMP_AMP] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1959), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_GT] = ACTIONS(1961), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_AMP_GT] = ACTIONS(1961), - [anon_sym_AMP_GT_GT] = ACTIONS(1959), - [anon_sym_LT_AMP] = ACTIONS(1959), - [anon_sym_GT_AMP] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1961), - [anon_sym_LT_LT_DASH] = ACTIONS(1959), - [anon_sym_LT_LT_LT] = ACTIONS(1959), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1961), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(6468), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [2725] = { - [anon_sym_SEMI] = ACTIONS(6428), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(6426), - [anon_sym_SEMI_SEMI] = ACTIONS(6430), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(6430), - [anon_sym_AMP] = ACTIONS(6428), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(6468), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [2726] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(6428), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(6426), - [anon_sym_SEMI_SEMI] = ACTIONS(6430), - [anon_sym_PIPE_AMP] = ACTIONS(629), - [anon_sym_AMP_AMP] = ACTIONS(631), - [anon_sym_PIPE_PIPE] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(6430), - [anon_sym_AMP] = ACTIONS(6428), + [sym__simple_heredoc_body] = ACTIONS(4070), + [sym__heredoc_body_beginning] = ACTIONS(4070), + [sym_file_descriptor] = ACTIONS(4070), + [sym__concat] = ACTIONS(4070), + [sym_variable_name] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym_esac] = ACTIONS(4072), + [anon_sym_PIPE] = ACTIONS(4072), + [anon_sym_SEMI_SEMI] = ACTIONS(4070), + [anon_sym_PIPE_AMP] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_PIPE_PIPE] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4072), + [anon_sym_GT] = ACTIONS(4072), + [anon_sym_GT_GT] = ACTIONS(4070), + [anon_sym_AMP_GT] = ACTIONS(4072), + [anon_sym_AMP_GT_GT] = ACTIONS(4070), + [anon_sym_LT_AMP] = ACTIONS(4070), + [anon_sym_GT_AMP] = ACTIONS(4070), + [anon_sym_LT_LT] = ACTIONS(4072), + [anon_sym_LT_LT_DASH] = ACTIONS(4070), + [anon_sym_LT_LT_LT] = ACTIONS(4070), + [sym__special_characters] = ACTIONS(4070), + [anon_sym_DQUOTE] = ACTIONS(4070), + [anon_sym_DOLLAR] = ACTIONS(4072), + [sym_raw_string] = ACTIONS(4070), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4070), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4070), + [anon_sym_BQUOTE] = ACTIONS(4070), + [anon_sym_LT_LPAREN] = ACTIONS(4070), + [anon_sym_GT_LPAREN] = ACTIONS(4070), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4072), + [sym_word] = ACTIONS(4072), + [anon_sym_LF] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4072), }, [2727] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_SEMI_SEMI] = ACTIONS(943), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(5908), - [anon_sym_DQUOTE] = ACTIONS(5910), - [anon_sym_DOLLAR] = ACTIONS(5908), - [sym_raw_string] = ACTIONS(5910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5910), - [anon_sym_BQUOTE] = ACTIONS(5910), - [anon_sym_LT_LPAREN] = ACTIONS(5910), - [anon_sym_GT_LPAREN] = ACTIONS(5910), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5908), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(6470), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [2728] = { - [sym__special_characters] = ACTIONS(5910), - [anon_sym_DQUOTE] = ACTIONS(5910), - [anon_sym_DOLLAR] = ACTIONS(5908), - [sym_raw_string] = ACTIONS(5910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5910), - [anon_sym_BQUOTE] = ACTIONS(5910), - [anon_sym_LT_LPAREN] = ACTIONS(5910), - [anon_sym_GT_LPAREN] = ACTIONS(5910), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5910), + [sym__simple_heredoc_body] = ACTIONS(3921), + [sym__heredoc_body_beginning] = ACTIONS(3921), + [sym_file_descriptor] = ACTIONS(3921), + [sym__concat] = ACTIONS(3921), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym_esac] = ACTIONS(3923), + [anon_sym_PIPE] = ACTIONS(3923), + [anon_sym_SEMI_SEMI] = ACTIONS(3921), + [anon_sym_PIPE_AMP] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_GT] = ACTIONS(3923), + [anon_sym_GT_GT] = ACTIONS(3921), + [anon_sym_AMP_GT] = ACTIONS(3923), + [anon_sym_AMP_GT_GT] = ACTIONS(3921), + [anon_sym_LT_AMP] = ACTIONS(3921), + [anon_sym_GT_AMP] = ACTIONS(3921), + [anon_sym_LT_LT] = ACTIONS(3923), + [anon_sym_LT_LT_DASH] = ACTIONS(3921), + [anon_sym_LT_LT_LT] = ACTIONS(3921), + [sym__special_characters] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_DOLLAR] = ACTIONS(3923), + [sym_raw_string] = ACTIONS(3921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3921), + [anon_sym_BQUOTE] = ACTIONS(3921), + [anon_sym_LT_LPAREN] = ACTIONS(3921), + [anon_sym_GT_LPAREN] = ACTIONS(3921), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3923), + [sym_word] = ACTIONS(3923), + [anon_sym_LF] = ACTIONS(3921), + [anon_sym_AMP] = ACTIONS(3923), }, [2729] = { - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_SEMI_SEMI] = ACTIONS(6432), - [anon_sym_PIPE_AMP] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(535), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2081), + [sym__simple_heredoc_body] = ACTIONS(3929), + [sym__heredoc_body_beginning] = ACTIONS(3929), + [sym_file_descriptor] = ACTIONS(3929), + [sym__concat] = ACTIONS(3929), + [anon_sym_SEMI] = ACTIONS(3931), + [anon_sym_esac] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3931), + [anon_sym_SEMI_SEMI] = ACTIONS(3929), + [anon_sym_PIPE_AMP] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_GT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_AMP_GT] = ACTIONS(3931), + [anon_sym_AMP_GT_GT] = ACTIONS(3929), + [anon_sym_LT_AMP] = ACTIONS(3929), + [anon_sym_GT_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_LT_LT_DASH] = ACTIONS(3929), + [anon_sym_LT_LT_LT] = ACTIONS(3929), + [sym__special_characters] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_DOLLAR] = ACTIONS(3931), + [sym_raw_string] = ACTIONS(3929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3929), + [anon_sym_BQUOTE] = ACTIONS(3929), + [anon_sym_LT_LPAREN] = ACTIONS(3929), + [anon_sym_GT_LPAREN] = ACTIONS(3929), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3931), + [sym_word] = ACTIONS(3931), + [anon_sym_LF] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3931), }, [2730] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_SEMI_SEMI] = ACTIONS(6432), - [anon_sym_PIPE_AMP] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2081), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(6472), + [sym_comment] = ACTIONS(57), }, [2731] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_SEMI_SEMI] = ACTIONS(943), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(5918), - [anon_sym_DQUOTE] = ACTIONS(5920), - [anon_sym_DOLLAR] = ACTIONS(5918), - [sym_raw_string] = ACTIONS(5920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5920), - [anon_sym_BQUOTE] = ACTIONS(5920), - [anon_sym_LT_LPAREN] = ACTIONS(5920), - [anon_sym_GT_LPAREN] = ACTIONS(5920), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5918), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(6474), + [sym_comment] = ACTIONS(57), }, [2732] = { - [sym__special_characters] = ACTIONS(5920), - [anon_sym_DQUOTE] = ACTIONS(5920), - [anon_sym_DOLLAR] = ACTIONS(5918), - [sym_raw_string] = ACTIONS(5920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5920), - [anon_sym_BQUOTE] = ACTIONS(5920), - [anon_sym_LT_LPAREN] = ACTIONS(5920), - [anon_sym_GT_LPAREN] = ACTIONS(5920), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5920), + [anon_sym_RBRACE] = ACTIONS(6474), + [sym_comment] = ACTIONS(57), }, [2733] = { - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_SEMI_SEMI] = ACTIONS(6434), - [anon_sym_PIPE_AMP] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(535), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2081), - }, - [2734] = { - [sym_file_descriptor] = ACTIONS(367), - [sym_variable_name] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_SEMI_SEMI] = ACTIONS(6434), - [anon_sym_PIPE_AMP] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(535), - [anon_sym_PIPE_PIPE] = ACTIONS(535), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(369), - [anon_sym_GT_GT] = ACTIONS(367), - [anon_sym_AMP_GT] = ACTIONS(369), - [anon_sym_AMP_GT_GT] = ACTIONS(367), - [anon_sym_LT_AMP] = ACTIONS(367), - [anon_sym_GT_AMP] = ACTIONS(367), - [sym__special_characters] = ACTIONS(367), - [anon_sym_DQUOTE] = ACTIONS(367), - [anon_sym_DOLLAR] = ACTIONS(369), - [sym_raw_string] = ACTIONS(367), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(367), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(367), - [anon_sym_BQUOTE] = ACTIONS(367), - [anon_sym_LT_LPAREN] = ACTIONS(367), - [anon_sym_GT_LPAREN] = ACTIONS(367), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(369), - [anon_sym_LF] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2081), - }, - [2735] = { - [sym_file_descriptor] = ACTIONS(2959), - [sym__concat] = ACTIONS(2959), - [sym_variable_name] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_esac] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2961), - [anon_sym_SEMI_SEMI] = ACTIONS(2959), - [anon_sym_PIPE_AMP] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_GT] = ACTIONS(2961), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_AMP_GT] = ACTIONS(2961), - [anon_sym_AMP_GT_GT] = ACTIONS(2959), - [anon_sym_LT_AMP] = ACTIONS(2959), - [anon_sym_GT_AMP] = ACTIONS(2959), - [sym__special_characters] = ACTIONS(2959), - [anon_sym_DQUOTE] = ACTIONS(2959), - [anon_sym_DOLLAR] = ACTIONS(2961), - [sym_raw_string] = ACTIONS(2959), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2959), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2959), - [anon_sym_BQUOTE] = ACTIONS(2959), - [anon_sym_LT_LPAREN] = ACTIONS(2959), - [anon_sym_GT_LPAREN] = ACTIONS(2959), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2961), - [anon_sym_LF] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), - }, - [2736] = { - [sym_file_descriptor] = ACTIONS(2973), - [sym__concat] = ACTIONS(2973), - [sym_variable_name] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym_esac] = ACTIONS(2975), - [anon_sym_PIPE] = ACTIONS(2975), - [anon_sym_SEMI_SEMI] = ACTIONS(2973), - [anon_sym_PIPE_AMP] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_GT] = ACTIONS(2975), - [anon_sym_GT_GT] = ACTIONS(2973), - [anon_sym_AMP_GT] = ACTIONS(2975), - [anon_sym_AMP_GT_GT] = ACTIONS(2973), - [anon_sym_LT_AMP] = ACTIONS(2973), - [anon_sym_GT_AMP] = ACTIONS(2973), - [sym__special_characters] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [anon_sym_DOLLAR] = ACTIONS(2975), - [sym_raw_string] = ACTIONS(2973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2973), - [anon_sym_BQUOTE] = ACTIONS(2973), - [anon_sym_LT_LPAREN] = ACTIONS(2973), - [anon_sym_GT_LPAREN] = ACTIONS(2973), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(2975), - [anon_sym_LF] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2975), - }, - [2737] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(6436), - [sym_comment] = ACTIONS(55), - }, - [2738] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(6438), - [sym_comment] = ACTIONS(55), - }, - [2739] = { - [anon_sym_RBRACE] = ACTIONS(6438), - [sym_comment] = ACTIONS(55), - }, - [2740] = { - [sym_concatenation] = STATE(2822), - [sym_string] = STATE(2821), - [sym_simple_expansion] = STATE(2821), - [sym_string_expansion] = STATE(2821), - [sym_expansion] = STATE(2821), - [sym_command_substitution] = STATE(2821), - [sym_process_substitution] = STATE(2821), - [anon_sym_RBRACE] = ACTIONS(6438), - [sym__special_characters] = ACTIONS(6440), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(6442), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(6442), - }, - [2741] = { - [sym_file_descriptor] = ACTIONS(3009), - [sym__concat] = ACTIONS(3009), - [sym_variable_name] = ACTIONS(3009), - [anon_sym_SEMI] = ACTIONS(3011), - [anon_sym_esac] = ACTIONS(3011), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_SEMI_SEMI] = ACTIONS(3009), - [anon_sym_PIPE_AMP] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(3011), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_GT_GT] = ACTIONS(3009), - [anon_sym_AMP_GT] = ACTIONS(3011), - [anon_sym_AMP_GT_GT] = ACTIONS(3009), - [anon_sym_LT_AMP] = ACTIONS(3009), - [anon_sym_GT_AMP] = ACTIONS(3009), - [sym__special_characters] = ACTIONS(3009), - [anon_sym_DQUOTE] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3011), - [sym_raw_string] = ACTIONS(3009), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3009), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3009), - [anon_sym_BQUOTE] = ACTIONS(3009), - [anon_sym_LT_LPAREN] = ACTIONS(3009), - [anon_sym_GT_LPAREN] = ACTIONS(3009), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3011), - [anon_sym_LF] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3011), - }, - [2742] = { - [sym_concatenation] = STATE(2825), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2825), - [sym_regex] = ACTIONS(6444), - [anon_sym_RBRACE] = ACTIONS(6446), - [anon_sym_EQ] = ACTIONS(6448), - [anon_sym_DASH] = ACTIONS(6448), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6450), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6448), - [anon_sym_COLON_QMARK] = ACTIONS(6448), - [anon_sym_COLON_DASH] = ACTIONS(6448), - [anon_sym_PERCENT] = ACTIONS(6448), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2743] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6446), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2744] = { - [sym_concatenation] = STATE(2827), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2827), - [sym_regex] = ACTIONS(6452), - [anon_sym_RBRACE] = ACTIONS(6438), - [anon_sym_EQ] = ACTIONS(6454), - [anon_sym_DASH] = ACTIONS(6454), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6456), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6454), - [anon_sym_COLON_QMARK] = ACTIONS(6454), - [anon_sym_COLON_DASH] = ACTIONS(6454), - [anon_sym_PERCENT] = ACTIONS(6454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2745] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6438), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2746] = { - [sym_concatenation] = STATE(2829), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2829), - [anon_sym_RBRACE] = ACTIONS(6458), - [anon_sym_EQ] = ACTIONS(6460), - [anon_sym_DASH] = ACTIONS(6460), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6462), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6460), - [anon_sym_COLON_QMARK] = ACTIONS(6460), - [anon_sym_COLON_DASH] = ACTIONS(6460), - [anon_sym_PERCENT] = ACTIONS(6460), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2747] = { - [sym_file_descriptor] = ACTIONS(3065), - [sym__concat] = ACTIONS(3065), - [sym_variable_name] = ACTIONS(3065), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym_esac] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_SEMI_SEMI] = ACTIONS(3065), - [anon_sym_PIPE_AMP] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_PIPE_PIPE] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_GT_GT] = ACTIONS(3065), - [anon_sym_AMP_GT] = ACTIONS(3067), - [anon_sym_AMP_GT_GT] = ACTIONS(3065), - [anon_sym_LT_AMP] = ACTIONS(3065), - [anon_sym_GT_AMP] = ACTIONS(3065), - [sym__special_characters] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(3065), - [anon_sym_DOLLAR] = ACTIONS(3067), - [sym_raw_string] = ACTIONS(3065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3065), - [anon_sym_BQUOTE] = ACTIONS(3065), - [anon_sym_LT_LPAREN] = ACTIONS(3065), - [anon_sym_GT_LPAREN] = ACTIONS(3065), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3067), - [anon_sym_LF] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), - }, - [2748] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6458), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2749] = { - [sym_concatenation] = STATE(2827), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2827), - [anon_sym_RBRACE] = ACTIONS(6438), - [anon_sym_EQ] = ACTIONS(6454), - [anon_sym_DASH] = ACTIONS(6454), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6456), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6454), - [anon_sym_COLON_QMARK] = ACTIONS(6454), - [anon_sym_COLON_DASH] = ACTIONS(6454), - [anon_sym_PERCENT] = ACTIONS(6454), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2750] = { - [sym_file_descriptor] = ACTIONS(3120), - [sym__concat] = ACTIONS(3120), - [sym_variable_name] = ACTIONS(3120), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_esac] = ACTIONS(3122), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_SEMI_SEMI] = ACTIONS(3120), - [anon_sym_PIPE_AMP] = ACTIONS(3120), - [anon_sym_AMP_AMP] = ACTIONS(3120), - [anon_sym_PIPE_PIPE] = ACTIONS(3120), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_GT] = ACTIONS(3122), - [anon_sym_GT_GT] = ACTIONS(3120), - [anon_sym_AMP_GT] = ACTIONS(3122), - [anon_sym_AMP_GT_GT] = ACTIONS(3120), - [anon_sym_LT_AMP] = ACTIONS(3120), - [anon_sym_GT_AMP] = ACTIONS(3120), - [sym__special_characters] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3122), - [sym_raw_string] = ACTIONS(3120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), - [anon_sym_BQUOTE] = ACTIONS(3120), - [anon_sym_LT_LPAREN] = ACTIONS(3120), - [anon_sym_GT_LPAREN] = ACTIONS(3120), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3122), - [anon_sym_LF] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3122), - }, - [2751] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(6464), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), - }, - [2752] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(6464), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), - }, - [2753] = { - [sym_file_descriptor] = ACTIONS(3158), - [sym__concat] = ACTIONS(3158), - [sym_variable_name] = ACTIONS(3158), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_esac] = ACTIONS(3160), - [anon_sym_PIPE] = ACTIONS(3160), - [anon_sym_SEMI_SEMI] = ACTIONS(3158), - [anon_sym_PIPE_AMP] = ACTIONS(3158), - [anon_sym_AMP_AMP] = ACTIONS(3158), - [anon_sym_PIPE_PIPE] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3160), - [anon_sym_GT] = ACTIONS(3160), - [anon_sym_GT_GT] = ACTIONS(3158), - [anon_sym_AMP_GT] = ACTIONS(3160), - [anon_sym_AMP_GT_GT] = ACTIONS(3158), - [anon_sym_LT_AMP] = ACTIONS(3158), - [anon_sym_GT_AMP] = ACTIONS(3158), - [sym__special_characters] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [anon_sym_DOLLAR] = ACTIONS(3160), - [sym_raw_string] = ACTIONS(3158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3158), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3158), - [anon_sym_BQUOTE] = ACTIONS(3158), - [anon_sym_LT_LPAREN] = ACTIONS(3158), - [anon_sym_GT_LPAREN] = ACTIONS(3158), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3160), - [anon_sym_LF] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), - }, - [2754] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(6466), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), - }, - [2755] = { - [aux_sym_concatenation_repeat1] = STATE(2757), - [sym_file_descriptor] = ACTIONS(1088), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_esac] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1090), - [anon_sym_SEMI_SEMI] = ACTIONS(1088), - [anon_sym_PIPE_AMP] = ACTIONS(1088), - [anon_sym_AMP_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1088), - [anon_sym_LT] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(1090), - [anon_sym_GT_GT] = ACTIONS(1088), - [anon_sym_AMP_GT] = ACTIONS(1090), - [anon_sym_AMP_GT_GT] = ACTIONS(1088), - [anon_sym_LT_AMP] = ACTIONS(1088), - [anon_sym_GT_AMP] = ACTIONS(1088), - [anon_sym_LT_LT] = ACTIONS(1090), - [anon_sym_LT_LT_DASH] = ACTIONS(1088), - [anon_sym_LT_LT_LT] = ACTIONS(1088), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), - }, - [2756] = { - [aux_sym_concatenation_repeat1] = STATE(2757), - [sym_file_descriptor] = ACTIONS(1092), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_esac] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_SEMI_SEMI] = ACTIONS(1092), - [anon_sym_PIPE_AMP] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [anon_sym_LT] = ACTIONS(1094), - [anon_sym_GT] = ACTIONS(1094), - [anon_sym_GT_GT] = ACTIONS(1092), - [anon_sym_AMP_GT] = ACTIONS(1094), - [anon_sym_AMP_GT_GT] = ACTIONS(1092), - [anon_sym_LT_AMP] = ACTIONS(1092), - [anon_sym_GT_AMP] = ACTIONS(1092), - [anon_sym_LT_LT] = ACTIONS(1094), - [anon_sym_LT_LT_DASH] = ACTIONS(1092), - [anon_sym_LT_LT_LT] = ACTIONS(1092), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1092), - [anon_sym_AMP] = ACTIONS(1094), - }, - [2757] = { - [aux_sym_concatenation_repeat1] = STATE(2832), - [sym_file_descriptor] = ACTIONS(807), - [sym__concat] = ACTIONS(3579), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_esac] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(807), - [anon_sym_AMP_GT] = ACTIONS(809), - [anon_sym_AMP_GT_GT] = ACTIONS(807), - [anon_sym_LT_AMP] = ACTIONS(807), - [anon_sym_GT_AMP] = ACTIONS(807), - [anon_sym_LT_LT] = ACTIONS(809), - [anon_sym_LT_LT_DASH] = ACTIONS(807), - [anon_sym_LT_LT_LT] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), - }, - [2758] = { - [aux_sym_concatenation_repeat1] = STATE(2760), - [sym__concat] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_esac] = ACTIONS(1088), - [anon_sym_PIPE] = ACTIONS(1090), - [anon_sym_SEMI_SEMI] = ACTIONS(1088), - [anon_sym_PIPE_AMP] = ACTIONS(1088), - [anon_sym_AMP_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1088), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1090), - }, - [2759] = { - [aux_sym_concatenation_repeat1] = STATE(2760), - [sym__concat] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(1094), - [anon_sym_esac] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_SEMI_SEMI] = ACTIONS(1092), - [anon_sym_PIPE_AMP] = ACTIONS(1092), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE_PIPE] = ACTIONS(1092), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1092), - [anon_sym_AMP] = ACTIONS(1094), - }, - [2760] = { - [aux_sym_concatenation_repeat1] = STATE(2833), - [sym__concat] = ACTIONS(1160), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_esac] = ACTIONS(807), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_SEMI_SEMI] = ACTIONS(807), - [anon_sym_PIPE_AMP] = ACTIONS(807), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(807), - [anon_sym_AMP] = ACTIONS(809), - }, - [2761] = { - [sym_variable_name] = ACTIONS(3265), - [anon_sym_SEMI] = ACTIONS(3267), - [anon_sym_esac] = ACTIONS(3267), - [anon_sym_PIPE] = ACTIONS(3267), - [anon_sym_SEMI_SEMI] = ACTIONS(3265), - [anon_sym_PIPE_AMP] = ACTIONS(3265), - [anon_sym_AMP_AMP] = ACTIONS(3265), - [anon_sym_PIPE_PIPE] = ACTIONS(3265), - [sym__special_characters] = ACTIONS(3265), - [anon_sym_DQUOTE] = ACTIONS(3265), - [anon_sym_DOLLAR] = ACTIONS(3267), - [sym_raw_string] = ACTIONS(3265), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3265), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3265), - [anon_sym_BQUOTE] = ACTIONS(3265), - [anon_sym_LT_LPAREN] = ACTIONS(3265), - [anon_sym_GT_LPAREN] = ACTIONS(3265), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3267), - [sym_word] = ACTIONS(3267), - [anon_sym_LF] = ACTIONS(3265), - [anon_sym_AMP] = ACTIONS(3267), - }, - [2762] = { - [sym__concat] = ACTIONS(3934), - [sym_variable_name] = ACTIONS(3934), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym_esac] = ACTIONS(3936), - [anon_sym_PIPE] = ACTIONS(3936), - [anon_sym_SEMI_SEMI] = ACTIONS(3934), - [anon_sym_PIPE_AMP] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [sym__special_characters] = ACTIONS(3934), - [anon_sym_DQUOTE] = ACTIONS(3934), - [anon_sym_DOLLAR] = ACTIONS(3936), - [sym_raw_string] = ACTIONS(3934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), - [anon_sym_BQUOTE] = ACTIONS(3934), - [anon_sym_LT_LPAREN] = ACTIONS(3934), - [anon_sym_GT_LPAREN] = ACTIONS(3934), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3936), - [sym_word] = ACTIONS(3936), - [anon_sym_LF] = ACTIONS(3934), - [anon_sym_AMP] = ACTIONS(3936), - }, - [2763] = { - [sym__concat] = ACTIONS(3942), - [sym_variable_name] = ACTIONS(3942), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym_esac] = ACTIONS(3944), - [anon_sym_PIPE] = ACTIONS(3944), - [anon_sym_SEMI_SEMI] = ACTIONS(3942), - [anon_sym_PIPE_AMP] = ACTIONS(3942), - [anon_sym_AMP_AMP] = ACTIONS(3942), - [anon_sym_PIPE_PIPE] = ACTIONS(3942), - [sym__special_characters] = ACTIONS(3942), - [anon_sym_DQUOTE] = ACTIONS(3942), - [anon_sym_DOLLAR] = ACTIONS(3944), - [sym_raw_string] = ACTIONS(3942), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), - [anon_sym_BQUOTE] = ACTIONS(3942), - [anon_sym_LT_LPAREN] = ACTIONS(3942), - [anon_sym_GT_LPAREN] = ACTIONS(3942), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3944), - [sym_word] = ACTIONS(3944), - [anon_sym_LF] = ACTIONS(3942), - [anon_sym_AMP] = ACTIONS(3944), - }, - [2764] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(6468), - [sym_comment] = ACTIONS(55), - }, - [2765] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(6470), - [sym_comment] = ACTIONS(55), - }, - [2766] = { - [anon_sym_RBRACE] = ACTIONS(6470), - [sym_comment] = ACTIONS(55), - }, - [2767] = { - [sym_concatenation] = STATE(2837), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2837), - [anon_sym_RBRACE] = ACTIONS(6472), - [anon_sym_EQ] = ACTIONS(6474), - [anon_sym_DASH] = ACTIONS(6474), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6476), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6474), - [anon_sym_COLON_QMARK] = ACTIONS(6474), - [anon_sym_COLON_DASH] = ACTIONS(6474), - [anon_sym_PERCENT] = ACTIONS(6474), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2768] = { - [sym__concat] = ACTIONS(3998), - [sym_variable_name] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym_esac] = ACTIONS(4000), - [anon_sym_PIPE] = ACTIONS(4000), - [anon_sym_SEMI_SEMI] = ACTIONS(3998), - [anon_sym_PIPE_AMP] = ACTIONS(3998), - [anon_sym_AMP_AMP] = ACTIONS(3998), - [anon_sym_PIPE_PIPE] = ACTIONS(3998), - [sym__special_characters] = ACTIONS(3998), - [anon_sym_DQUOTE] = ACTIONS(3998), - [anon_sym_DOLLAR] = ACTIONS(4000), - [sym_raw_string] = ACTIONS(3998), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), - [anon_sym_BQUOTE] = ACTIONS(3998), - [anon_sym_LT_LPAREN] = ACTIONS(3998), - [anon_sym_GT_LPAREN] = ACTIONS(3998), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4000), - [sym_word] = ACTIONS(4000), - [anon_sym_LF] = ACTIONS(3998), - [anon_sym_AMP] = ACTIONS(4000), - }, - [2769] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6472), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2770] = { - [sym_concatenation] = STATE(2838), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2838), - [anon_sym_RBRACE] = ACTIONS(6470), + [sym_concatenation] = STATE(2809), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2809), + [anon_sym_RBRACE] = ACTIONS(6476), [anon_sym_EQ] = ACTIONS(6478), [anon_sym_DASH] = ACTIONS(6478), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), [anon_sym_POUND] = ACTIONS(6480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), [anon_sym_COLON] = ACTIONS(6478), [anon_sym_COLON_QMARK] = ACTIONS(6478), [anon_sym_COLON_DASH] = ACTIONS(6478), [anon_sym_PERCENT] = ACTIONS(6478), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2734] = { + [sym__simple_heredoc_body] = ACTIONS(3985), + [sym__heredoc_body_beginning] = ACTIONS(3985), + [sym_file_descriptor] = ACTIONS(3985), + [sym__concat] = ACTIONS(3985), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_esac] = ACTIONS(3987), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [anon_sym_PIPE_AMP] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_GT_GT] = ACTIONS(3985), + [anon_sym_AMP_GT] = ACTIONS(3987), + [anon_sym_AMP_GT_GT] = ACTIONS(3985), + [anon_sym_LT_AMP] = ACTIONS(3985), + [anon_sym_GT_AMP] = ACTIONS(3985), + [anon_sym_LT_LT] = ACTIONS(3987), + [anon_sym_LT_LT_DASH] = ACTIONS(3985), + [anon_sym_LT_LT_LT] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3987), + [sym_word] = ACTIONS(3987), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3987), + }, + [2735] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6476), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2736] = { + [sym_concatenation] = STATE(2810), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2810), + [anon_sym_RBRACE] = ACTIONS(6474), + [anon_sym_EQ] = ACTIONS(6482), + [anon_sym_DASH] = ACTIONS(6482), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6482), + [anon_sym_COLON_QMARK] = ACTIONS(6482), + [anon_sym_COLON_DASH] = ACTIONS(6482), + [anon_sym_PERCENT] = ACTIONS(6482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2737] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6474), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2738] = { + [sym__simple_heredoc_body] = ACTIONS(4030), + [sym__heredoc_body_beginning] = ACTIONS(4030), + [sym_file_descriptor] = ACTIONS(4030), + [sym__concat] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_esac] = ACTIONS(4032), + [anon_sym_PIPE] = ACTIONS(4032), + [anon_sym_SEMI_SEMI] = ACTIONS(4030), + [anon_sym_PIPE_AMP] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4032), + [anon_sym_GT] = ACTIONS(4032), + [anon_sym_GT_GT] = ACTIONS(4030), + [anon_sym_AMP_GT] = ACTIONS(4032), + [anon_sym_AMP_GT_GT] = ACTIONS(4030), + [anon_sym_LT_AMP] = ACTIONS(4030), + [anon_sym_GT_AMP] = ACTIONS(4030), + [anon_sym_LT_LT] = ACTIONS(4032), + [anon_sym_LT_LT_DASH] = ACTIONS(4030), + [anon_sym_LT_LT_LT] = ACTIONS(4030), + [sym__special_characters] = ACTIONS(4030), + [anon_sym_DQUOTE] = ACTIONS(4030), + [anon_sym_DOLLAR] = ACTIONS(4032), + [sym_raw_string] = ACTIONS(4030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4030), + [anon_sym_BQUOTE] = ACTIONS(4030), + [anon_sym_LT_LPAREN] = ACTIONS(4030), + [anon_sym_GT_LPAREN] = ACTIONS(4030), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4032), + [sym_word] = ACTIONS(4032), + [anon_sym_LF] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4032), + }, + [2739] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6486), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2740] = { + [sym__simple_heredoc_body] = ACTIONS(4064), + [sym__heredoc_body_beginning] = ACTIONS(4064), + [sym_file_descriptor] = ACTIONS(4064), + [sym__concat] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4066), + [anon_sym_esac] = ACTIONS(4066), + [anon_sym_PIPE] = ACTIONS(4066), + [anon_sym_SEMI_SEMI] = ACTIONS(4064), + [anon_sym_PIPE_AMP] = ACTIONS(4064), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_PIPE_PIPE] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(4066), + [anon_sym_GT] = ACTIONS(4066), + [anon_sym_GT_GT] = ACTIONS(4064), + [anon_sym_AMP_GT] = ACTIONS(4066), + [anon_sym_AMP_GT_GT] = ACTIONS(4064), + [anon_sym_LT_AMP] = ACTIONS(4064), + [anon_sym_GT_AMP] = ACTIONS(4064), + [anon_sym_LT_LT] = ACTIONS(4066), + [anon_sym_LT_LT_DASH] = ACTIONS(4064), + [anon_sym_LT_LT_LT] = ACTIONS(4064), + [sym__special_characters] = ACTIONS(4064), + [anon_sym_DQUOTE] = ACTIONS(4064), + [anon_sym_DOLLAR] = ACTIONS(4066), + [sym_raw_string] = ACTIONS(4064), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4064), + [anon_sym_BQUOTE] = ACTIONS(4064), + [anon_sym_LT_LPAREN] = ACTIONS(4064), + [anon_sym_GT_LPAREN] = ACTIONS(4064), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4066), + [sym_word] = ACTIONS(4066), + [anon_sym_LF] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4066), + }, + [2741] = { + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(6488), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), + }, + [2742] = { + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(6488), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), + }, + [2743] = { + [sym__simple_heredoc_body] = ACTIONS(4070), + [sym__heredoc_body_beginning] = ACTIONS(4070), + [sym_file_descriptor] = ACTIONS(4070), + [sym__concat] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym_esac] = ACTIONS(4072), + [anon_sym_PIPE] = ACTIONS(4072), + [anon_sym_SEMI_SEMI] = ACTIONS(4070), + [anon_sym_PIPE_AMP] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_PIPE_PIPE] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4072), + [anon_sym_GT] = ACTIONS(4072), + [anon_sym_GT_GT] = ACTIONS(4070), + [anon_sym_AMP_GT] = ACTIONS(4072), + [anon_sym_AMP_GT_GT] = ACTIONS(4070), + [anon_sym_LT_AMP] = ACTIONS(4070), + [anon_sym_GT_AMP] = ACTIONS(4070), + [anon_sym_LT_LT] = ACTIONS(4072), + [anon_sym_LT_LT_DASH] = ACTIONS(4070), + [anon_sym_LT_LT_LT] = ACTIONS(4070), + [sym__special_characters] = ACTIONS(4070), + [anon_sym_DQUOTE] = ACTIONS(4070), + [anon_sym_DOLLAR] = ACTIONS(4072), + [sym_raw_string] = ACTIONS(4070), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4070), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4070), + [anon_sym_BQUOTE] = ACTIONS(4070), + [anon_sym_LT_LPAREN] = ACTIONS(4070), + [anon_sym_GT_LPAREN] = ACTIONS(4070), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4072), + [sym_word] = ACTIONS(4072), + [anon_sym_LF] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4072), + }, + [2744] = { + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(6490), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), + }, + [2745] = { + [sym__simple_heredoc_body] = ACTIONS(4687), + [sym__heredoc_body_beginning] = ACTIONS(4687), + [sym_file_descriptor] = ACTIONS(4687), + [sym__concat] = ACTIONS(4687), + [anon_sym_SEMI] = ACTIONS(4689), + [anon_sym_esac] = ACTIONS(4689), + [anon_sym_PIPE] = ACTIONS(4689), + [anon_sym_SEMI_SEMI] = ACTIONS(4687), + [anon_sym_PIPE_AMP] = ACTIONS(4687), + [anon_sym_AMP_AMP] = ACTIONS(4687), + [anon_sym_PIPE_PIPE] = ACTIONS(4687), + [anon_sym_EQ_TILDE] = ACTIONS(4689), + [anon_sym_EQ_EQ] = ACTIONS(4689), + [anon_sym_LT] = ACTIONS(4689), + [anon_sym_GT] = ACTIONS(4689), + [anon_sym_GT_GT] = ACTIONS(4687), + [anon_sym_AMP_GT] = ACTIONS(4689), + [anon_sym_AMP_GT_GT] = ACTIONS(4687), + [anon_sym_LT_AMP] = ACTIONS(4687), + [anon_sym_GT_AMP] = ACTIONS(4687), + [anon_sym_LT_LT] = ACTIONS(4689), + [anon_sym_LT_LT_DASH] = ACTIONS(4687), + [anon_sym_LT_LT_LT] = ACTIONS(4687), + [sym__special_characters] = ACTIONS(4687), + [anon_sym_DQUOTE] = ACTIONS(4687), + [anon_sym_DOLLAR] = ACTIONS(4689), + [sym_raw_string] = ACTIONS(4687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4687), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4687), + [anon_sym_BQUOTE] = ACTIONS(4687), + [anon_sym_LT_LPAREN] = ACTIONS(4687), + [anon_sym_GT_LPAREN] = ACTIONS(4687), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4689), + [anon_sym_LF] = ACTIONS(4687), + [anon_sym_AMP] = ACTIONS(4689), + }, + [2746] = { + [sym__simple_heredoc_body] = ACTIONS(4691), + [sym__heredoc_body_beginning] = ACTIONS(4691), + [sym_file_descriptor] = ACTIONS(4691), + [sym__concat] = ACTIONS(4691), + [anon_sym_SEMI] = ACTIONS(4693), + [anon_sym_esac] = ACTIONS(4693), + [anon_sym_PIPE] = ACTIONS(4693), + [anon_sym_SEMI_SEMI] = ACTIONS(4691), + [anon_sym_PIPE_AMP] = ACTIONS(4691), + [anon_sym_AMP_AMP] = ACTIONS(4691), + [anon_sym_PIPE_PIPE] = ACTIONS(4691), + [anon_sym_EQ_TILDE] = ACTIONS(4693), + [anon_sym_EQ_EQ] = ACTIONS(4693), + [anon_sym_LT] = ACTIONS(4693), + [anon_sym_GT] = ACTIONS(4693), + [anon_sym_GT_GT] = ACTIONS(4691), + [anon_sym_AMP_GT] = ACTIONS(4693), + [anon_sym_AMP_GT_GT] = ACTIONS(4691), + [anon_sym_LT_AMP] = ACTIONS(4691), + [anon_sym_GT_AMP] = ACTIONS(4691), + [anon_sym_LT_LT] = ACTIONS(4693), + [anon_sym_LT_LT_DASH] = ACTIONS(4691), + [anon_sym_LT_LT_LT] = ACTIONS(4691), + [sym__special_characters] = ACTIONS(4691), + [anon_sym_DQUOTE] = ACTIONS(4691), + [anon_sym_DOLLAR] = ACTIONS(4693), + [sym_raw_string] = ACTIONS(4691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4691), + [anon_sym_BQUOTE] = ACTIONS(4691), + [anon_sym_LT_LPAREN] = ACTIONS(4691), + [anon_sym_GT_LPAREN] = ACTIONS(4691), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4693), + [anon_sym_LF] = ACTIONS(4691), + [anon_sym_AMP] = ACTIONS(4693), + }, + [2747] = { + [sym__simple_heredoc_body] = ACTIONS(4695), + [sym__heredoc_body_beginning] = ACTIONS(4695), + [sym_file_descriptor] = ACTIONS(4695), + [sym__concat] = ACTIONS(4695), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym_esac] = ACTIONS(4697), + [anon_sym_PIPE] = ACTIONS(4697), + [anon_sym_SEMI_SEMI] = ACTIONS(4695), + [anon_sym_PIPE_AMP] = ACTIONS(4695), + [anon_sym_AMP_AMP] = ACTIONS(4695), + [anon_sym_PIPE_PIPE] = ACTIONS(4695), + [anon_sym_EQ_TILDE] = ACTIONS(4697), + [anon_sym_EQ_EQ] = ACTIONS(4697), + [anon_sym_LT] = ACTIONS(4697), + [anon_sym_GT] = ACTIONS(4697), + [anon_sym_GT_GT] = ACTIONS(4695), + [anon_sym_AMP_GT] = ACTIONS(4697), + [anon_sym_AMP_GT_GT] = ACTIONS(4695), + [anon_sym_LT_AMP] = ACTIONS(4695), + [anon_sym_GT_AMP] = ACTIONS(4695), + [anon_sym_LT_LT] = ACTIONS(4697), + [anon_sym_LT_LT_DASH] = ACTIONS(4695), + [anon_sym_LT_LT_LT] = ACTIONS(4695), + [sym__special_characters] = ACTIONS(4695), + [anon_sym_DQUOTE] = ACTIONS(4695), + [anon_sym_DOLLAR] = ACTIONS(4697), + [sym_raw_string] = ACTIONS(4695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4695), + [anon_sym_BQUOTE] = ACTIONS(4695), + [anon_sym_LT_LPAREN] = ACTIONS(4695), + [anon_sym_GT_LPAREN] = ACTIONS(4695), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4697), + [anon_sym_LF] = ACTIONS(4695), + [anon_sym_AMP] = ACTIONS(4697), + }, + [2748] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6492), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2749] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6494), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2750] = { + [sym__simple_heredoc_body] = ACTIONS(4731), + [sym__heredoc_body_beginning] = ACTIONS(4731), + [sym_file_descriptor] = ACTIONS(4731), + [sym__concat] = ACTIONS(4731), + [anon_sym_SEMI] = ACTIONS(4733), + [anon_sym_esac] = ACTIONS(4733), + [anon_sym_PIPE] = ACTIONS(4733), + [anon_sym_SEMI_SEMI] = ACTIONS(4731), + [anon_sym_PIPE_AMP] = ACTIONS(4731), + [anon_sym_AMP_AMP] = ACTIONS(4731), + [anon_sym_PIPE_PIPE] = ACTIONS(4731), + [anon_sym_EQ_TILDE] = ACTIONS(4733), + [anon_sym_EQ_EQ] = ACTIONS(4733), + [anon_sym_LT] = ACTIONS(4733), + [anon_sym_GT] = ACTIONS(4733), + [anon_sym_GT_GT] = ACTIONS(4731), + [anon_sym_AMP_GT] = ACTIONS(4733), + [anon_sym_AMP_GT_GT] = ACTIONS(4731), + [anon_sym_LT_AMP] = ACTIONS(4731), + [anon_sym_GT_AMP] = ACTIONS(4731), + [anon_sym_LT_LT] = ACTIONS(4733), + [anon_sym_LT_LT_DASH] = ACTIONS(4731), + [anon_sym_LT_LT_LT] = ACTIONS(4731), + [sym__special_characters] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4731), + [anon_sym_DOLLAR] = ACTIONS(4733), + [sym_raw_string] = ACTIONS(4731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4731), + [anon_sym_BQUOTE] = ACTIONS(4731), + [anon_sym_LT_LPAREN] = ACTIONS(4731), + [anon_sym_GT_LPAREN] = ACTIONS(4731), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4733), + [anon_sym_LF] = ACTIONS(4731), + [anon_sym_AMP] = ACTIONS(4733), + }, + [2751] = { + [sym__simple_heredoc_body] = ACTIONS(4751), + [sym__heredoc_body_beginning] = ACTIONS(4751), + [sym_file_descriptor] = ACTIONS(4751), + [sym__concat] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4753), + [anon_sym_esac] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4753), + [anon_sym_SEMI_SEMI] = ACTIONS(4751), + [anon_sym_PIPE_AMP] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [anon_sym_EQ_TILDE] = ACTIONS(4753), + [anon_sym_EQ_EQ] = ACTIONS(4753), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_GT_GT] = ACTIONS(4751), + [anon_sym_AMP_GT] = ACTIONS(4753), + [anon_sym_AMP_GT_GT] = ACTIONS(4751), + [anon_sym_LT_AMP] = ACTIONS(4751), + [anon_sym_GT_AMP] = ACTIONS(4751), + [anon_sym_LT_LT] = ACTIONS(4753), + [anon_sym_LT_LT_DASH] = ACTIONS(4751), + [anon_sym_LT_LT_LT] = ACTIONS(4751), + [sym__special_characters] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4753), + [sym_raw_string] = ACTIONS(4751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4751), + [anon_sym_BQUOTE] = ACTIONS(4751), + [anon_sym_LT_LPAREN] = ACTIONS(4751), + [anon_sym_GT_LPAREN] = ACTIONS(4751), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4753), + [anon_sym_LF] = ACTIONS(4751), + [anon_sym_AMP] = ACTIONS(4753), + }, + [2752] = { + [sym__simple_heredoc_body] = ACTIONS(4755), + [sym__heredoc_body_beginning] = ACTIONS(4755), + [sym_file_descriptor] = ACTIONS(4755), + [sym__concat] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4757), + [anon_sym_esac] = ACTIONS(4757), + [anon_sym_PIPE] = ACTIONS(4757), + [anon_sym_SEMI_SEMI] = ACTIONS(4755), + [anon_sym_PIPE_AMP] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4755), + [anon_sym_PIPE_PIPE] = ACTIONS(4755), + [anon_sym_EQ_TILDE] = ACTIONS(4757), + [anon_sym_EQ_EQ] = ACTIONS(4757), + [anon_sym_LT] = ACTIONS(4757), + [anon_sym_GT] = ACTIONS(4757), + [anon_sym_GT_GT] = ACTIONS(4755), + [anon_sym_AMP_GT] = ACTIONS(4757), + [anon_sym_AMP_GT_GT] = ACTIONS(4755), + [anon_sym_LT_AMP] = ACTIONS(4755), + [anon_sym_GT_AMP] = ACTIONS(4755), + [anon_sym_LT_LT] = ACTIONS(4757), + [anon_sym_LT_LT_DASH] = ACTIONS(4755), + [anon_sym_LT_LT_LT] = ACTIONS(4755), + [sym__special_characters] = ACTIONS(4755), + [anon_sym_DQUOTE] = ACTIONS(4755), + [anon_sym_DOLLAR] = ACTIONS(4757), + [sym_raw_string] = ACTIONS(4755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4755), + [anon_sym_BQUOTE] = ACTIONS(4755), + [anon_sym_LT_LPAREN] = ACTIONS(4755), + [anon_sym_GT_LPAREN] = ACTIONS(4755), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4757), + [anon_sym_LF] = ACTIONS(4755), + [anon_sym_AMP] = ACTIONS(4757), + }, + [2753] = { + [sym__simple_heredoc_body] = ACTIONS(2930), + [sym__heredoc_body_beginning] = ACTIONS(2930), + [sym_file_descriptor] = ACTIONS(2930), + [sym__concat] = ACTIONS(2930), + [anon_sym_SEMI] = ACTIONS(2932), + [anon_sym_esac] = ACTIONS(2930), + [anon_sym_PIPE] = ACTIONS(2932), + [anon_sym_SEMI_SEMI] = ACTIONS(2930), + [anon_sym_PIPE_AMP] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_PIPE_PIPE] = ACTIONS(2930), + [anon_sym_LT] = ACTIONS(2932), + [anon_sym_GT] = ACTIONS(2932), + [anon_sym_GT_GT] = ACTIONS(2930), + [anon_sym_AMP_GT] = ACTIONS(2932), + [anon_sym_AMP_GT_GT] = ACTIONS(2930), + [anon_sym_LT_AMP] = ACTIONS(2930), + [anon_sym_GT_AMP] = ACTIONS(2930), + [anon_sym_LT_LT] = ACTIONS(2932), + [anon_sym_LT_LT_DASH] = ACTIONS(2930), + [anon_sym_LT_LT_LT] = ACTIONS(2930), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2930), + [anon_sym_AMP] = ACTIONS(2932), + }, + [2754] = { + [sym__simple_heredoc_body] = ACTIONS(2944), + [sym__heredoc_body_beginning] = ACTIONS(2944), + [sym_file_descriptor] = ACTIONS(2944), + [sym__concat] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_esac] = ACTIONS(2944), + [anon_sym_PIPE] = ACTIONS(2946), + [anon_sym_SEMI_SEMI] = ACTIONS(2944), + [anon_sym_PIPE_AMP] = ACTIONS(2944), + [anon_sym_AMP_AMP] = ACTIONS(2944), + [anon_sym_PIPE_PIPE] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2946), + [anon_sym_GT] = ACTIONS(2946), + [anon_sym_GT_GT] = ACTIONS(2944), + [anon_sym_AMP_GT] = ACTIONS(2946), + [anon_sym_AMP_GT_GT] = ACTIONS(2944), + [anon_sym_LT_AMP] = ACTIONS(2944), + [anon_sym_GT_AMP] = ACTIONS(2944), + [anon_sym_LT_LT] = ACTIONS(2946), + [anon_sym_LT_LT_DASH] = ACTIONS(2944), + [anon_sym_LT_LT_LT] = ACTIONS(2944), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2944), + [anon_sym_AMP] = ACTIONS(2946), + }, + [2755] = { + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(6496), + [sym_comment] = ACTIONS(57), + }, + [2756] = { + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(6498), + [sym_comment] = ACTIONS(57), + }, + [2757] = { + [anon_sym_RBRACE] = ACTIONS(6498), + [sym_comment] = ACTIONS(57), + }, + [2758] = { + [sym_concatenation] = STATE(2820), + [sym_string] = STATE(2819), + [sym_simple_expansion] = STATE(2819), + [sym_string_expansion] = STATE(2819), + [sym_expansion] = STATE(2819), + [sym_command_substitution] = STATE(2819), + [sym_process_substitution] = STATE(2819), + [anon_sym_RBRACE] = ACTIONS(6498), + [sym__special_characters] = ACTIONS(6500), + [anon_sym_DQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1806), + [sym_raw_string] = ACTIONS(6502), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1812), + [anon_sym_BQUOTE] = ACTIONS(1814), + [anon_sym_LT_LPAREN] = ACTIONS(1816), + [anon_sym_GT_LPAREN] = ACTIONS(1816), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6502), + }, + [2759] = { + [sym__simple_heredoc_body] = ACTIONS(2980), + [sym__heredoc_body_beginning] = ACTIONS(2980), + [sym_file_descriptor] = ACTIONS(2980), + [sym__concat] = ACTIONS(2980), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_esac] = ACTIONS(2980), + [anon_sym_PIPE] = ACTIONS(2982), + [anon_sym_SEMI_SEMI] = ACTIONS(2980), + [anon_sym_PIPE_AMP] = ACTIONS(2980), + [anon_sym_AMP_AMP] = ACTIONS(2980), + [anon_sym_PIPE_PIPE] = ACTIONS(2980), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_GT] = ACTIONS(2982), + [anon_sym_GT_GT] = ACTIONS(2980), + [anon_sym_AMP_GT] = ACTIONS(2982), + [anon_sym_AMP_GT_GT] = ACTIONS(2980), + [anon_sym_LT_AMP] = ACTIONS(2980), + [anon_sym_GT_AMP] = ACTIONS(2980), + [anon_sym_LT_LT] = ACTIONS(2982), + [anon_sym_LT_LT_DASH] = ACTIONS(2980), + [anon_sym_LT_LT_LT] = ACTIONS(2980), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(2980), + [anon_sym_AMP] = ACTIONS(2982), + }, + [2760] = { + [sym_concatenation] = STATE(2823), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2823), + [sym_regex] = ACTIONS(6504), + [anon_sym_RBRACE] = ACTIONS(6506), + [anon_sym_EQ] = ACTIONS(6508), + [anon_sym_DASH] = ACTIONS(6508), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6510), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6508), + [anon_sym_COLON_QMARK] = ACTIONS(6508), + [anon_sym_COLON_DASH] = ACTIONS(6508), + [anon_sym_PERCENT] = ACTIONS(6508), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2761] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6506), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2762] = { + [sym_concatenation] = STATE(2825), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2825), + [sym_regex] = ACTIONS(6512), + [anon_sym_RBRACE] = ACTIONS(6498), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_DASH] = ACTIONS(6514), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6514), + [anon_sym_COLON_QMARK] = ACTIONS(6514), + [anon_sym_COLON_DASH] = ACTIONS(6514), + [anon_sym_PERCENT] = ACTIONS(6514), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2763] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6498), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2764] = { + [sym_concatenation] = STATE(2827), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2827), + [anon_sym_RBRACE] = ACTIONS(6518), + [anon_sym_EQ] = ACTIONS(6520), + [anon_sym_DASH] = ACTIONS(6520), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6522), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6520), + [anon_sym_COLON_QMARK] = ACTIONS(6520), + [anon_sym_COLON_DASH] = ACTIONS(6520), + [anon_sym_PERCENT] = ACTIONS(6520), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2765] = { + [sym__simple_heredoc_body] = ACTIONS(3036), + [sym__heredoc_body_beginning] = ACTIONS(3036), + [sym_file_descriptor] = ACTIONS(3036), + [sym__concat] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_esac] = ACTIONS(3036), + [anon_sym_PIPE] = ACTIONS(3038), + [anon_sym_SEMI_SEMI] = ACTIONS(3036), + [anon_sym_PIPE_AMP] = ACTIONS(3036), + [anon_sym_AMP_AMP] = ACTIONS(3036), + [anon_sym_PIPE_PIPE] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_GT] = ACTIONS(3038), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_AMP_GT] = ACTIONS(3038), + [anon_sym_AMP_GT_GT] = ACTIONS(3036), + [anon_sym_LT_AMP] = ACTIONS(3036), + [anon_sym_GT_AMP] = ACTIONS(3036), + [anon_sym_LT_LT] = ACTIONS(3038), + [anon_sym_LT_LT_DASH] = ACTIONS(3036), + [anon_sym_LT_LT_LT] = ACTIONS(3036), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3036), + [anon_sym_AMP] = ACTIONS(3038), + }, + [2766] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6518), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2767] = { + [sym_concatenation] = STATE(2825), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2825), + [anon_sym_RBRACE] = ACTIONS(6498), + [anon_sym_EQ] = ACTIONS(6514), + [anon_sym_DASH] = ACTIONS(6514), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6514), + [anon_sym_COLON_QMARK] = ACTIONS(6514), + [anon_sym_COLON_DASH] = ACTIONS(6514), + [anon_sym_PERCENT] = ACTIONS(6514), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2768] = { + [sym__simple_heredoc_body] = ACTIONS(3091), + [sym__heredoc_body_beginning] = ACTIONS(3091), + [sym_file_descriptor] = ACTIONS(3091), + [sym__concat] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_esac] = ACTIONS(3091), + [anon_sym_PIPE] = ACTIONS(3093), + [anon_sym_SEMI_SEMI] = ACTIONS(3091), + [anon_sym_PIPE_AMP] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_GT] = ACTIONS(3093), + [anon_sym_GT_GT] = ACTIONS(3091), + [anon_sym_AMP_GT] = ACTIONS(3093), + [anon_sym_AMP_GT_GT] = ACTIONS(3091), + [anon_sym_LT_AMP] = ACTIONS(3091), + [anon_sym_GT_AMP] = ACTIONS(3091), + [anon_sym_LT_LT] = ACTIONS(3093), + [anon_sym_LT_LT_DASH] = ACTIONS(3091), + [anon_sym_LT_LT_LT] = ACTIONS(3091), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3093), + }, + [2769] = { + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(6524), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), + }, + [2770] = { + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(6524), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2771] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6470), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(6526), + [anon_sym_RPAREN] = ACTIONS(6524), + [anon_sym_SEMI_SEMI] = ACTIONS(6528), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6528), + [anon_sym_AMP] = ACTIONS(6528), }, [2772] = { - [sym__concat] = ACTIONS(4043), - [sym_variable_name] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4045), - [anon_sym_esac] = ACTIONS(4045), - [anon_sym_PIPE] = ACTIONS(4045), - [anon_sym_SEMI_SEMI] = ACTIONS(4043), - [anon_sym_PIPE_AMP] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [sym__special_characters] = ACTIONS(4043), - [anon_sym_DQUOTE] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(4045), - [sym_raw_string] = ACTIONS(4043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), - [anon_sym_BQUOTE] = ACTIONS(4043), - [anon_sym_LT_LPAREN] = ACTIONS(4043), - [anon_sym_GT_LPAREN] = ACTIONS(4043), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4045), - [sym_word] = ACTIONS(4045), - [anon_sym_LF] = ACTIONS(4043), - [anon_sym_AMP] = ACTIONS(4045), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(6524), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [2773] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6482), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(6524), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2774] = { - [sym__concat] = ACTIONS(4065), - [sym_variable_name] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_esac] = ACTIONS(4067), - [anon_sym_PIPE] = ACTIONS(4067), - [anon_sym_SEMI_SEMI] = ACTIONS(4065), - [anon_sym_PIPE_AMP] = ACTIONS(4065), - [anon_sym_AMP_AMP] = ACTIONS(4065), - [anon_sym_PIPE_PIPE] = ACTIONS(4065), - [sym__special_characters] = ACTIONS(4065), - [anon_sym_DQUOTE] = ACTIONS(4065), - [anon_sym_DOLLAR] = ACTIONS(4067), - [sym_raw_string] = ACTIONS(4065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), - [anon_sym_BQUOTE] = ACTIONS(4065), - [anon_sym_LT_LPAREN] = ACTIONS(4065), - [anon_sym_GT_LPAREN] = ACTIONS(4065), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4067), - [sym_word] = ACTIONS(4067), - [anon_sym_LF] = ACTIONS(4065), - [anon_sym_AMP] = ACTIONS(4067), + [anon_sym_SEMI] = ACTIONS(6530), + [anon_sym_SEMI_SEMI] = ACTIONS(6532), + [anon_sym_BQUOTE] = ACTIONS(6524), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6532), + [anon_sym_AMP] = ACTIONS(6532), }, [2775] = { - [sym__concat] = ACTIONS(4089), - [sym_variable_name] = ACTIONS(4089), - [anon_sym_SEMI] = ACTIONS(4091), - [anon_sym_esac] = ACTIONS(4091), - [anon_sym_PIPE] = ACTIONS(4091), - [anon_sym_SEMI_SEMI] = ACTIONS(4089), - [anon_sym_PIPE_AMP] = ACTIONS(4089), - [anon_sym_AMP_AMP] = ACTIONS(4089), - [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [sym__special_characters] = ACTIONS(4089), - [anon_sym_DQUOTE] = ACTIONS(4089), - [anon_sym_DOLLAR] = ACTIONS(4091), - [sym_raw_string] = ACTIONS(4089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), - [anon_sym_BQUOTE] = ACTIONS(4089), - [anon_sym_LT_LPAREN] = ACTIONS(4089), - [anon_sym_GT_LPAREN] = ACTIONS(4089), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4091), - [sym_word] = ACTIONS(4091), - [anon_sym_LF] = ACTIONS(4089), - [anon_sym_AMP] = ACTIONS(4091), + [sym__simple_heredoc_body] = ACTIONS(3121), + [sym__heredoc_body_beginning] = ACTIONS(3121), + [sym_file_descriptor] = ACTIONS(3121), + [sym__concat] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_esac] = ACTIONS(3121), + [anon_sym_PIPE] = ACTIONS(3123), + [anon_sym_SEMI_SEMI] = ACTIONS(3121), + [anon_sym_PIPE_AMP] = ACTIONS(3121), + [anon_sym_AMP_AMP] = ACTIONS(3121), + [anon_sym_PIPE_PIPE] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(3123), + [anon_sym_GT] = ACTIONS(3123), + [anon_sym_GT_GT] = ACTIONS(3121), + [anon_sym_AMP_GT] = ACTIONS(3123), + [anon_sym_AMP_GT_GT] = ACTIONS(3121), + [anon_sym_LT_AMP] = ACTIONS(3121), + [anon_sym_GT_AMP] = ACTIONS(3121), + [anon_sym_LT_LT] = ACTIONS(3123), + [anon_sym_LT_LT_DASH] = ACTIONS(3121), + [anon_sym_LT_LT_LT] = ACTIONS(3121), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3123), }, [2776] = { - [sym__concat] = ACTIONS(3934), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym_esac] = ACTIONS(3936), - [anon_sym_PIPE] = ACTIONS(3936), - [anon_sym_SEMI_SEMI] = ACTIONS(3934), - [anon_sym_PIPE_AMP] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [sym__special_characters] = ACTIONS(3934), - [anon_sym_DQUOTE] = ACTIONS(3934), - [anon_sym_DOLLAR] = ACTIONS(3936), - [sym_raw_string] = ACTIONS(3934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), - [anon_sym_BQUOTE] = ACTIONS(3934), - [anon_sym_LT_LPAREN] = ACTIONS(3934), - [anon_sym_GT_LPAREN] = ACTIONS(3934), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3936), - [sym_word] = ACTIONS(3936), - [anon_sym_LF] = ACTIONS(3934), - [anon_sym_AMP] = ACTIONS(3936), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(6534), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [2777] = { - [sym__concat] = ACTIONS(3942), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym_esac] = ACTIONS(3944), - [anon_sym_PIPE] = ACTIONS(3944), - [anon_sym_SEMI_SEMI] = ACTIONS(3942), - [anon_sym_PIPE_AMP] = ACTIONS(3942), - [anon_sym_AMP_AMP] = ACTIONS(3942), - [anon_sym_PIPE_PIPE] = ACTIONS(3942), - [sym__special_characters] = ACTIONS(3942), - [anon_sym_DQUOTE] = ACTIONS(3942), - [anon_sym_DOLLAR] = ACTIONS(3944), - [sym_raw_string] = ACTIONS(3942), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), - [anon_sym_BQUOTE] = ACTIONS(3942), - [anon_sym_LT_LPAREN] = ACTIONS(3942), - [anon_sym_GT_LPAREN] = ACTIONS(3942), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3944), - [sym_word] = ACTIONS(3944), - [anon_sym_LF] = ACTIONS(3942), - [anon_sym_AMP] = ACTIONS(3944), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(6534), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(931), + [sym_raw_string] = ACTIONS(927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_BQUOTE] = ACTIONS(927), + [anon_sym_LT_LPAREN] = ACTIONS(927), + [anon_sym_GT_LPAREN] = ACTIONS(927), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(931), }, [2778] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(6484), - [sym_comment] = ACTIONS(55), + [anon_sym_SEMI] = ACTIONS(6536), + [anon_sym_RPAREN] = ACTIONS(6534), + [anon_sym_SEMI_SEMI] = ACTIONS(6538), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(6538), + [anon_sym_AMP] = ACTIONS(6538), }, [2779] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(6486), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(927), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(6146), + [anon_sym_DQUOTE] = ACTIONS(6148), + [anon_sym_DOLLAR] = ACTIONS(6146), + [sym_raw_string] = ACTIONS(6148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6148), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6148), + [anon_sym_BQUOTE] = ACTIONS(6148), + [anon_sym_LT_LPAREN] = ACTIONS(6148), + [anon_sym_GT_LPAREN] = ACTIONS(6148), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6146), }, [2780] = { - [anon_sym_RBRACE] = ACTIONS(6486), - [sym_comment] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(927), + [sym_variable_name] = ACTIONS(927), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN_LPAREN] = ACTIONS(927), + [anon_sym_while] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_SEMI_SEMI] = ACTIONS(927), + [anon_sym_function] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(927), + [anon_sym_declare] = ACTIONS(931), + [anon_sym_typeset] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_readonly] = ACTIONS(931), + [anon_sym_local] = ACTIONS(931), + [anon_sym_unset] = ACTIONS(931), + [anon_sym_unsetenv] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(931), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [sym__special_characters] = ACTIONS(6152), + [anon_sym_DQUOTE] = ACTIONS(6154), + [anon_sym_DOLLAR] = ACTIONS(6152), + [sym_raw_string] = ACTIONS(6154), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6154), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6154), + [anon_sym_BQUOTE] = ACTIONS(6154), + [anon_sym_LT_LPAREN] = ACTIONS(6154), + [anon_sym_GT_LPAREN] = ACTIONS(6154), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(6152), }, [2781] = { - [sym_concatenation] = STATE(2843), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2843), - [anon_sym_RBRACE] = ACTIONS(6488), - [anon_sym_EQ] = ACTIONS(6490), - [anon_sym_DASH] = ACTIONS(6490), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6492), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6490), - [anon_sym_COLON_QMARK] = ACTIONS(6490), - [anon_sym_COLON_DASH] = ACTIONS(6490), - [anon_sym_PERCENT] = ACTIONS(6490), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(3921), + [sym__heredoc_body_beginning] = ACTIONS(3921), + [sym_file_descriptor] = ACTIONS(3921), + [sym__concat] = ACTIONS(3921), + [sym_variable_name] = ACTIONS(3921), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym_esac] = ACTIONS(3923), + [anon_sym_PIPE] = ACTIONS(3923), + [anon_sym_SEMI_SEMI] = ACTIONS(3921), + [anon_sym_PIPE_AMP] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_GT] = ACTIONS(3923), + [anon_sym_GT_GT] = ACTIONS(3921), + [anon_sym_AMP_GT] = ACTIONS(3923), + [anon_sym_AMP_GT_GT] = ACTIONS(3921), + [anon_sym_LT_AMP] = ACTIONS(3921), + [anon_sym_GT_AMP] = ACTIONS(3921), + [anon_sym_LT_LT] = ACTIONS(3923), + [anon_sym_LT_LT_DASH] = ACTIONS(3921), + [anon_sym_LT_LT_LT] = ACTIONS(3921), + [sym__special_characters] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [anon_sym_DOLLAR] = ACTIONS(3923), + [sym_raw_string] = ACTIONS(3921), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3921), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3921), + [anon_sym_BQUOTE] = ACTIONS(3921), + [anon_sym_LT_LPAREN] = ACTIONS(3921), + [anon_sym_GT_LPAREN] = ACTIONS(3921), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3923), + [anon_sym_LF] = ACTIONS(3921), + [anon_sym_AMP] = ACTIONS(3923), }, [2782] = { - [sym__concat] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym_esac] = ACTIONS(4000), - [anon_sym_PIPE] = ACTIONS(4000), - [anon_sym_SEMI_SEMI] = ACTIONS(3998), - [anon_sym_PIPE_AMP] = ACTIONS(3998), - [anon_sym_AMP_AMP] = ACTIONS(3998), - [anon_sym_PIPE_PIPE] = ACTIONS(3998), - [sym__special_characters] = ACTIONS(3998), - [anon_sym_DQUOTE] = ACTIONS(3998), - [anon_sym_DOLLAR] = ACTIONS(4000), - [sym_raw_string] = ACTIONS(3998), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), - [anon_sym_BQUOTE] = ACTIONS(3998), - [anon_sym_LT_LPAREN] = ACTIONS(3998), - [anon_sym_GT_LPAREN] = ACTIONS(3998), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4000), - [sym_word] = ACTIONS(4000), - [anon_sym_LF] = ACTIONS(3998), - [anon_sym_AMP] = ACTIONS(4000), + [sym__simple_heredoc_body] = ACTIONS(3929), + [sym__heredoc_body_beginning] = ACTIONS(3929), + [sym_file_descriptor] = ACTIONS(3929), + [sym__concat] = ACTIONS(3929), + [sym_variable_name] = ACTIONS(3929), + [anon_sym_SEMI] = ACTIONS(3931), + [anon_sym_esac] = ACTIONS(3931), + [anon_sym_PIPE] = ACTIONS(3931), + [anon_sym_SEMI_SEMI] = ACTIONS(3929), + [anon_sym_PIPE_AMP] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_GT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_AMP_GT] = ACTIONS(3931), + [anon_sym_AMP_GT_GT] = ACTIONS(3929), + [anon_sym_LT_AMP] = ACTIONS(3929), + [anon_sym_GT_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_LT_LT_DASH] = ACTIONS(3929), + [anon_sym_LT_LT_LT] = ACTIONS(3929), + [sym__special_characters] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [anon_sym_DOLLAR] = ACTIONS(3931), + [sym_raw_string] = ACTIONS(3929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3929), + [anon_sym_BQUOTE] = ACTIONS(3929), + [anon_sym_LT_LPAREN] = ACTIONS(3929), + [anon_sym_GT_LPAREN] = ACTIONS(3929), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3931), + [anon_sym_LF] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3931), }, [2783] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6488), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(6540), + [sym_comment] = ACTIONS(57), }, [2784] = { - [sym_concatenation] = STATE(2844), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2844), - [anon_sym_RBRACE] = ACTIONS(6486), - [anon_sym_EQ] = ACTIONS(6494), - [anon_sym_DASH] = ACTIONS(6494), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6496), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6494), - [anon_sym_COLON_QMARK] = ACTIONS(6494), - [anon_sym_COLON_DASH] = ACTIONS(6494), - [anon_sym_PERCENT] = ACTIONS(6494), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(6542), + [sym_comment] = ACTIONS(57), }, [2785] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6486), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(6542), + [sym_comment] = ACTIONS(57), }, [2786] = { - [sym__concat] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4045), - [anon_sym_esac] = ACTIONS(4045), - [anon_sym_PIPE] = ACTIONS(4045), - [anon_sym_SEMI_SEMI] = ACTIONS(4043), - [anon_sym_PIPE_AMP] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [sym__special_characters] = ACTIONS(4043), - [anon_sym_DQUOTE] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(4045), - [sym_raw_string] = ACTIONS(4043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), - [anon_sym_BQUOTE] = ACTIONS(4043), - [anon_sym_LT_LPAREN] = ACTIONS(4043), - [anon_sym_GT_LPAREN] = ACTIONS(4043), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4045), - [sym_word] = ACTIONS(4045), - [anon_sym_LF] = ACTIONS(4043), - [anon_sym_AMP] = ACTIONS(4045), - }, - [2787] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6498), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2788] = { - [sym__concat] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_esac] = ACTIONS(4067), - [anon_sym_PIPE] = ACTIONS(4067), - [anon_sym_SEMI_SEMI] = ACTIONS(4065), - [anon_sym_PIPE_AMP] = ACTIONS(4065), - [anon_sym_AMP_AMP] = ACTIONS(4065), - [anon_sym_PIPE_PIPE] = ACTIONS(4065), - [sym__special_characters] = ACTIONS(4065), - [anon_sym_DQUOTE] = ACTIONS(4065), - [anon_sym_DOLLAR] = ACTIONS(4067), - [sym_raw_string] = ACTIONS(4065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), - [anon_sym_BQUOTE] = ACTIONS(4065), - [anon_sym_LT_LPAREN] = ACTIONS(4065), - [anon_sym_GT_LPAREN] = ACTIONS(4065), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4067), - [sym_word] = ACTIONS(4067), - [anon_sym_LF] = ACTIONS(4065), - [anon_sym_AMP] = ACTIONS(4067), - }, - [2789] = { - [sym__concat] = ACTIONS(4089), - [anon_sym_SEMI] = ACTIONS(4091), - [anon_sym_esac] = ACTIONS(4091), - [anon_sym_PIPE] = ACTIONS(4091), - [anon_sym_SEMI_SEMI] = ACTIONS(4089), - [anon_sym_PIPE_AMP] = ACTIONS(4089), - [anon_sym_AMP_AMP] = ACTIONS(4089), - [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [sym__special_characters] = ACTIONS(4089), - [anon_sym_DQUOTE] = ACTIONS(4089), - [anon_sym_DOLLAR] = ACTIONS(4091), - [sym_raw_string] = ACTIONS(4089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), - [anon_sym_BQUOTE] = ACTIONS(4089), - [anon_sym_LT_LPAREN] = ACTIONS(4089), - [anon_sym_GT_LPAREN] = ACTIONS(4089), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4091), - [sym_word] = ACTIONS(4091), - [anon_sym_LF] = ACTIONS(4089), - [anon_sym_AMP] = ACTIONS(4091), - }, - [2790] = { - [sym__simple_heredoc_body] = ACTIONS(4710), - [sym__heredoc_body_beginning] = ACTIONS(4710), - [sym_file_descriptor] = ACTIONS(4710), - [sym__concat] = ACTIONS(4710), - [anon_sym_SEMI] = ACTIONS(4712), - [anon_sym_esac] = ACTIONS(4712), - [anon_sym_PIPE] = ACTIONS(4712), - [anon_sym_SEMI_SEMI] = ACTIONS(4710), - [anon_sym_PIPE_AMP] = ACTIONS(4710), - [anon_sym_AMP_AMP] = ACTIONS(4710), - [anon_sym_PIPE_PIPE] = ACTIONS(4710), - [anon_sym_EQ_TILDE] = ACTIONS(4712), - [anon_sym_EQ_EQ] = ACTIONS(4712), - [anon_sym_LT] = ACTIONS(4712), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_GT_GT] = ACTIONS(4710), - [anon_sym_AMP_GT] = ACTIONS(4712), - [anon_sym_AMP_GT_GT] = ACTIONS(4710), - [anon_sym_LT_AMP] = ACTIONS(4710), - [anon_sym_GT_AMP] = ACTIONS(4710), - [anon_sym_LT_LT] = ACTIONS(4712), - [anon_sym_LT_LT_DASH] = ACTIONS(4710), - [anon_sym_LT_LT_LT] = ACTIONS(4710), - [sym__special_characters] = ACTIONS(4710), - [anon_sym_DQUOTE] = ACTIONS(4710), - [anon_sym_DOLLAR] = ACTIONS(4712), - [sym_raw_string] = ACTIONS(4710), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), - [anon_sym_BQUOTE] = ACTIONS(4710), - [anon_sym_LT_LPAREN] = ACTIONS(4710), - [anon_sym_GT_LPAREN] = ACTIONS(4710), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4712), - [anon_sym_LF] = ACTIONS(4710), - [anon_sym_AMP] = ACTIONS(4712), - }, - [2791] = { - [sym__simple_heredoc_body] = ACTIONS(4714), - [sym__heredoc_body_beginning] = ACTIONS(4714), - [sym_file_descriptor] = ACTIONS(4714), - [sym__concat] = ACTIONS(4714), - [anon_sym_SEMI] = ACTIONS(4716), - [anon_sym_esac] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4716), - [anon_sym_SEMI_SEMI] = ACTIONS(4714), - [anon_sym_PIPE_AMP] = ACTIONS(4714), - [anon_sym_AMP_AMP] = ACTIONS(4714), - [anon_sym_PIPE_PIPE] = ACTIONS(4714), - [anon_sym_EQ_TILDE] = ACTIONS(4716), - [anon_sym_EQ_EQ] = ACTIONS(4716), - [anon_sym_LT] = ACTIONS(4716), - [anon_sym_GT] = ACTIONS(4716), - [anon_sym_GT_GT] = ACTIONS(4714), - [anon_sym_AMP_GT] = ACTIONS(4716), - [anon_sym_AMP_GT_GT] = ACTIONS(4714), - [anon_sym_LT_AMP] = ACTIONS(4714), - [anon_sym_GT_AMP] = ACTIONS(4714), - [anon_sym_LT_LT] = ACTIONS(4716), - [anon_sym_LT_LT_DASH] = ACTIONS(4714), - [anon_sym_LT_LT_LT] = ACTIONS(4714), - [sym__special_characters] = ACTIONS(4714), - [anon_sym_DQUOTE] = ACTIONS(4714), - [anon_sym_DOLLAR] = ACTIONS(4716), - [sym_raw_string] = ACTIONS(4714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), - [anon_sym_BQUOTE] = ACTIONS(4714), - [anon_sym_LT_LPAREN] = ACTIONS(4714), - [anon_sym_GT_LPAREN] = ACTIONS(4714), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4716), - [anon_sym_LF] = ACTIONS(4714), - [anon_sym_AMP] = ACTIONS(4716), - }, - [2792] = { - [sym__simple_heredoc_body] = ACTIONS(4718), - [sym__heredoc_body_beginning] = ACTIONS(4718), - [sym_file_descriptor] = ACTIONS(4718), - [sym__concat] = ACTIONS(4718), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_esac] = ACTIONS(4720), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_SEMI_SEMI] = ACTIONS(4718), - [anon_sym_PIPE_AMP] = ACTIONS(4718), - [anon_sym_AMP_AMP] = ACTIONS(4718), - [anon_sym_PIPE_PIPE] = ACTIONS(4718), - [anon_sym_EQ_TILDE] = ACTIONS(4720), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_LT] = ACTIONS(4720), - [anon_sym_GT] = ACTIONS(4720), - [anon_sym_GT_GT] = ACTIONS(4718), - [anon_sym_AMP_GT] = ACTIONS(4720), - [anon_sym_AMP_GT_GT] = ACTIONS(4718), - [anon_sym_LT_AMP] = ACTIONS(4718), - [anon_sym_GT_AMP] = ACTIONS(4718), - [anon_sym_LT_LT] = ACTIONS(4720), - [anon_sym_LT_LT_DASH] = ACTIONS(4718), - [anon_sym_LT_LT_LT] = ACTIONS(4718), - [sym__special_characters] = ACTIONS(4718), - [anon_sym_DQUOTE] = ACTIONS(4718), - [anon_sym_DOLLAR] = ACTIONS(4720), - [sym_raw_string] = ACTIONS(4718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), - [anon_sym_BQUOTE] = ACTIONS(4718), - [anon_sym_LT_LPAREN] = ACTIONS(4718), - [anon_sym_GT_LPAREN] = ACTIONS(4718), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4720), - [anon_sym_LF] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - }, - [2793] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6500), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2794] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6502), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2795] = { - [sym__simple_heredoc_body] = ACTIONS(4754), - [sym__heredoc_body_beginning] = ACTIONS(4754), - [sym_file_descriptor] = ACTIONS(4754), - [sym__concat] = ACTIONS(4754), - [anon_sym_SEMI] = ACTIONS(4756), - [anon_sym_esac] = ACTIONS(4756), - [anon_sym_PIPE] = ACTIONS(4756), - [anon_sym_SEMI_SEMI] = ACTIONS(4754), - [anon_sym_PIPE_AMP] = ACTIONS(4754), - [anon_sym_AMP_AMP] = ACTIONS(4754), - [anon_sym_PIPE_PIPE] = ACTIONS(4754), - [anon_sym_EQ_TILDE] = ACTIONS(4756), - [anon_sym_EQ_EQ] = ACTIONS(4756), - [anon_sym_LT] = ACTIONS(4756), - [anon_sym_GT] = ACTIONS(4756), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_AMP_GT] = ACTIONS(4756), - [anon_sym_AMP_GT_GT] = ACTIONS(4754), - [anon_sym_LT_AMP] = ACTIONS(4754), - [anon_sym_GT_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4756), - [anon_sym_LT_LT_DASH] = ACTIONS(4754), - [anon_sym_LT_LT_LT] = ACTIONS(4754), - [sym__special_characters] = ACTIONS(4754), - [anon_sym_DQUOTE] = ACTIONS(4754), - [anon_sym_DOLLAR] = ACTIONS(4756), - [sym_raw_string] = ACTIONS(4754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), - [anon_sym_BQUOTE] = ACTIONS(4754), - [anon_sym_LT_LPAREN] = ACTIONS(4754), - [anon_sym_GT_LPAREN] = ACTIONS(4754), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4756), - [anon_sym_LF] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4756), - }, - [2796] = { - [sym__simple_heredoc_body] = ACTIONS(2959), - [sym__heredoc_body_beginning] = ACTIONS(2959), - [sym_file_descriptor] = ACTIONS(2959), - [sym__concat] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_esac] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2961), - [anon_sym_SEMI_SEMI] = ACTIONS(2959), - [anon_sym_PIPE_AMP] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_GT] = ACTIONS(2961), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_AMP_GT] = ACTIONS(2961), - [anon_sym_AMP_GT_GT] = ACTIONS(2959), - [anon_sym_LT_AMP] = ACTIONS(2959), - [anon_sym_GT_AMP] = ACTIONS(2959), - [anon_sym_LT_LT] = ACTIONS(2961), - [anon_sym_LT_LT_DASH] = ACTIONS(2959), - [anon_sym_LT_LT_LT] = ACTIONS(2959), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), - }, - [2797] = { - [sym__simple_heredoc_body] = ACTIONS(2973), - [sym__heredoc_body_beginning] = ACTIONS(2973), - [sym_file_descriptor] = ACTIONS(2973), - [sym__concat] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym_esac] = ACTIONS(2973), - [anon_sym_PIPE] = ACTIONS(2975), - [anon_sym_SEMI_SEMI] = ACTIONS(2973), - [anon_sym_PIPE_AMP] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_GT] = ACTIONS(2975), - [anon_sym_GT_GT] = ACTIONS(2973), - [anon_sym_AMP_GT] = ACTIONS(2975), - [anon_sym_AMP_GT_GT] = ACTIONS(2973), - [anon_sym_LT_AMP] = ACTIONS(2973), - [anon_sym_GT_AMP] = ACTIONS(2973), - [anon_sym_LT_LT] = ACTIONS(2975), - [anon_sym_LT_LT_DASH] = ACTIONS(2973), - [anon_sym_LT_LT_LT] = ACTIONS(2973), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2975), - }, - [2798] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(6504), - [sym_comment] = ACTIONS(55), - }, - [2799] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(6506), - [sym_comment] = ACTIONS(55), - }, - [2800] = { - [anon_sym_RBRACE] = ACTIONS(6506), - [sym_comment] = ACTIONS(55), - }, - [2801] = { - [sym_concatenation] = STATE(2852), - [sym_string] = STATE(2851), - [sym_simple_expansion] = STATE(2851), - [sym_string_expansion] = STATE(2851), - [sym_expansion] = STATE(2851), - [sym_command_substitution] = STATE(2851), - [sym_process_substitution] = STATE(2851), - [anon_sym_RBRACE] = ACTIONS(6506), - [sym__special_characters] = ACTIONS(6508), - [anon_sym_DQUOTE] = ACTIONS(1841), - [anon_sym_DOLLAR] = ACTIONS(1843), - [sym_raw_string] = ACTIONS(6510), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1849), - [anon_sym_BQUOTE] = ACTIONS(1851), - [anon_sym_LT_LPAREN] = ACTIONS(1853), - [anon_sym_GT_LPAREN] = ACTIONS(1853), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(6510), - }, - [2802] = { - [sym__simple_heredoc_body] = ACTIONS(3009), - [sym__heredoc_body_beginning] = ACTIONS(3009), - [sym_file_descriptor] = ACTIONS(3009), - [sym__concat] = ACTIONS(3009), - [anon_sym_SEMI] = ACTIONS(3011), - [anon_sym_esac] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_SEMI_SEMI] = ACTIONS(3009), - [anon_sym_PIPE_AMP] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(3011), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_GT_GT] = ACTIONS(3009), - [anon_sym_AMP_GT] = ACTIONS(3011), - [anon_sym_AMP_GT_GT] = ACTIONS(3009), - [anon_sym_LT_AMP] = ACTIONS(3009), - [anon_sym_GT_AMP] = ACTIONS(3009), - [anon_sym_LT_LT] = ACTIONS(3011), - [anon_sym_LT_LT_DASH] = ACTIONS(3009), - [anon_sym_LT_LT_LT] = ACTIONS(3009), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3011), - }, - [2803] = { - [sym_concatenation] = STATE(2855), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2855), - [sym_regex] = ACTIONS(6512), - [anon_sym_RBRACE] = ACTIONS(6514), - [anon_sym_EQ] = ACTIONS(6516), - [anon_sym_DASH] = ACTIONS(6516), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6518), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6516), - [anon_sym_COLON_QMARK] = ACTIONS(6516), - [anon_sym_COLON_DASH] = ACTIONS(6516), - [anon_sym_PERCENT] = ACTIONS(6516), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2804] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6514), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2805] = { - [sym_concatenation] = STATE(2857), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2857), - [sym_regex] = ACTIONS(6520), - [anon_sym_RBRACE] = ACTIONS(6506), - [anon_sym_EQ] = ACTIONS(6522), - [anon_sym_DASH] = ACTIONS(6522), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6524), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6522), - [anon_sym_COLON_QMARK] = ACTIONS(6522), - [anon_sym_COLON_DASH] = ACTIONS(6522), - [anon_sym_PERCENT] = ACTIONS(6522), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2806] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6506), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2807] = { - [sym_concatenation] = STATE(2859), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2859), - [anon_sym_RBRACE] = ACTIONS(6526), - [anon_sym_EQ] = ACTIONS(6528), - [anon_sym_DASH] = ACTIONS(6528), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6530), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6528), - [anon_sym_COLON_QMARK] = ACTIONS(6528), - [anon_sym_COLON_DASH] = ACTIONS(6528), - [anon_sym_PERCENT] = ACTIONS(6528), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2808] = { - [sym__simple_heredoc_body] = ACTIONS(3065), - [sym__heredoc_body_beginning] = ACTIONS(3065), - [sym_file_descriptor] = ACTIONS(3065), - [sym__concat] = ACTIONS(3065), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym_esac] = ACTIONS(3065), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_SEMI_SEMI] = ACTIONS(3065), - [anon_sym_PIPE_AMP] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_PIPE_PIPE] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_GT_GT] = ACTIONS(3065), - [anon_sym_AMP_GT] = ACTIONS(3067), - [anon_sym_AMP_GT_GT] = ACTIONS(3065), - [anon_sym_LT_AMP] = ACTIONS(3065), - [anon_sym_GT_AMP] = ACTIONS(3065), - [anon_sym_LT_LT] = ACTIONS(3067), - [anon_sym_LT_LT_DASH] = ACTIONS(3065), - [anon_sym_LT_LT_LT] = ACTIONS(3065), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), - }, - [2809] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6526), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2810] = { - [sym_concatenation] = STATE(2857), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2857), - [anon_sym_RBRACE] = ACTIONS(6506), - [anon_sym_EQ] = ACTIONS(6522), - [anon_sym_DASH] = ACTIONS(6522), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6524), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6522), - [anon_sym_COLON_QMARK] = ACTIONS(6522), - [anon_sym_COLON_DASH] = ACTIONS(6522), - [anon_sym_PERCENT] = ACTIONS(6522), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2811] = { - [sym__simple_heredoc_body] = ACTIONS(3120), - [sym__heredoc_body_beginning] = ACTIONS(3120), - [sym_file_descriptor] = ACTIONS(3120), - [sym__concat] = ACTIONS(3120), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_esac] = ACTIONS(3120), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_SEMI_SEMI] = ACTIONS(3120), - [anon_sym_PIPE_AMP] = ACTIONS(3120), - [anon_sym_AMP_AMP] = ACTIONS(3120), - [anon_sym_PIPE_PIPE] = ACTIONS(3120), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_GT] = ACTIONS(3122), - [anon_sym_GT_GT] = ACTIONS(3120), - [anon_sym_AMP_GT] = ACTIONS(3122), - [anon_sym_AMP_GT_GT] = ACTIONS(3120), - [anon_sym_LT_AMP] = ACTIONS(3120), - [anon_sym_GT_AMP] = ACTIONS(3120), - [anon_sym_LT_LT] = ACTIONS(3122), - [anon_sym_LT_LT_DASH] = ACTIONS(3120), - [anon_sym_LT_LT_LT] = ACTIONS(3120), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3120), - [anon_sym_AMP] = ACTIONS(3122), - }, - [2812] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(6532), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), - }, - [2813] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(6532), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), - }, - [2814] = { - [sym__simple_heredoc_body] = ACTIONS(3158), - [sym__heredoc_body_beginning] = ACTIONS(3158), - [sym_file_descriptor] = ACTIONS(3158), - [sym__concat] = ACTIONS(3158), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_esac] = ACTIONS(3158), - [anon_sym_PIPE] = ACTIONS(3160), - [anon_sym_SEMI_SEMI] = ACTIONS(3158), - [anon_sym_PIPE_AMP] = ACTIONS(3158), - [anon_sym_AMP_AMP] = ACTIONS(3158), - [anon_sym_PIPE_PIPE] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3160), - [anon_sym_GT] = ACTIONS(3160), - [anon_sym_GT_GT] = ACTIONS(3158), - [anon_sym_AMP_GT] = ACTIONS(3160), - [anon_sym_AMP_GT_GT] = ACTIONS(3158), - [anon_sym_LT_AMP] = ACTIONS(3158), - [anon_sym_GT_AMP] = ACTIONS(3158), - [anon_sym_LT_LT] = ACTIONS(3160), - [anon_sym_LT_LT_DASH] = ACTIONS(3158), - [anon_sym_LT_LT_LT] = ACTIONS(3158), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(3160), - }, - [2815] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(6534), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(947), - [sym_raw_string] = ACTIONS(943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(943), - [anon_sym_BQUOTE] = ACTIONS(943), - [anon_sym_LT_LPAREN] = ACTIONS(943), - [anon_sym_GT_LPAREN] = ACTIONS(943), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(947), - }, - [2816] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_SEMI_SEMI] = ACTIONS(943), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(6206), - [anon_sym_DQUOTE] = ACTIONS(6208), - [anon_sym_DOLLAR] = ACTIONS(6206), - [sym_raw_string] = ACTIONS(6208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6208), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6208), - [anon_sym_BQUOTE] = ACTIONS(6208), - [anon_sym_LT_LPAREN] = ACTIONS(6208), - [anon_sym_GT_LPAREN] = ACTIONS(6208), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(6206), - }, - [2817] = { - [sym_file_descriptor] = ACTIONS(943), - [sym_variable_name] = ACTIONS(943), - [anon_sym_for] = ACTIONS(947), - [anon_sym_LPAREN_LPAREN] = ACTIONS(943), - [anon_sym_while] = ACTIONS(947), - [anon_sym_if] = ACTIONS(947), - [anon_sym_case] = ACTIONS(947), - [anon_sym_SEMI_SEMI] = ACTIONS(943), - [anon_sym_function] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_BANG] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_LBRACK_LBRACK] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(947), - [anon_sym_typeset] = ACTIONS(947), - [anon_sym_export] = ACTIONS(947), - [anon_sym_readonly] = ACTIONS(947), - [anon_sym_local] = ACTIONS(947), - [anon_sym_unset] = ACTIONS(947), - [anon_sym_unsetenv] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(947), - [anon_sym_GT_GT] = ACTIONS(943), - [anon_sym_AMP_GT] = ACTIONS(947), - [anon_sym_AMP_GT_GT] = ACTIONS(943), - [anon_sym_LT_AMP] = ACTIONS(943), - [anon_sym_GT_AMP] = ACTIONS(943), - [sym__special_characters] = ACTIONS(6212), - [anon_sym_DQUOTE] = ACTIONS(6214), - [anon_sym_DOLLAR] = ACTIONS(6212), - [sym_raw_string] = ACTIONS(6214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6214), - [anon_sym_BQUOTE] = ACTIONS(6214), - [anon_sym_LT_LPAREN] = ACTIONS(6214), - [anon_sym_GT_LPAREN] = ACTIONS(6214), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(6212), - }, - [2818] = { - [sym_file_descriptor] = ACTIONS(3934), - [sym__concat] = ACTIONS(3934), - [sym_variable_name] = ACTIONS(3934), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym_esac] = ACTIONS(3936), - [anon_sym_PIPE] = ACTIONS(3936), - [anon_sym_SEMI_SEMI] = ACTIONS(3934), - [anon_sym_PIPE_AMP] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_LT] = ACTIONS(3936), - [anon_sym_GT] = ACTIONS(3936), - [anon_sym_GT_GT] = ACTIONS(3934), - [anon_sym_AMP_GT] = ACTIONS(3936), - [anon_sym_AMP_GT_GT] = ACTIONS(3934), - [anon_sym_LT_AMP] = ACTIONS(3934), - [anon_sym_GT_AMP] = ACTIONS(3934), - [sym__special_characters] = ACTIONS(3934), - [anon_sym_DQUOTE] = ACTIONS(3934), - [anon_sym_DOLLAR] = ACTIONS(3936), - [sym_raw_string] = ACTIONS(3934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3934), - [anon_sym_BQUOTE] = ACTIONS(3934), - [anon_sym_LT_LPAREN] = ACTIONS(3934), - [anon_sym_GT_LPAREN] = ACTIONS(3934), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3936), - [anon_sym_LF] = ACTIONS(3934), - [anon_sym_AMP] = ACTIONS(3936), - }, - [2819] = { - [sym_file_descriptor] = ACTIONS(3942), - [sym__concat] = ACTIONS(3942), - [sym_variable_name] = ACTIONS(3942), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym_esac] = ACTIONS(3944), - [anon_sym_PIPE] = ACTIONS(3944), - [anon_sym_SEMI_SEMI] = ACTIONS(3942), - [anon_sym_PIPE_AMP] = ACTIONS(3942), - [anon_sym_AMP_AMP] = ACTIONS(3942), - [anon_sym_PIPE_PIPE] = ACTIONS(3942), - [anon_sym_LT] = ACTIONS(3944), - [anon_sym_GT] = ACTIONS(3944), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_AMP_GT] = ACTIONS(3944), - [anon_sym_AMP_GT_GT] = ACTIONS(3942), - [anon_sym_LT_AMP] = ACTIONS(3942), - [anon_sym_GT_AMP] = ACTIONS(3942), - [sym__special_characters] = ACTIONS(3942), - [anon_sym_DQUOTE] = ACTIONS(3942), - [anon_sym_DOLLAR] = ACTIONS(3944), - [sym_raw_string] = ACTIONS(3942), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3942), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3942), - [anon_sym_BQUOTE] = ACTIONS(3942), - [anon_sym_LT_LPAREN] = ACTIONS(3942), - [anon_sym_GT_LPAREN] = ACTIONS(3942), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(3944), - [anon_sym_LF] = ACTIONS(3942), - [anon_sym_AMP] = ACTIONS(3944), - }, - [2820] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(6536), - [sym_comment] = ACTIONS(55), - }, - [2821] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(6538), - [sym_comment] = ACTIONS(55), - }, - [2822] = { - [anon_sym_RBRACE] = ACTIONS(6538), - [sym_comment] = ACTIONS(55), - }, - [2823] = { - [sym_concatenation] = STATE(2865), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2865), - [anon_sym_RBRACE] = ACTIONS(6540), - [anon_sym_EQ] = ACTIONS(6542), - [anon_sym_DASH] = ACTIONS(6542), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6544), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6542), - [anon_sym_COLON_QMARK] = ACTIONS(6542), - [anon_sym_COLON_DASH] = ACTIONS(6542), - [anon_sym_PERCENT] = ACTIONS(6542), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2824] = { - [sym_file_descriptor] = ACTIONS(3998), - [sym__concat] = ACTIONS(3998), - [sym_variable_name] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym_esac] = ACTIONS(4000), - [anon_sym_PIPE] = ACTIONS(4000), - [anon_sym_SEMI_SEMI] = ACTIONS(3998), - [anon_sym_PIPE_AMP] = ACTIONS(3998), - [anon_sym_AMP_AMP] = ACTIONS(3998), - [anon_sym_PIPE_PIPE] = ACTIONS(3998), - [anon_sym_LT] = ACTIONS(4000), - [anon_sym_GT] = ACTIONS(4000), - [anon_sym_GT_GT] = ACTIONS(3998), - [anon_sym_AMP_GT] = ACTIONS(4000), - [anon_sym_AMP_GT_GT] = ACTIONS(3998), - [anon_sym_LT_AMP] = ACTIONS(3998), - [anon_sym_GT_AMP] = ACTIONS(3998), - [sym__special_characters] = ACTIONS(3998), - [anon_sym_DQUOTE] = ACTIONS(3998), - [anon_sym_DOLLAR] = ACTIONS(4000), - [sym_raw_string] = ACTIONS(3998), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3998), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3998), - [anon_sym_BQUOTE] = ACTIONS(3998), - [anon_sym_LT_LPAREN] = ACTIONS(3998), - [anon_sym_GT_LPAREN] = ACTIONS(3998), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4000), - [anon_sym_LF] = ACTIONS(3998), - [anon_sym_AMP] = ACTIONS(4000), - }, - [2825] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6540), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2826] = { - [sym_concatenation] = STATE(2866), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2866), - [anon_sym_RBRACE] = ACTIONS(6538), + [sym_concatenation] = STATE(2836), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2836), + [anon_sym_RBRACE] = ACTIONS(6544), [anon_sym_EQ] = ACTIONS(6546), [anon_sym_DASH] = ACTIONS(6546), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), [anon_sym_POUND] = ACTIONS(6548), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), [anon_sym_COLON] = ACTIONS(6546), [anon_sym_COLON_QMARK] = ACTIONS(6546), [anon_sym_COLON_DASH] = ACTIONS(6546), [anon_sym_PERCENT] = ACTIONS(6546), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2787] = { + [sym__simple_heredoc_body] = ACTIONS(3985), + [sym__heredoc_body_beginning] = ACTIONS(3985), + [sym_file_descriptor] = ACTIONS(3985), + [sym__concat] = ACTIONS(3985), + [sym_variable_name] = ACTIONS(3985), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_esac] = ACTIONS(3987), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [anon_sym_PIPE_AMP] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_GT_GT] = ACTIONS(3985), + [anon_sym_AMP_GT] = ACTIONS(3987), + [anon_sym_AMP_GT_GT] = ACTIONS(3985), + [anon_sym_LT_AMP] = ACTIONS(3985), + [anon_sym_GT_AMP] = ACTIONS(3985), + [anon_sym_LT_LT] = ACTIONS(3987), + [anon_sym_LT_LT_DASH] = ACTIONS(3985), + [anon_sym_LT_LT_LT] = ACTIONS(3985), + [sym__special_characters] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3987), + [sym_raw_string] = ACTIONS(3985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3985), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3985), + [anon_sym_BQUOTE] = ACTIONS(3985), + [anon_sym_LT_LPAREN] = ACTIONS(3985), + [anon_sym_GT_LPAREN] = ACTIONS(3985), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(3987), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3987), + }, + [2788] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6544), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2789] = { + [sym_concatenation] = STATE(2837), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2837), + [anon_sym_RBRACE] = ACTIONS(6542), + [anon_sym_EQ] = ACTIONS(6550), + [anon_sym_DASH] = ACTIONS(6550), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6552), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6550), + [anon_sym_COLON_QMARK] = ACTIONS(6550), + [anon_sym_COLON_DASH] = ACTIONS(6550), + [anon_sym_PERCENT] = ACTIONS(6550), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2790] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6542), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2791] = { + [sym__simple_heredoc_body] = ACTIONS(4030), + [sym__heredoc_body_beginning] = ACTIONS(4030), + [sym_file_descriptor] = ACTIONS(4030), + [sym__concat] = ACTIONS(4030), + [sym_variable_name] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_esac] = ACTIONS(4032), + [anon_sym_PIPE] = ACTIONS(4032), + [anon_sym_SEMI_SEMI] = ACTIONS(4030), + [anon_sym_PIPE_AMP] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4032), + [anon_sym_GT] = ACTIONS(4032), + [anon_sym_GT_GT] = ACTIONS(4030), + [anon_sym_AMP_GT] = ACTIONS(4032), + [anon_sym_AMP_GT_GT] = ACTIONS(4030), + [anon_sym_LT_AMP] = ACTIONS(4030), + [anon_sym_GT_AMP] = ACTIONS(4030), + [anon_sym_LT_LT] = ACTIONS(4032), + [anon_sym_LT_LT_DASH] = ACTIONS(4030), + [anon_sym_LT_LT_LT] = ACTIONS(4030), + [sym__special_characters] = ACTIONS(4030), + [anon_sym_DQUOTE] = ACTIONS(4030), + [anon_sym_DOLLAR] = ACTIONS(4032), + [sym_raw_string] = ACTIONS(4030), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4030), + [anon_sym_BQUOTE] = ACTIONS(4030), + [anon_sym_LT_LPAREN] = ACTIONS(4030), + [anon_sym_GT_LPAREN] = ACTIONS(4030), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4032), + [anon_sym_LF] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4032), + }, + [2792] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6554), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2793] = { + [sym__simple_heredoc_body] = ACTIONS(4064), + [sym__heredoc_body_beginning] = ACTIONS(4064), + [sym_file_descriptor] = ACTIONS(4064), + [sym__concat] = ACTIONS(4064), + [sym_variable_name] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4066), + [anon_sym_esac] = ACTIONS(4066), + [anon_sym_PIPE] = ACTIONS(4066), + [anon_sym_SEMI_SEMI] = ACTIONS(4064), + [anon_sym_PIPE_AMP] = ACTIONS(4064), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_PIPE_PIPE] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(4066), + [anon_sym_GT] = ACTIONS(4066), + [anon_sym_GT_GT] = ACTIONS(4064), + [anon_sym_AMP_GT] = ACTIONS(4066), + [anon_sym_AMP_GT_GT] = ACTIONS(4064), + [anon_sym_LT_AMP] = ACTIONS(4064), + [anon_sym_GT_AMP] = ACTIONS(4064), + [anon_sym_LT_LT] = ACTIONS(4066), + [anon_sym_LT_LT_DASH] = ACTIONS(4064), + [anon_sym_LT_LT_LT] = ACTIONS(4064), + [sym__special_characters] = ACTIONS(4064), + [anon_sym_DQUOTE] = ACTIONS(4064), + [anon_sym_DOLLAR] = ACTIONS(4066), + [sym_raw_string] = ACTIONS(4064), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4064), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4064), + [anon_sym_BQUOTE] = ACTIONS(4064), + [anon_sym_LT_LPAREN] = ACTIONS(4064), + [anon_sym_GT_LPAREN] = ACTIONS(4064), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4066), + [anon_sym_LF] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4066), + }, + [2794] = { + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(6556), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), + }, + [2795] = { + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(6556), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), + }, + [2796] = { + [sym__simple_heredoc_body] = ACTIONS(4070), + [sym__heredoc_body_beginning] = ACTIONS(4070), + [sym_file_descriptor] = ACTIONS(4070), + [sym__concat] = ACTIONS(4070), + [sym_variable_name] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym_esac] = ACTIONS(4072), + [anon_sym_PIPE] = ACTIONS(4072), + [anon_sym_SEMI_SEMI] = ACTIONS(4070), + [anon_sym_PIPE_AMP] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_PIPE_PIPE] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4072), + [anon_sym_GT] = ACTIONS(4072), + [anon_sym_GT_GT] = ACTIONS(4070), + [anon_sym_AMP_GT] = ACTIONS(4072), + [anon_sym_AMP_GT_GT] = ACTIONS(4070), + [anon_sym_LT_AMP] = ACTIONS(4070), + [anon_sym_GT_AMP] = ACTIONS(4070), + [anon_sym_LT_LT] = ACTIONS(4072), + [anon_sym_LT_LT_DASH] = ACTIONS(4070), + [anon_sym_LT_LT_LT] = ACTIONS(4070), + [sym__special_characters] = ACTIONS(4070), + [anon_sym_DQUOTE] = ACTIONS(4070), + [anon_sym_DOLLAR] = ACTIONS(4072), + [sym_raw_string] = ACTIONS(4070), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4070), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4070), + [anon_sym_BQUOTE] = ACTIONS(4070), + [anon_sym_LT_LPAREN] = ACTIONS(4070), + [anon_sym_GT_LPAREN] = ACTIONS(4070), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4072), + [anon_sym_LF] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4072), + }, + [2797] = { + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(6558), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), + }, + [2798] = { + [sym__simple_heredoc_body] = ACTIONS(4687), + [sym__heredoc_body_beginning] = ACTIONS(4687), + [sym_file_descriptor] = ACTIONS(4687), + [sym__concat] = ACTIONS(4687), + [sym_variable_name] = ACTIONS(4687), + [anon_sym_SEMI] = ACTIONS(4689), + [anon_sym_esac] = ACTIONS(4689), + [anon_sym_PIPE] = ACTIONS(4689), + [anon_sym_SEMI_SEMI] = ACTIONS(4687), + [anon_sym_PIPE_AMP] = ACTIONS(4687), + [anon_sym_AMP_AMP] = ACTIONS(4687), + [anon_sym_PIPE_PIPE] = ACTIONS(4687), + [anon_sym_LT] = ACTIONS(4689), + [anon_sym_GT] = ACTIONS(4689), + [anon_sym_GT_GT] = ACTIONS(4687), + [anon_sym_AMP_GT] = ACTIONS(4689), + [anon_sym_AMP_GT_GT] = ACTIONS(4687), + [anon_sym_LT_AMP] = ACTIONS(4687), + [anon_sym_GT_AMP] = ACTIONS(4687), + [anon_sym_LT_LT] = ACTIONS(4689), + [anon_sym_LT_LT_DASH] = ACTIONS(4687), + [anon_sym_LT_LT_LT] = ACTIONS(4687), + [sym__special_characters] = ACTIONS(4687), + [anon_sym_DQUOTE] = ACTIONS(4687), + [anon_sym_DOLLAR] = ACTIONS(4689), + [sym_raw_string] = ACTIONS(4687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4687), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4687), + [anon_sym_BQUOTE] = ACTIONS(4687), + [anon_sym_LT_LPAREN] = ACTIONS(4687), + [anon_sym_GT_LPAREN] = ACTIONS(4687), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4689), + [sym_word] = ACTIONS(4689), + [anon_sym_LF] = ACTIONS(4687), + [anon_sym_AMP] = ACTIONS(4689), + }, + [2799] = { + [sym__simple_heredoc_body] = ACTIONS(4691), + [sym__heredoc_body_beginning] = ACTIONS(4691), + [sym_file_descriptor] = ACTIONS(4691), + [sym__concat] = ACTIONS(4691), + [sym_variable_name] = ACTIONS(4691), + [anon_sym_SEMI] = ACTIONS(4693), + [anon_sym_esac] = ACTIONS(4693), + [anon_sym_PIPE] = ACTIONS(4693), + [anon_sym_SEMI_SEMI] = ACTIONS(4691), + [anon_sym_PIPE_AMP] = ACTIONS(4691), + [anon_sym_AMP_AMP] = ACTIONS(4691), + [anon_sym_PIPE_PIPE] = ACTIONS(4691), + [anon_sym_LT] = ACTIONS(4693), + [anon_sym_GT] = ACTIONS(4693), + [anon_sym_GT_GT] = ACTIONS(4691), + [anon_sym_AMP_GT] = ACTIONS(4693), + [anon_sym_AMP_GT_GT] = ACTIONS(4691), + [anon_sym_LT_AMP] = ACTIONS(4691), + [anon_sym_GT_AMP] = ACTIONS(4691), + [anon_sym_LT_LT] = ACTIONS(4693), + [anon_sym_LT_LT_DASH] = ACTIONS(4691), + [anon_sym_LT_LT_LT] = ACTIONS(4691), + [sym__special_characters] = ACTIONS(4691), + [anon_sym_DQUOTE] = ACTIONS(4691), + [anon_sym_DOLLAR] = ACTIONS(4693), + [sym_raw_string] = ACTIONS(4691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4691), + [anon_sym_BQUOTE] = ACTIONS(4691), + [anon_sym_LT_LPAREN] = ACTIONS(4691), + [anon_sym_GT_LPAREN] = ACTIONS(4691), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4693), + [sym_word] = ACTIONS(4693), + [anon_sym_LF] = ACTIONS(4691), + [anon_sym_AMP] = ACTIONS(4693), + }, + [2800] = { + [sym__simple_heredoc_body] = ACTIONS(4695), + [sym__heredoc_body_beginning] = ACTIONS(4695), + [sym_file_descriptor] = ACTIONS(4695), + [sym__concat] = ACTIONS(4695), + [sym_variable_name] = ACTIONS(4695), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym_esac] = ACTIONS(4697), + [anon_sym_PIPE] = ACTIONS(4697), + [anon_sym_SEMI_SEMI] = ACTIONS(4695), + [anon_sym_PIPE_AMP] = ACTIONS(4695), + [anon_sym_AMP_AMP] = ACTIONS(4695), + [anon_sym_PIPE_PIPE] = ACTIONS(4695), + [anon_sym_LT] = ACTIONS(4697), + [anon_sym_GT] = ACTIONS(4697), + [anon_sym_GT_GT] = ACTIONS(4695), + [anon_sym_AMP_GT] = ACTIONS(4697), + [anon_sym_AMP_GT_GT] = ACTIONS(4695), + [anon_sym_LT_AMP] = ACTIONS(4695), + [anon_sym_GT_AMP] = ACTIONS(4695), + [anon_sym_LT_LT] = ACTIONS(4697), + [anon_sym_LT_LT_DASH] = ACTIONS(4695), + [anon_sym_LT_LT_LT] = ACTIONS(4695), + [sym__special_characters] = ACTIONS(4695), + [anon_sym_DQUOTE] = ACTIONS(4695), + [anon_sym_DOLLAR] = ACTIONS(4697), + [sym_raw_string] = ACTIONS(4695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4695), + [anon_sym_BQUOTE] = ACTIONS(4695), + [anon_sym_LT_LPAREN] = ACTIONS(4695), + [anon_sym_GT_LPAREN] = ACTIONS(4695), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4697), + [sym_word] = ACTIONS(4697), + [anon_sym_LF] = ACTIONS(4695), + [anon_sym_AMP] = ACTIONS(4697), + }, + [2801] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6560), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2802] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6562), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2803] = { + [sym__simple_heredoc_body] = ACTIONS(4731), + [sym__heredoc_body_beginning] = ACTIONS(4731), + [sym_file_descriptor] = ACTIONS(4731), + [sym__concat] = ACTIONS(4731), + [sym_variable_name] = ACTIONS(4731), + [anon_sym_SEMI] = ACTIONS(4733), + [anon_sym_esac] = ACTIONS(4733), + [anon_sym_PIPE] = ACTIONS(4733), + [anon_sym_SEMI_SEMI] = ACTIONS(4731), + [anon_sym_PIPE_AMP] = ACTIONS(4731), + [anon_sym_AMP_AMP] = ACTIONS(4731), + [anon_sym_PIPE_PIPE] = ACTIONS(4731), + [anon_sym_LT] = ACTIONS(4733), + [anon_sym_GT] = ACTIONS(4733), + [anon_sym_GT_GT] = ACTIONS(4731), + [anon_sym_AMP_GT] = ACTIONS(4733), + [anon_sym_AMP_GT_GT] = ACTIONS(4731), + [anon_sym_LT_AMP] = ACTIONS(4731), + [anon_sym_GT_AMP] = ACTIONS(4731), + [anon_sym_LT_LT] = ACTIONS(4733), + [anon_sym_LT_LT_DASH] = ACTIONS(4731), + [anon_sym_LT_LT_LT] = ACTIONS(4731), + [sym__special_characters] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4731), + [anon_sym_DOLLAR] = ACTIONS(4733), + [sym_raw_string] = ACTIONS(4731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4731), + [anon_sym_BQUOTE] = ACTIONS(4731), + [anon_sym_LT_LPAREN] = ACTIONS(4731), + [anon_sym_GT_LPAREN] = ACTIONS(4731), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4733), + [sym_word] = ACTIONS(4733), + [anon_sym_LF] = ACTIONS(4731), + [anon_sym_AMP] = ACTIONS(4733), + }, + [2804] = { + [sym__simple_heredoc_body] = ACTIONS(4751), + [sym__heredoc_body_beginning] = ACTIONS(4751), + [sym_file_descriptor] = ACTIONS(4751), + [sym__concat] = ACTIONS(4751), + [sym_variable_name] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4753), + [anon_sym_esac] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4753), + [anon_sym_SEMI_SEMI] = ACTIONS(4751), + [anon_sym_PIPE_AMP] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_GT_GT] = ACTIONS(4751), + [anon_sym_AMP_GT] = ACTIONS(4753), + [anon_sym_AMP_GT_GT] = ACTIONS(4751), + [anon_sym_LT_AMP] = ACTIONS(4751), + [anon_sym_GT_AMP] = ACTIONS(4751), + [anon_sym_LT_LT] = ACTIONS(4753), + [anon_sym_LT_LT_DASH] = ACTIONS(4751), + [anon_sym_LT_LT_LT] = ACTIONS(4751), + [sym__special_characters] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4753), + [sym_raw_string] = ACTIONS(4751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4751), + [anon_sym_BQUOTE] = ACTIONS(4751), + [anon_sym_LT_LPAREN] = ACTIONS(4751), + [anon_sym_GT_LPAREN] = ACTIONS(4751), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4753), + [sym_word] = ACTIONS(4753), + [anon_sym_LF] = ACTIONS(4751), + [anon_sym_AMP] = ACTIONS(4753), + }, + [2805] = { + [sym__simple_heredoc_body] = ACTIONS(4755), + [sym__heredoc_body_beginning] = ACTIONS(4755), + [sym_file_descriptor] = ACTIONS(4755), + [sym__concat] = ACTIONS(4755), + [sym_variable_name] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4757), + [anon_sym_esac] = ACTIONS(4757), + [anon_sym_PIPE] = ACTIONS(4757), + [anon_sym_SEMI_SEMI] = ACTIONS(4755), + [anon_sym_PIPE_AMP] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4755), + [anon_sym_PIPE_PIPE] = ACTIONS(4755), + [anon_sym_LT] = ACTIONS(4757), + [anon_sym_GT] = ACTIONS(4757), + [anon_sym_GT_GT] = ACTIONS(4755), + [anon_sym_AMP_GT] = ACTIONS(4757), + [anon_sym_AMP_GT_GT] = ACTIONS(4755), + [anon_sym_LT_AMP] = ACTIONS(4755), + [anon_sym_GT_AMP] = ACTIONS(4755), + [anon_sym_LT_LT] = ACTIONS(4757), + [anon_sym_LT_LT_DASH] = ACTIONS(4755), + [anon_sym_LT_LT_LT] = ACTIONS(4755), + [sym__special_characters] = ACTIONS(4755), + [anon_sym_DQUOTE] = ACTIONS(4755), + [anon_sym_DOLLAR] = ACTIONS(4757), + [sym_raw_string] = ACTIONS(4755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4755), + [anon_sym_BQUOTE] = ACTIONS(4755), + [anon_sym_LT_LPAREN] = ACTIONS(4755), + [anon_sym_GT_LPAREN] = ACTIONS(4755), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4757), + [sym_word] = ACTIONS(4757), + [anon_sym_LF] = ACTIONS(4755), + [anon_sym_AMP] = ACTIONS(4757), + }, + [2806] = { + [sym__simple_heredoc_body] = ACTIONS(4687), + [sym__heredoc_body_beginning] = ACTIONS(4687), + [sym_file_descriptor] = ACTIONS(4687), + [sym__concat] = ACTIONS(4687), + [anon_sym_SEMI] = ACTIONS(4689), + [anon_sym_esac] = ACTIONS(4689), + [anon_sym_PIPE] = ACTIONS(4689), + [anon_sym_SEMI_SEMI] = ACTIONS(4687), + [anon_sym_PIPE_AMP] = ACTIONS(4687), + [anon_sym_AMP_AMP] = ACTIONS(4687), + [anon_sym_PIPE_PIPE] = ACTIONS(4687), + [anon_sym_LT] = ACTIONS(4689), + [anon_sym_GT] = ACTIONS(4689), + [anon_sym_GT_GT] = ACTIONS(4687), + [anon_sym_AMP_GT] = ACTIONS(4689), + [anon_sym_AMP_GT_GT] = ACTIONS(4687), + [anon_sym_LT_AMP] = ACTIONS(4687), + [anon_sym_GT_AMP] = ACTIONS(4687), + [anon_sym_LT_LT] = ACTIONS(4689), + [anon_sym_LT_LT_DASH] = ACTIONS(4687), + [anon_sym_LT_LT_LT] = ACTIONS(4687), + [sym__special_characters] = ACTIONS(4687), + [anon_sym_DQUOTE] = ACTIONS(4687), + [anon_sym_DOLLAR] = ACTIONS(4689), + [sym_raw_string] = ACTIONS(4687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4687), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4687), + [anon_sym_BQUOTE] = ACTIONS(4687), + [anon_sym_LT_LPAREN] = ACTIONS(4687), + [anon_sym_GT_LPAREN] = ACTIONS(4687), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4689), + [sym_word] = ACTIONS(4689), + [anon_sym_LF] = ACTIONS(4687), + [anon_sym_AMP] = ACTIONS(4689), + }, + [2807] = { + [sym__simple_heredoc_body] = ACTIONS(4691), + [sym__heredoc_body_beginning] = ACTIONS(4691), + [sym_file_descriptor] = ACTIONS(4691), + [sym__concat] = ACTIONS(4691), + [anon_sym_SEMI] = ACTIONS(4693), + [anon_sym_esac] = ACTIONS(4693), + [anon_sym_PIPE] = ACTIONS(4693), + [anon_sym_SEMI_SEMI] = ACTIONS(4691), + [anon_sym_PIPE_AMP] = ACTIONS(4691), + [anon_sym_AMP_AMP] = ACTIONS(4691), + [anon_sym_PIPE_PIPE] = ACTIONS(4691), + [anon_sym_LT] = ACTIONS(4693), + [anon_sym_GT] = ACTIONS(4693), + [anon_sym_GT_GT] = ACTIONS(4691), + [anon_sym_AMP_GT] = ACTIONS(4693), + [anon_sym_AMP_GT_GT] = ACTIONS(4691), + [anon_sym_LT_AMP] = ACTIONS(4691), + [anon_sym_GT_AMP] = ACTIONS(4691), + [anon_sym_LT_LT] = ACTIONS(4693), + [anon_sym_LT_LT_DASH] = ACTIONS(4691), + [anon_sym_LT_LT_LT] = ACTIONS(4691), + [sym__special_characters] = ACTIONS(4691), + [anon_sym_DQUOTE] = ACTIONS(4691), + [anon_sym_DOLLAR] = ACTIONS(4693), + [sym_raw_string] = ACTIONS(4691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4691), + [anon_sym_BQUOTE] = ACTIONS(4691), + [anon_sym_LT_LPAREN] = ACTIONS(4691), + [anon_sym_GT_LPAREN] = ACTIONS(4691), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4693), + [sym_word] = ACTIONS(4693), + [anon_sym_LF] = ACTIONS(4691), + [anon_sym_AMP] = ACTIONS(4693), + }, + [2808] = { + [sym__simple_heredoc_body] = ACTIONS(4695), + [sym__heredoc_body_beginning] = ACTIONS(4695), + [sym_file_descriptor] = ACTIONS(4695), + [sym__concat] = ACTIONS(4695), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym_esac] = ACTIONS(4697), + [anon_sym_PIPE] = ACTIONS(4697), + [anon_sym_SEMI_SEMI] = ACTIONS(4695), + [anon_sym_PIPE_AMP] = ACTIONS(4695), + [anon_sym_AMP_AMP] = ACTIONS(4695), + [anon_sym_PIPE_PIPE] = ACTIONS(4695), + [anon_sym_LT] = ACTIONS(4697), + [anon_sym_GT] = ACTIONS(4697), + [anon_sym_GT_GT] = ACTIONS(4695), + [anon_sym_AMP_GT] = ACTIONS(4697), + [anon_sym_AMP_GT_GT] = ACTIONS(4695), + [anon_sym_LT_AMP] = ACTIONS(4695), + [anon_sym_GT_AMP] = ACTIONS(4695), + [anon_sym_LT_LT] = ACTIONS(4697), + [anon_sym_LT_LT_DASH] = ACTIONS(4695), + [anon_sym_LT_LT_LT] = ACTIONS(4695), + [sym__special_characters] = ACTIONS(4695), + [anon_sym_DQUOTE] = ACTIONS(4695), + [anon_sym_DOLLAR] = ACTIONS(4697), + [sym_raw_string] = ACTIONS(4695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4695), + [anon_sym_BQUOTE] = ACTIONS(4695), + [anon_sym_LT_LPAREN] = ACTIONS(4695), + [anon_sym_GT_LPAREN] = ACTIONS(4695), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4697), + [sym_word] = ACTIONS(4697), + [anon_sym_LF] = ACTIONS(4695), + [anon_sym_AMP] = ACTIONS(4697), + }, + [2809] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6564), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2810] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6566), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2811] = { + [sym__simple_heredoc_body] = ACTIONS(4731), + [sym__heredoc_body_beginning] = ACTIONS(4731), + [sym_file_descriptor] = ACTIONS(4731), + [sym__concat] = ACTIONS(4731), + [anon_sym_SEMI] = ACTIONS(4733), + [anon_sym_esac] = ACTIONS(4733), + [anon_sym_PIPE] = ACTIONS(4733), + [anon_sym_SEMI_SEMI] = ACTIONS(4731), + [anon_sym_PIPE_AMP] = ACTIONS(4731), + [anon_sym_AMP_AMP] = ACTIONS(4731), + [anon_sym_PIPE_PIPE] = ACTIONS(4731), + [anon_sym_LT] = ACTIONS(4733), + [anon_sym_GT] = ACTIONS(4733), + [anon_sym_GT_GT] = ACTIONS(4731), + [anon_sym_AMP_GT] = ACTIONS(4733), + [anon_sym_AMP_GT_GT] = ACTIONS(4731), + [anon_sym_LT_AMP] = ACTIONS(4731), + [anon_sym_GT_AMP] = ACTIONS(4731), + [anon_sym_LT_LT] = ACTIONS(4733), + [anon_sym_LT_LT_DASH] = ACTIONS(4731), + [anon_sym_LT_LT_LT] = ACTIONS(4731), + [sym__special_characters] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4731), + [anon_sym_DOLLAR] = ACTIONS(4733), + [sym_raw_string] = ACTIONS(4731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4731), + [anon_sym_BQUOTE] = ACTIONS(4731), + [anon_sym_LT_LPAREN] = ACTIONS(4731), + [anon_sym_GT_LPAREN] = ACTIONS(4731), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4733), + [sym_word] = ACTIONS(4733), + [anon_sym_LF] = ACTIONS(4731), + [anon_sym_AMP] = ACTIONS(4733), + }, + [2812] = { + [sym__simple_heredoc_body] = ACTIONS(4751), + [sym__heredoc_body_beginning] = ACTIONS(4751), + [sym_file_descriptor] = ACTIONS(4751), + [sym__concat] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4753), + [anon_sym_esac] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4753), + [anon_sym_SEMI_SEMI] = ACTIONS(4751), + [anon_sym_PIPE_AMP] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_GT_GT] = ACTIONS(4751), + [anon_sym_AMP_GT] = ACTIONS(4753), + [anon_sym_AMP_GT_GT] = ACTIONS(4751), + [anon_sym_LT_AMP] = ACTIONS(4751), + [anon_sym_GT_AMP] = ACTIONS(4751), + [anon_sym_LT_LT] = ACTIONS(4753), + [anon_sym_LT_LT_DASH] = ACTIONS(4751), + [anon_sym_LT_LT_LT] = ACTIONS(4751), + [sym__special_characters] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4753), + [sym_raw_string] = ACTIONS(4751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4751), + [anon_sym_BQUOTE] = ACTIONS(4751), + [anon_sym_LT_LPAREN] = ACTIONS(4751), + [anon_sym_GT_LPAREN] = ACTIONS(4751), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4753), + [sym_word] = ACTIONS(4753), + [anon_sym_LF] = ACTIONS(4751), + [anon_sym_AMP] = ACTIONS(4753), + }, + [2813] = { + [sym__simple_heredoc_body] = ACTIONS(4755), + [sym__heredoc_body_beginning] = ACTIONS(4755), + [sym_file_descriptor] = ACTIONS(4755), + [sym__concat] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4757), + [anon_sym_esac] = ACTIONS(4757), + [anon_sym_PIPE] = ACTIONS(4757), + [anon_sym_SEMI_SEMI] = ACTIONS(4755), + [anon_sym_PIPE_AMP] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4755), + [anon_sym_PIPE_PIPE] = ACTIONS(4755), + [anon_sym_LT] = ACTIONS(4757), + [anon_sym_GT] = ACTIONS(4757), + [anon_sym_GT_GT] = ACTIONS(4755), + [anon_sym_AMP_GT] = ACTIONS(4757), + [anon_sym_AMP_GT_GT] = ACTIONS(4755), + [anon_sym_LT_AMP] = ACTIONS(4755), + [anon_sym_GT_AMP] = ACTIONS(4755), + [anon_sym_LT_LT] = ACTIONS(4757), + [anon_sym_LT_LT_DASH] = ACTIONS(4755), + [anon_sym_LT_LT_LT] = ACTIONS(4755), + [sym__special_characters] = ACTIONS(4755), + [anon_sym_DQUOTE] = ACTIONS(4755), + [anon_sym_DOLLAR] = ACTIONS(4757), + [sym_raw_string] = ACTIONS(4755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4755), + [anon_sym_BQUOTE] = ACTIONS(4755), + [anon_sym_LT_LPAREN] = ACTIONS(4755), + [anon_sym_GT_LPAREN] = ACTIONS(4755), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4757), + [sym_word] = ACTIONS(4757), + [anon_sym_LF] = ACTIONS(4755), + [anon_sym_AMP] = ACTIONS(4757), + }, + [2814] = { + [sym__simple_heredoc_body] = ACTIONS(5168), + [sym__heredoc_body_beginning] = ACTIONS(5168), + [sym_file_descriptor] = ACTIONS(5168), + [sym__concat] = ACTIONS(5168), + [anon_sym_SEMI] = ACTIONS(5170), + [anon_sym_esac] = ACTIONS(5170), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_SEMI_SEMI] = ACTIONS(5168), + [anon_sym_PIPE_AMP] = ACTIONS(5168), + [anon_sym_AMP_AMP] = ACTIONS(5168), + [anon_sym_PIPE_PIPE] = ACTIONS(5168), + [anon_sym_EQ_TILDE] = ACTIONS(5170), + [anon_sym_EQ_EQ] = ACTIONS(5170), + [anon_sym_LT] = ACTIONS(5170), + [anon_sym_GT] = ACTIONS(5170), + [anon_sym_GT_GT] = ACTIONS(5168), + [anon_sym_AMP_GT] = ACTIONS(5170), + [anon_sym_AMP_GT_GT] = ACTIONS(5168), + [anon_sym_LT_AMP] = ACTIONS(5168), + [anon_sym_GT_AMP] = ACTIONS(5168), + [anon_sym_LT_LT] = ACTIONS(5170), + [anon_sym_LT_LT_DASH] = ACTIONS(5168), + [anon_sym_LT_LT_LT] = ACTIONS(5168), + [sym__special_characters] = ACTIONS(5168), + [anon_sym_DQUOTE] = ACTIONS(5168), + [anon_sym_DOLLAR] = ACTIONS(5170), + [sym_raw_string] = ACTIONS(5168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5168), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5168), + [anon_sym_BQUOTE] = ACTIONS(5168), + [anon_sym_LT_LPAREN] = ACTIONS(5168), + [anon_sym_GT_LPAREN] = ACTIONS(5168), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5170), + [anon_sym_LF] = ACTIONS(5168), + [anon_sym_AMP] = ACTIONS(5170), + }, + [2815] = { + [sym__simple_heredoc_body] = ACTIONS(5172), + [sym__heredoc_body_beginning] = ACTIONS(5172), + [sym_file_descriptor] = ACTIONS(5172), + [sym__concat] = ACTIONS(5172), + [anon_sym_SEMI] = ACTIONS(5174), + [anon_sym_esac] = ACTIONS(5174), + [anon_sym_PIPE] = ACTIONS(5174), + [anon_sym_SEMI_SEMI] = ACTIONS(5172), + [anon_sym_PIPE_AMP] = ACTIONS(5172), + [anon_sym_AMP_AMP] = ACTIONS(5172), + [anon_sym_PIPE_PIPE] = ACTIONS(5172), + [anon_sym_EQ_TILDE] = ACTIONS(5174), + [anon_sym_EQ_EQ] = ACTIONS(5174), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_GT_GT] = ACTIONS(5172), + [anon_sym_AMP_GT] = ACTIONS(5174), + [anon_sym_AMP_GT_GT] = ACTIONS(5172), + [anon_sym_LT_AMP] = ACTIONS(5172), + [anon_sym_GT_AMP] = ACTIONS(5172), + [anon_sym_LT_LT] = ACTIONS(5174), + [anon_sym_LT_LT_DASH] = ACTIONS(5172), + [anon_sym_LT_LT_LT] = ACTIONS(5172), + [sym__special_characters] = ACTIONS(5172), + [anon_sym_DQUOTE] = ACTIONS(5172), + [anon_sym_DOLLAR] = ACTIONS(5174), + [sym_raw_string] = ACTIONS(5172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5172), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5172), + [anon_sym_BQUOTE] = ACTIONS(5172), + [anon_sym_LT_LPAREN] = ACTIONS(5172), + [anon_sym_GT_LPAREN] = ACTIONS(5172), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5174), + [anon_sym_LF] = ACTIONS(5172), + [anon_sym_AMP] = ACTIONS(5174), + }, + [2816] = { + [sym__simple_heredoc_body] = ACTIONS(3921), + [sym__heredoc_body_beginning] = ACTIONS(3921), + [sym_file_descriptor] = ACTIONS(3921), + [sym__concat] = ACTIONS(3921), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym_esac] = ACTIONS(3921), + [anon_sym_PIPE] = ACTIONS(3923), + [anon_sym_SEMI_SEMI] = ACTIONS(3921), + [anon_sym_PIPE_AMP] = ACTIONS(3921), + [anon_sym_AMP_AMP] = ACTIONS(3921), + [anon_sym_PIPE_PIPE] = ACTIONS(3921), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_GT] = ACTIONS(3923), + [anon_sym_GT_GT] = ACTIONS(3921), + [anon_sym_AMP_GT] = ACTIONS(3923), + [anon_sym_AMP_GT_GT] = ACTIONS(3921), + [anon_sym_LT_AMP] = ACTIONS(3921), + [anon_sym_GT_AMP] = ACTIONS(3921), + [anon_sym_LT_LT] = ACTIONS(3923), + [anon_sym_LT_LT_DASH] = ACTIONS(3921), + [anon_sym_LT_LT_LT] = ACTIONS(3921), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3921), + [anon_sym_AMP] = ACTIONS(3923), + }, + [2817] = { + [sym__simple_heredoc_body] = ACTIONS(3929), + [sym__heredoc_body_beginning] = ACTIONS(3929), + [sym_file_descriptor] = ACTIONS(3929), + [sym__concat] = ACTIONS(3929), + [anon_sym_SEMI] = ACTIONS(3931), + [anon_sym_esac] = ACTIONS(3929), + [anon_sym_PIPE] = ACTIONS(3931), + [anon_sym_SEMI_SEMI] = ACTIONS(3929), + [anon_sym_PIPE_AMP] = ACTIONS(3929), + [anon_sym_AMP_AMP] = ACTIONS(3929), + [anon_sym_PIPE_PIPE] = ACTIONS(3929), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_GT] = ACTIONS(3931), + [anon_sym_GT_GT] = ACTIONS(3929), + [anon_sym_AMP_GT] = ACTIONS(3931), + [anon_sym_AMP_GT_GT] = ACTIONS(3929), + [anon_sym_LT_AMP] = ACTIONS(3929), + [anon_sym_GT_AMP] = ACTIONS(3929), + [anon_sym_LT_LT] = ACTIONS(3931), + [anon_sym_LT_LT_DASH] = ACTIONS(3929), + [anon_sym_LT_LT_LT] = ACTIONS(3929), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3931), + }, + [2818] = { + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(6568), + [sym_comment] = ACTIONS(57), + }, + [2819] = { + [aux_sym_concatenation_repeat1] = STATE(1352), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(6570), + [sym_comment] = ACTIONS(57), + }, + [2820] = { + [anon_sym_RBRACE] = ACTIONS(6570), + [sym_comment] = ACTIONS(57), + }, + [2821] = { + [sym_concatenation] = STATE(2848), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2848), + [anon_sym_RBRACE] = ACTIONS(6572), + [anon_sym_EQ] = ACTIONS(6574), + [anon_sym_DASH] = ACTIONS(6574), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6576), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6574), + [anon_sym_COLON_QMARK] = ACTIONS(6574), + [anon_sym_COLON_DASH] = ACTIONS(6574), + [anon_sym_PERCENT] = ACTIONS(6574), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2822] = { + [sym__simple_heredoc_body] = ACTIONS(3985), + [sym__heredoc_body_beginning] = ACTIONS(3985), + [sym_file_descriptor] = ACTIONS(3985), + [sym__concat] = ACTIONS(3985), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym_esac] = ACTIONS(3985), + [anon_sym_PIPE] = ACTIONS(3987), + [anon_sym_SEMI_SEMI] = ACTIONS(3985), + [anon_sym_PIPE_AMP] = ACTIONS(3985), + [anon_sym_AMP_AMP] = ACTIONS(3985), + [anon_sym_PIPE_PIPE] = ACTIONS(3985), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [anon_sym_GT_GT] = ACTIONS(3985), + [anon_sym_AMP_GT] = ACTIONS(3987), + [anon_sym_AMP_GT_GT] = ACTIONS(3985), + [anon_sym_LT_AMP] = ACTIONS(3985), + [anon_sym_GT_AMP] = ACTIONS(3985), + [anon_sym_LT_LT] = ACTIONS(3987), + [anon_sym_LT_LT_DASH] = ACTIONS(3985), + [anon_sym_LT_LT_LT] = ACTIONS(3985), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(3985), + [anon_sym_AMP] = ACTIONS(3987), + }, + [2823] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6572), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2824] = { + [sym_concatenation] = STATE(2849), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(2849), + [anon_sym_RBRACE] = ACTIONS(6570), + [anon_sym_EQ] = ACTIONS(6578), + [anon_sym_DASH] = ACTIONS(6578), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(6580), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(6578), + [anon_sym_COLON_QMARK] = ACTIONS(6578), + [anon_sym_COLON_DASH] = ACTIONS(6578), + [anon_sym_PERCENT] = ACTIONS(6578), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2825] = { + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6570), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), + }, + [2826] = { + [sym__simple_heredoc_body] = ACTIONS(4030), + [sym__heredoc_body_beginning] = ACTIONS(4030), + [sym_file_descriptor] = ACTIONS(4030), + [sym__concat] = ACTIONS(4030), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_esac] = ACTIONS(4030), + [anon_sym_PIPE] = ACTIONS(4032), + [anon_sym_SEMI_SEMI] = ACTIONS(4030), + [anon_sym_PIPE_AMP] = ACTIONS(4030), + [anon_sym_AMP_AMP] = ACTIONS(4030), + [anon_sym_PIPE_PIPE] = ACTIONS(4030), + [anon_sym_LT] = ACTIONS(4032), + [anon_sym_GT] = ACTIONS(4032), + [anon_sym_GT_GT] = ACTIONS(4030), + [anon_sym_AMP_GT] = ACTIONS(4032), + [anon_sym_AMP_GT_GT] = ACTIONS(4030), + [anon_sym_LT_AMP] = ACTIONS(4030), + [anon_sym_GT_AMP] = ACTIONS(4030), + [anon_sym_LT_LT] = ACTIONS(4032), + [anon_sym_LT_LT_DASH] = ACTIONS(4030), + [anon_sym_LT_LT_LT] = ACTIONS(4030), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4030), + [anon_sym_AMP] = ACTIONS(4032), }, [2827] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6538), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6582), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2828] = { - [sym_file_descriptor] = ACTIONS(4043), - [sym__concat] = ACTIONS(4043), - [sym_variable_name] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4045), - [anon_sym_esac] = ACTIONS(4045), - [anon_sym_PIPE] = ACTIONS(4045), - [anon_sym_SEMI_SEMI] = ACTIONS(4043), - [anon_sym_PIPE_AMP] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4045), - [anon_sym_GT] = ACTIONS(4045), - [anon_sym_GT_GT] = ACTIONS(4043), - [anon_sym_AMP_GT] = ACTIONS(4045), - [anon_sym_AMP_GT_GT] = ACTIONS(4043), - [anon_sym_LT_AMP] = ACTIONS(4043), - [anon_sym_GT_AMP] = ACTIONS(4043), - [sym__special_characters] = ACTIONS(4043), - [anon_sym_DQUOTE] = ACTIONS(4043), - [anon_sym_DOLLAR] = ACTIONS(4045), - [sym_raw_string] = ACTIONS(4043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4043), - [anon_sym_BQUOTE] = ACTIONS(4043), - [anon_sym_LT_LPAREN] = ACTIONS(4043), - [anon_sym_GT_LPAREN] = ACTIONS(4043), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4045), - [anon_sym_LF] = ACTIONS(4043), - [anon_sym_AMP] = ACTIONS(4045), + [sym__simple_heredoc_body] = ACTIONS(4064), + [sym__heredoc_body_beginning] = ACTIONS(4064), + [sym_file_descriptor] = ACTIONS(4064), + [sym__concat] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4066), + [anon_sym_esac] = ACTIONS(4064), + [anon_sym_PIPE] = ACTIONS(4066), + [anon_sym_SEMI_SEMI] = ACTIONS(4064), + [anon_sym_PIPE_AMP] = ACTIONS(4064), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_PIPE_PIPE] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(4066), + [anon_sym_GT] = ACTIONS(4066), + [anon_sym_GT_GT] = ACTIONS(4064), + [anon_sym_AMP_GT] = ACTIONS(4066), + [anon_sym_AMP_GT_GT] = ACTIONS(4064), + [anon_sym_LT_AMP] = ACTIONS(4064), + [anon_sym_GT_AMP] = ACTIONS(4064), + [anon_sym_LT_LT] = ACTIONS(4066), + [anon_sym_LT_LT_DASH] = ACTIONS(4064), + [anon_sym_LT_LT_LT] = ACTIONS(4064), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4066), }, [2829] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6550), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(6584), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [2830] = { - [sym_file_descriptor] = ACTIONS(4065), - [sym__concat] = ACTIONS(4065), - [sym_variable_name] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_esac] = ACTIONS(4067), - [anon_sym_PIPE] = ACTIONS(4067), - [anon_sym_SEMI_SEMI] = ACTIONS(4065), - [anon_sym_PIPE_AMP] = ACTIONS(4065), - [anon_sym_AMP_AMP] = ACTIONS(4065), - [anon_sym_PIPE_PIPE] = ACTIONS(4065), - [anon_sym_LT] = ACTIONS(4067), - [anon_sym_GT] = ACTIONS(4067), - [anon_sym_GT_GT] = ACTIONS(4065), - [anon_sym_AMP_GT] = ACTIONS(4067), - [anon_sym_AMP_GT_GT] = ACTIONS(4065), - [anon_sym_LT_AMP] = ACTIONS(4065), - [anon_sym_GT_AMP] = ACTIONS(4065), - [sym__special_characters] = ACTIONS(4065), - [anon_sym_DQUOTE] = ACTIONS(4065), - [anon_sym_DOLLAR] = ACTIONS(4067), - [sym_raw_string] = ACTIONS(4065), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4065), - [anon_sym_BQUOTE] = ACTIONS(4065), - [anon_sym_LT_LPAREN] = ACTIONS(4065), - [anon_sym_GT_LPAREN] = ACTIONS(4065), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4067), - [anon_sym_LF] = ACTIONS(4065), - [anon_sym_AMP] = ACTIONS(4067), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(6584), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(1988), }, [2831] = { - [sym_file_descriptor] = ACTIONS(4089), - [sym__concat] = ACTIONS(4089), - [sym_variable_name] = ACTIONS(4089), - [anon_sym_SEMI] = ACTIONS(4091), - [anon_sym_esac] = ACTIONS(4091), - [anon_sym_PIPE] = ACTIONS(4091), - [anon_sym_SEMI_SEMI] = ACTIONS(4089), - [anon_sym_PIPE_AMP] = ACTIONS(4089), - [anon_sym_AMP_AMP] = ACTIONS(4089), - [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_LT] = ACTIONS(4091), - [anon_sym_GT] = ACTIONS(4091), - [anon_sym_GT_GT] = ACTIONS(4089), - [anon_sym_AMP_GT] = ACTIONS(4091), - [anon_sym_AMP_GT_GT] = ACTIONS(4089), - [anon_sym_LT_AMP] = ACTIONS(4089), - [anon_sym_GT_AMP] = ACTIONS(4089), - [sym__special_characters] = ACTIONS(4089), - [anon_sym_DQUOTE] = ACTIONS(4089), - [anon_sym_DOLLAR] = ACTIONS(4091), - [sym_raw_string] = ACTIONS(4089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4089), - [anon_sym_BQUOTE] = ACTIONS(4089), - [anon_sym_LT_LPAREN] = ACTIONS(4089), - [anon_sym_GT_LPAREN] = ACTIONS(4089), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4091), - [anon_sym_LF] = ACTIONS(4089), - [anon_sym_AMP] = ACTIONS(4091), + [sym__simple_heredoc_body] = ACTIONS(4070), + [sym__heredoc_body_beginning] = ACTIONS(4070), + [sym_file_descriptor] = ACTIONS(4070), + [sym__concat] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym_esac] = ACTIONS(4070), + [anon_sym_PIPE] = ACTIONS(4072), + [anon_sym_SEMI_SEMI] = ACTIONS(4070), + [anon_sym_PIPE_AMP] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_PIPE_PIPE] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4072), + [anon_sym_GT] = ACTIONS(4072), + [anon_sym_GT_GT] = ACTIONS(4070), + [anon_sym_AMP_GT] = ACTIONS(4072), + [anon_sym_AMP_GT_GT] = ACTIONS(4070), + [anon_sym_LT_AMP] = ACTIONS(4070), + [anon_sym_GT_AMP] = ACTIONS(4070), + [anon_sym_LT_LT] = ACTIONS(4072), + [anon_sym_LT_LT_DASH] = ACTIONS(4070), + [anon_sym_LT_LT_LT] = ACTIONS(4070), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4072), }, [2832] = { - [aux_sym_concatenation_repeat1] = STATE(2832), - [sym_file_descriptor] = ACTIONS(1763), - [sym__concat] = ACTIONS(4936), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_esac] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1765), - [anon_sym_GT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1763), - [anon_sym_AMP_GT] = ACTIONS(1765), - [anon_sym_AMP_GT_GT] = ACTIONS(1763), - [anon_sym_LT_AMP] = ACTIONS(1763), - [anon_sym_GT_AMP] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_LT_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT_LT] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym_file_descriptor] = ACTIONS(1984), + [sym_variable_name] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(6586), + [anon_sym_function] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1984), + [anon_sym_declare] = ACTIONS(1988), + [anon_sym_typeset] = ACTIONS(1988), + [anon_sym_export] = ACTIONS(1988), + [anon_sym_readonly] = ACTIONS(1988), + [anon_sym_local] = ACTIONS(1988), + [anon_sym_unset] = ACTIONS(1988), + [anon_sym_unsetenv] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_GT] = ACTIONS(1988), + [anon_sym_GT_GT] = ACTIONS(1984), + [anon_sym_AMP_GT] = ACTIONS(1988), + [anon_sym_AMP_GT_GT] = ACTIONS(1984), + [anon_sym_LT_AMP] = ACTIONS(1984), + [anon_sym_GT_AMP] = ACTIONS(1984), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1988), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [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(57), + [sym_word] = ACTIONS(1988), }, [2833] = { - [aux_sym_concatenation_repeat1] = STATE(2833), - [sym__concat] = ACTIONS(3354), - [anon_sym_SEMI] = ACTIONS(1765), - [anon_sym_esac] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1765), - [anon_sym_SEMI_SEMI] = ACTIONS(1763), - [anon_sym_PIPE_AMP] = ACTIONS(1763), - [anon_sym_AMP_AMP] = ACTIONS(1763), - [anon_sym_PIPE_PIPE] = ACTIONS(1763), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1765), + [sym__simple_heredoc_body] = ACTIONS(4687), + [sym__heredoc_body_beginning] = ACTIONS(4687), + [sym_file_descriptor] = ACTIONS(4687), + [sym__concat] = ACTIONS(4687), + [sym_variable_name] = ACTIONS(4687), + [anon_sym_SEMI] = ACTIONS(4689), + [anon_sym_esac] = ACTIONS(4689), + [anon_sym_PIPE] = ACTIONS(4689), + [anon_sym_SEMI_SEMI] = ACTIONS(4687), + [anon_sym_PIPE_AMP] = ACTIONS(4687), + [anon_sym_AMP_AMP] = ACTIONS(4687), + [anon_sym_PIPE_PIPE] = ACTIONS(4687), + [anon_sym_LT] = ACTIONS(4689), + [anon_sym_GT] = ACTIONS(4689), + [anon_sym_GT_GT] = ACTIONS(4687), + [anon_sym_AMP_GT] = ACTIONS(4689), + [anon_sym_AMP_GT_GT] = ACTIONS(4687), + [anon_sym_LT_AMP] = ACTIONS(4687), + [anon_sym_GT_AMP] = ACTIONS(4687), + [anon_sym_LT_LT] = ACTIONS(4689), + [anon_sym_LT_LT_DASH] = ACTIONS(4687), + [anon_sym_LT_LT_LT] = ACTIONS(4687), + [sym__special_characters] = ACTIONS(4687), + [anon_sym_DQUOTE] = ACTIONS(4687), + [anon_sym_DOLLAR] = ACTIONS(4689), + [sym_raw_string] = ACTIONS(4687), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4687), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4687), + [anon_sym_BQUOTE] = ACTIONS(4687), + [anon_sym_LT_LPAREN] = ACTIONS(4687), + [anon_sym_GT_LPAREN] = ACTIONS(4687), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4689), + [anon_sym_LF] = ACTIONS(4687), + [anon_sym_AMP] = ACTIONS(4689), }, [2834] = { - [sym__concat] = ACTIONS(4710), - [sym_variable_name] = ACTIONS(4710), - [anon_sym_SEMI] = ACTIONS(4712), - [anon_sym_esac] = ACTIONS(4712), - [anon_sym_PIPE] = ACTIONS(4712), - [anon_sym_SEMI_SEMI] = ACTIONS(4710), - [anon_sym_PIPE_AMP] = ACTIONS(4710), - [anon_sym_AMP_AMP] = ACTIONS(4710), - [anon_sym_PIPE_PIPE] = ACTIONS(4710), - [sym__special_characters] = ACTIONS(4710), - [anon_sym_DQUOTE] = ACTIONS(4710), - [anon_sym_DOLLAR] = ACTIONS(4712), - [sym_raw_string] = ACTIONS(4710), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), - [anon_sym_BQUOTE] = ACTIONS(4710), - [anon_sym_LT_LPAREN] = ACTIONS(4710), - [anon_sym_GT_LPAREN] = ACTIONS(4710), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4712), - [sym_word] = ACTIONS(4712), - [anon_sym_LF] = ACTIONS(4710), - [anon_sym_AMP] = ACTIONS(4712), + [sym__simple_heredoc_body] = ACTIONS(4691), + [sym__heredoc_body_beginning] = ACTIONS(4691), + [sym_file_descriptor] = ACTIONS(4691), + [sym__concat] = ACTIONS(4691), + [sym_variable_name] = ACTIONS(4691), + [anon_sym_SEMI] = ACTIONS(4693), + [anon_sym_esac] = ACTIONS(4693), + [anon_sym_PIPE] = ACTIONS(4693), + [anon_sym_SEMI_SEMI] = ACTIONS(4691), + [anon_sym_PIPE_AMP] = ACTIONS(4691), + [anon_sym_AMP_AMP] = ACTIONS(4691), + [anon_sym_PIPE_PIPE] = ACTIONS(4691), + [anon_sym_LT] = ACTIONS(4693), + [anon_sym_GT] = ACTIONS(4693), + [anon_sym_GT_GT] = ACTIONS(4691), + [anon_sym_AMP_GT] = ACTIONS(4693), + [anon_sym_AMP_GT_GT] = ACTIONS(4691), + [anon_sym_LT_AMP] = ACTIONS(4691), + [anon_sym_GT_AMP] = ACTIONS(4691), + [anon_sym_LT_LT] = ACTIONS(4693), + [anon_sym_LT_LT_DASH] = ACTIONS(4691), + [anon_sym_LT_LT_LT] = ACTIONS(4691), + [sym__special_characters] = ACTIONS(4691), + [anon_sym_DQUOTE] = ACTIONS(4691), + [anon_sym_DOLLAR] = ACTIONS(4693), + [sym_raw_string] = ACTIONS(4691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4691), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4691), + [anon_sym_BQUOTE] = ACTIONS(4691), + [anon_sym_LT_LPAREN] = ACTIONS(4691), + [anon_sym_GT_LPAREN] = ACTIONS(4691), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4693), + [anon_sym_LF] = ACTIONS(4691), + [anon_sym_AMP] = ACTIONS(4693), }, [2835] = { - [sym__concat] = ACTIONS(4714), - [sym_variable_name] = ACTIONS(4714), - [anon_sym_SEMI] = ACTIONS(4716), - [anon_sym_esac] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4716), - [anon_sym_SEMI_SEMI] = ACTIONS(4714), - [anon_sym_PIPE_AMP] = ACTIONS(4714), - [anon_sym_AMP_AMP] = ACTIONS(4714), - [anon_sym_PIPE_PIPE] = ACTIONS(4714), - [sym__special_characters] = ACTIONS(4714), - [anon_sym_DQUOTE] = ACTIONS(4714), - [anon_sym_DOLLAR] = ACTIONS(4716), - [sym_raw_string] = ACTIONS(4714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), - [anon_sym_BQUOTE] = ACTIONS(4714), - [anon_sym_LT_LPAREN] = ACTIONS(4714), - [anon_sym_GT_LPAREN] = ACTIONS(4714), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4716), - [sym_word] = ACTIONS(4716), - [anon_sym_LF] = ACTIONS(4714), - [anon_sym_AMP] = ACTIONS(4716), + [sym__simple_heredoc_body] = ACTIONS(4695), + [sym__heredoc_body_beginning] = ACTIONS(4695), + [sym_file_descriptor] = ACTIONS(4695), + [sym__concat] = ACTIONS(4695), + [sym_variable_name] = ACTIONS(4695), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym_esac] = ACTIONS(4697), + [anon_sym_PIPE] = ACTIONS(4697), + [anon_sym_SEMI_SEMI] = ACTIONS(4695), + [anon_sym_PIPE_AMP] = ACTIONS(4695), + [anon_sym_AMP_AMP] = ACTIONS(4695), + [anon_sym_PIPE_PIPE] = ACTIONS(4695), + [anon_sym_LT] = ACTIONS(4697), + [anon_sym_GT] = ACTIONS(4697), + [anon_sym_GT_GT] = ACTIONS(4695), + [anon_sym_AMP_GT] = ACTIONS(4697), + [anon_sym_AMP_GT_GT] = ACTIONS(4695), + [anon_sym_LT_AMP] = ACTIONS(4695), + [anon_sym_GT_AMP] = ACTIONS(4695), + [anon_sym_LT_LT] = ACTIONS(4697), + [anon_sym_LT_LT_DASH] = ACTIONS(4695), + [anon_sym_LT_LT_LT] = ACTIONS(4695), + [sym__special_characters] = ACTIONS(4695), + [anon_sym_DQUOTE] = ACTIONS(4695), + [anon_sym_DOLLAR] = ACTIONS(4697), + [sym_raw_string] = ACTIONS(4695), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4695), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4695), + [anon_sym_BQUOTE] = ACTIONS(4695), + [anon_sym_LT_LPAREN] = ACTIONS(4695), + [anon_sym_GT_LPAREN] = ACTIONS(4695), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4697), + [anon_sym_LF] = ACTIONS(4695), + [anon_sym_AMP] = ACTIONS(4697), }, [2836] = { - [sym__concat] = ACTIONS(4718), - [sym_variable_name] = ACTIONS(4718), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_esac] = ACTIONS(4720), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_SEMI_SEMI] = ACTIONS(4718), - [anon_sym_PIPE_AMP] = ACTIONS(4718), - [anon_sym_AMP_AMP] = ACTIONS(4718), - [anon_sym_PIPE_PIPE] = ACTIONS(4718), - [sym__special_characters] = ACTIONS(4718), - [anon_sym_DQUOTE] = ACTIONS(4718), - [anon_sym_DOLLAR] = ACTIONS(4720), - [sym_raw_string] = ACTIONS(4718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), - [anon_sym_BQUOTE] = ACTIONS(4718), - [anon_sym_LT_LPAREN] = ACTIONS(4718), - [anon_sym_GT_LPAREN] = ACTIONS(4718), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4720), - [sym_word] = ACTIONS(4720), - [anon_sym_LF] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6588), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2837] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6552), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6590), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2838] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6554), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(4731), + [sym__heredoc_body_beginning] = ACTIONS(4731), + [sym_file_descriptor] = ACTIONS(4731), + [sym__concat] = ACTIONS(4731), + [sym_variable_name] = ACTIONS(4731), + [anon_sym_SEMI] = ACTIONS(4733), + [anon_sym_esac] = ACTIONS(4733), + [anon_sym_PIPE] = ACTIONS(4733), + [anon_sym_SEMI_SEMI] = ACTIONS(4731), + [anon_sym_PIPE_AMP] = ACTIONS(4731), + [anon_sym_AMP_AMP] = ACTIONS(4731), + [anon_sym_PIPE_PIPE] = ACTIONS(4731), + [anon_sym_LT] = ACTIONS(4733), + [anon_sym_GT] = ACTIONS(4733), + [anon_sym_GT_GT] = ACTIONS(4731), + [anon_sym_AMP_GT] = ACTIONS(4733), + [anon_sym_AMP_GT_GT] = ACTIONS(4731), + [anon_sym_LT_AMP] = ACTIONS(4731), + [anon_sym_GT_AMP] = ACTIONS(4731), + [anon_sym_LT_LT] = ACTIONS(4733), + [anon_sym_LT_LT_DASH] = ACTIONS(4731), + [anon_sym_LT_LT_LT] = ACTIONS(4731), + [sym__special_characters] = ACTIONS(4731), + [anon_sym_DQUOTE] = ACTIONS(4731), + [anon_sym_DOLLAR] = ACTIONS(4733), + [sym_raw_string] = ACTIONS(4731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4731), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4731), + [anon_sym_BQUOTE] = ACTIONS(4731), + [anon_sym_LT_LPAREN] = ACTIONS(4731), + [anon_sym_GT_LPAREN] = ACTIONS(4731), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4733), + [anon_sym_LF] = ACTIONS(4731), + [anon_sym_AMP] = ACTIONS(4733), }, [2839] = { - [sym__concat] = ACTIONS(4754), - [sym_variable_name] = ACTIONS(4754), - [anon_sym_SEMI] = ACTIONS(4756), - [anon_sym_esac] = ACTIONS(4756), - [anon_sym_PIPE] = ACTIONS(4756), - [anon_sym_SEMI_SEMI] = ACTIONS(4754), - [anon_sym_PIPE_AMP] = ACTIONS(4754), - [anon_sym_AMP_AMP] = ACTIONS(4754), - [anon_sym_PIPE_PIPE] = ACTIONS(4754), - [sym__special_characters] = ACTIONS(4754), - [anon_sym_DQUOTE] = ACTIONS(4754), - [anon_sym_DOLLAR] = ACTIONS(4756), - [sym_raw_string] = ACTIONS(4754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), - [anon_sym_BQUOTE] = ACTIONS(4754), - [anon_sym_LT_LPAREN] = ACTIONS(4754), - [anon_sym_GT_LPAREN] = ACTIONS(4754), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4756), - [sym_word] = ACTIONS(4756), - [anon_sym_LF] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4756), + [sym__simple_heredoc_body] = ACTIONS(4751), + [sym__heredoc_body_beginning] = ACTIONS(4751), + [sym_file_descriptor] = ACTIONS(4751), + [sym__concat] = ACTIONS(4751), + [sym_variable_name] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4753), + [anon_sym_esac] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4753), + [anon_sym_SEMI_SEMI] = ACTIONS(4751), + [anon_sym_PIPE_AMP] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_GT_GT] = ACTIONS(4751), + [anon_sym_AMP_GT] = ACTIONS(4753), + [anon_sym_AMP_GT_GT] = ACTIONS(4751), + [anon_sym_LT_AMP] = ACTIONS(4751), + [anon_sym_GT_AMP] = ACTIONS(4751), + [anon_sym_LT_LT] = ACTIONS(4753), + [anon_sym_LT_LT_DASH] = ACTIONS(4751), + [anon_sym_LT_LT_LT] = ACTIONS(4751), + [sym__special_characters] = ACTIONS(4751), + [anon_sym_DQUOTE] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4753), + [sym_raw_string] = ACTIONS(4751), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4751), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4751), + [anon_sym_BQUOTE] = ACTIONS(4751), + [anon_sym_LT_LPAREN] = ACTIONS(4751), + [anon_sym_GT_LPAREN] = ACTIONS(4751), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4753), + [anon_sym_LF] = ACTIONS(4751), + [anon_sym_AMP] = ACTIONS(4753), }, [2840] = { - [sym__concat] = ACTIONS(4710), - [anon_sym_SEMI] = ACTIONS(4712), - [anon_sym_esac] = ACTIONS(4712), - [anon_sym_PIPE] = ACTIONS(4712), - [anon_sym_SEMI_SEMI] = ACTIONS(4710), - [anon_sym_PIPE_AMP] = ACTIONS(4710), - [anon_sym_AMP_AMP] = ACTIONS(4710), - [anon_sym_PIPE_PIPE] = ACTIONS(4710), - [sym__special_characters] = ACTIONS(4710), - [anon_sym_DQUOTE] = ACTIONS(4710), - [anon_sym_DOLLAR] = ACTIONS(4712), - [sym_raw_string] = ACTIONS(4710), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), - [anon_sym_BQUOTE] = ACTIONS(4710), - [anon_sym_LT_LPAREN] = ACTIONS(4710), - [anon_sym_GT_LPAREN] = ACTIONS(4710), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4712), - [sym_word] = ACTIONS(4712), - [anon_sym_LF] = ACTIONS(4710), - [anon_sym_AMP] = ACTIONS(4712), + [sym__simple_heredoc_body] = ACTIONS(4755), + [sym__heredoc_body_beginning] = ACTIONS(4755), + [sym_file_descriptor] = ACTIONS(4755), + [sym__concat] = ACTIONS(4755), + [sym_variable_name] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4757), + [anon_sym_esac] = ACTIONS(4757), + [anon_sym_PIPE] = ACTIONS(4757), + [anon_sym_SEMI_SEMI] = ACTIONS(4755), + [anon_sym_PIPE_AMP] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4755), + [anon_sym_PIPE_PIPE] = ACTIONS(4755), + [anon_sym_LT] = ACTIONS(4757), + [anon_sym_GT] = ACTIONS(4757), + [anon_sym_GT_GT] = ACTIONS(4755), + [anon_sym_AMP_GT] = ACTIONS(4757), + [anon_sym_AMP_GT_GT] = ACTIONS(4755), + [anon_sym_LT_AMP] = ACTIONS(4755), + [anon_sym_GT_AMP] = ACTIONS(4755), + [anon_sym_LT_LT] = ACTIONS(4757), + [anon_sym_LT_LT_DASH] = ACTIONS(4755), + [anon_sym_LT_LT_LT] = ACTIONS(4755), + [sym__special_characters] = ACTIONS(4755), + [anon_sym_DQUOTE] = ACTIONS(4755), + [anon_sym_DOLLAR] = ACTIONS(4757), + [sym_raw_string] = ACTIONS(4755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4755), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4755), + [anon_sym_BQUOTE] = ACTIONS(4755), + [anon_sym_LT_LPAREN] = ACTIONS(4755), + [anon_sym_GT_LPAREN] = ACTIONS(4755), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(4757), + [anon_sym_LF] = ACTIONS(4755), + [anon_sym_AMP] = ACTIONS(4757), }, [2841] = { - [sym__concat] = ACTIONS(4714), - [anon_sym_SEMI] = ACTIONS(4716), - [anon_sym_esac] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4716), - [anon_sym_SEMI_SEMI] = ACTIONS(4714), - [anon_sym_PIPE_AMP] = ACTIONS(4714), - [anon_sym_AMP_AMP] = ACTIONS(4714), - [anon_sym_PIPE_PIPE] = ACTIONS(4714), - [sym__special_characters] = ACTIONS(4714), - [anon_sym_DQUOTE] = ACTIONS(4714), - [anon_sym_DOLLAR] = ACTIONS(4716), - [sym_raw_string] = ACTIONS(4714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), - [anon_sym_BQUOTE] = ACTIONS(4714), - [anon_sym_LT_LPAREN] = ACTIONS(4714), - [anon_sym_GT_LPAREN] = ACTIONS(4714), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4716), - [sym_word] = ACTIONS(4716), - [anon_sym_LF] = ACTIONS(4714), - [anon_sym_AMP] = ACTIONS(4716), + [sym__simple_heredoc_body] = ACTIONS(5168), + [sym__heredoc_body_beginning] = ACTIONS(5168), + [sym_file_descriptor] = ACTIONS(5168), + [sym__concat] = ACTIONS(5168), + [sym_variable_name] = ACTIONS(5168), + [anon_sym_SEMI] = ACTIONS(5170), + [anon_sym_esac] = ACTIONS(5170), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_SEMI_SEMI] = ACTIONS(5168), + [anon_sym_PIPE_AMP] = ACTIONS(5168), + [anon_sym_AMP_AMP] = ACTIONS(5168), + [anon_sym_PIPE_PIPE] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5170), + [anon_sym_GT] = ACTIONS(5170), + [anon_sym_GT_GT] = ACTIONS(5168), + [anon_sym_AMP_GT] = ACTIONS(5170), + [anon_sym_AMP_GT_GT] = ACTIONS(5168), + [anon_sym_LT_AMP] = ACTIONS(5168), + [anon_sym_GT_AMP] = ACTIONS(5168), + [anon_sym_LT_LT] = ACTIONS(5170), + [anon_sym_LT_LT_DASH] = ACTIONS(5168), + [anon_sym_LT_LT_LT] = ACTIONS(5168), + [sym__special_characters] = ACTIONS(5168), + [anon_sym_DQUOTE] = ACTIONS(5168), + [anon_sym_DOLLAR] = ACTIONS(5170), + [sym_raw_string] = ACTIONS(5168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5168), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5168), + [anon_sym_BQUOTE] = ACTIONS(5168), + [anon_sym_LT_LPAREN] = ACTIONS(5168), + [anon_sym_GT_LPAREN] = ACTIONS(5168), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5170), + [sym_word] = ACTIONS(5170), + [anon_sym_LF] = ACTIONS(5168), + [anon_sym_AMP] = ACTIONS(5170), }, [2842] = { - [sym__concat] = ACTIONS(4718), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_esac] = ACTIONS(4720), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_SEMI_SEMI] = ACTIONS(4718), - [anon_sym_PIPE_AMP] = ACTIONS(4718), - [anon_sym_AMP_AMP] = ACTIONS(4718), - [anon_sym_PIPE_PIPE] = ACTIONS(4718), - [sym__special_characters] = ACTIONS(4718), - [anon_sym_DQUOTE] = ACTIONS(4718), - [anon_sym_DOLLAR] = ACTIONS(4720), - [sym_raw_string] = ACTIONS(4718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), - [anon_sym_BQUOTE] = ACTIONS(4718), - [anon_sym_LT_LPAREN] = ACTIONS(4718), - [anon_sym_GT_LPAREN] = ACTIONS(4718), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4720), - [sym_word] = ACTIONS(4720), - [anon_sym_LF] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), + [sym__simple_heredoc_body] = ACTIONS(5172), + [sym__heredoc_body_beginning] = ACTIONS(5172), + [sym_file_descriptor] = ACTIONS(5172), + [sym__concat] = ACTIONS(5172), + [sym_variable_name] = ACTIONS(5172), + [anon_sym_SEMI] = ACTIONS(5174), + [anon_sym_esac] = ACTIONS(5174), + [anon_sym_PIPE] = ACTIONS(5174), + [anon_sym_SEMI_SEMI] = ACTIONS(5172), + [anon_sym_PIPE_AMP] = ACTIONS(5172), + [anon_sym_AMP_AMP] = ACTIONS(5172), + [anon_sym_PIPE_PIPE] = ACTIONS(5172), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_GT_GT] = ACTIONS(5172), + [anon_sym_AMP_GT] = ACTIONS(5174), + [anon_sym_AMP_GT_GT] = ACTIONS(5172), + [anon_sym_LT_AMP] = ACTIONS(5172), + [anon_sym_GT_AMP] = ACTIONS(5172), + [anon_sym_LT_LT] = ACTIONS(5174), + [anon_sym_LT_LT_DASH] = ACTIONS(5172), + [anon_sym_LT_LT_LT] = ACTIONS(5172), + [sym__special_characters] = ACTIONS(5172), + [anon_sym_DQUOTE] = ACTIONS(5172), + [anon_sym_DOLLAR] = ACTIONS(5174), + [sym_raw_string] = ACTIONS(5172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5172), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5172), + [anon_sym_BQUOTE] = ACTIONS(5172), + [anon_sym_LT_LPAREN] = ACTIONS(5172), + [anon_sym_GT_LPAREN] = ACTIONS(5172), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5174), + [sym_word] = ACTIONS(5174), + [anon_sym_LF] = ACTIONS(5172), + [anon_sym_AMP] = ACTIONS(5174), }, [2843] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6556), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(5168), + [sym__heredoc_body_beginning] = ACTIONS(5168), + [sym_file_descriptor] = ACTIONS(5168), + [sym__concat] = ACTIONS(5168), + [anon_sym_SEMI] = ACTIONS(5170), + [anon_sym_esac] = ACTIONS(5170), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_SEMI_SEMI] = ACTIONS(5168), + [anon_sym_PIPE_AMP] = ACTIONS(5168), + [anon_sym_AMP_AMP] = ACTIONS(5168), + [anon_sym_PIPE_PIPE] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5170), + [anon_sym_GT] = ACTIONS(5170), + [anon_sym_GT_GT] = ACTIONS(5168), + [anon_sym_AMP_GT] = ACTIONS(5170), + [anon_sym_AMP_GT_GT] = ACTIONS(5168), + [anon_sym_LT_AMP] = ACTIONS(5168), + [anon_sym_GT_AMP] = ACTIONS(5168), + [anon_sym_LT_LT] = ACTIONS(5170), + [anon_sym_LT_LT_DASH] = ACTIONS(5168), + [anon_sym_LT_LT_LT] = ACTIONS(5168), + [sym__special_characters] = ACTIONS(5168), + [anon_sym_DQUOTE] = ACTIONS(5168), + [anon_sym_DOLLAR] = ACTIONS(5170), + [sym_raw_string] = ACTIONS(5168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5168), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5168), + [anon_sym_BQUOTE] = ACTIONS(5168), + [anon_sym_LT_LPAREN] = ACTIONS(5168), + [anon_sym_GT_LPAREN] = ACTIONS(5168), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5170), + [sym_word] = ACTIONS(5170), + [anon_sym_LF] = ACTIONS(5168), + [anon_sym_AMP] = ACTIONS(5170), }, [2844] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6558), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(5172), + [sym__heredoc_body_beginning] = ACTIONS(5172), + [sym_file_descriptor] = ACTIONS(5172), + [sym__concat] = ACTIONS(5172), + [anon_sym_SEMI] = ACTIONS(5174), + [anon_sym_esac] = ACTIONS(5174), + [anon_sym_PIPE] = ACTIONS(5174), + [anon_sym_SEMI_SEMI] = ACTIONS(5172), + [anon_sym_PIPE_AMP] = ACTIONS(5172), + [anon_sym_AMP_AMP] = ACTIONS(5172), + [anon_sym_PIPE_PIPE] = ACTIONS(5172), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_GT_GT] = ACTIONS(5172), + [anon_sym_AMP_GT] = ACTIONS(5174), + [anon_sym_AMP_GT_GT] = ACTIONS(5172), + [anon_sym_LT_AMP] = ACTIONS(5172), + [anon_sym_GT_AMP] = ACTIONS(5172), + [anon_sym_LT_LT] = ACTIONS(5174), + [anon_sym_LT_LT_DASH] = ACTIONS(5172), + [anon_sym_LT_LT_LT] = ACTIONS(5172), + [sym__special_characters] = ACTIONS(5172), + [anon_sym_DQUOTE] = ACTIONS(5172), + [anon_sym_DOLLAR] = ACTIONS(5174), + [sym_raw_string] = ACTIONS(5172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5172), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5172), + [anon_sym_BQUOTE] = ACTIONS(5172), + [anon_sym_LT_LPAREN] = ACTIONS(5172), + [anon_sym_GT_LPAREN] = ACTIONS(5172), + [sym_comment] = ACTIONS(57), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5174), + [sym_word] = ACTIONS(5174), + [anon_sym_LF] = ACTIONS(5172), + [anon_sym_AMP] = ACTIONS(5174), }, [2845] = { - [sym__concat] = ACTIONS(4754), - [anon_sym_SEMI] = ACTIONS(4756), - [anon_sym_esac] = ACTIONS(4756), - [anon_sym_PIPE] = ACTIONS(4756), - [anon_sym_SEMI_SEMI] = ACTIONS(4754), - [anon_sym_PIPE_AMP] = ACTIONS(4754), - [anon_sym_AMP_AMP] = ACTIONS(4754), - [anon_sym_PIPE_PIPE] = ACTIONS(4754), - [sym__special_characters] = ACTIONS(4754), - [anon_sym_DQUOTE] = ACTIONS(4754), - [anon_sym_DOLLAR] = ACTIONS(4756), - [sym_raw_string] = ACTIONS(4754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), - [anon_sym_BQUOTE] = ACTIONS(4754), - [anon_sym_LT_LPAREN] = ACTIONS(4754), - [anon_sym_GT_LPAREN] = ACTIONS(4754), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4756), - [sym_word] = ACTIONS(4756), - [anon_sym_LF] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4756), + [sym__simple_heredoc_body] = ACTIONS(4687), + [sym__heredoc_body_beginning] = ACTIONS(4687), + [sym_file_descriptor] = ACTIONS(4687), + [sym__concat] = ACTIONS(4687), + [anon_sym_SEMI] = ACTIONS(4689), + [anon_sym_esac] = ACTIONS(4687), + [anon_sym_PIPE] = ACTIONS(4689), + [anon_sym_SEMI_SEMI] = ACTIONS(4687), + [anon_sym_PIPE_AMP] = ACTIONS(4687), + [anon_sym_AMP_AMP] = ACTIONS(4687), + [anon_sym_PIPE_PIPE] = ACTIONS(4687), + [anon_sym_LT] = ACTIONS(4689), + [anon_sym_GT] = ACTIONS(4689), + [anon_sym_GT_GT] = ACTIONS(4687), + [anon_sym_AMP_GT] = ACTIONS(4689), + [anon_sym_AMP_GT_GT] = ACTIONS(4687), + [anon_sym_LT_AMP] = ACTIONS(4687), + [anon_sym_GT_AMP] = ACTIONS(4687), + [anon_sym_LT_LT] = ACTIONS(4689), + [anon_sym_LT_LT_DASH] = ACTIONS(4687), + [anon_sym_LT_LT_LT] = ACTIONS(4687), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4687), + [anon_sym_AMP] = ACTIONS(4689), }, [2846] = { - [sym__simple_heredoc_body] = ACTIONS(5202), - [sym__heredoc_body_beginning] = ACTIONS(5202), - [sym_file_descriptor] = ACTIONS(5202), - [sym__concat] = ACTIONS(5202), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_esac] = ACTIONS(5204), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_SEMI_SEMI] = ACTIONS(5202), - [anon_sym_PIPE_AMP] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_PIPE_PIPE] = ACTIONS(5202), - [anon_sym_EQ_TILDE] = ACTIONS(5204), - [anon_sym_EQ_EQ] = ACTIONS(5204), - [anon_sym_LT] = ACTIONS(5204), - [anon_sym_GT] = ACTIONS(5204), - [anon_sym_GT_GT] = ACTIONS(5202), - [anon_sym_AMP_GT] = ACTIONS(5204), - [anon_sym_AMP_GT_GT] = ACTIONS(5202), - [anon_sym_LT_AMP] = ACTIONS(5202), - [anon_sym_GT_AMP] = ACTIONS(5202), - [anon_sym_LT_LT] = ACTIONS(5204), - [anon_sym_LT_LT_DASH] = ACTIONS(5202), - [anon_sym_LT_LT_LT] = ACTIONS(5202), - [sym__special_characters] = ACTIONS(5202), - [anon_sym_DQUOTE] = ACTIONS(5202), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), - [anon_sym_BQUOTE] = ACTIONS(5202), - [anon_sym_LT_LPAREN] = ACTIONS(5202), - [anon_sym_GT_LPAREN] = ACTIONS(5202), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5204), - [anon_sym_LF] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5204), + [sym__simple_heredoc_body] = ACTIONS(4691), + [sym__heredoc_body_beginning] = ACTIONS(4691), + [sym_file_descriptor] = ACTIONS(4691), + [sym__concat] = ACTIONS(4691), + [anon_sym_SEMI] = ACTIONS(4693), + [anon_sym_esac] = ACTIONS(4691), + [anon_sym_PIPE] = ACTIONS(4693), + [anon_sym_SEMI_SEMI] = ACTIONS(4691), + [anon_sym_PIPE_AMP] = ACTIONS(4691), + [anon_sym_AMP_AMP] = ACTIONS(4691), + [anon_sym_PIPE_PIPE] = ACTIONS(4691), + [anon_sym_LT] = ACTIONS(4693), + [anon_sym_GT] = ACTIONS(4693), + [anon_sym_GT_GT] = ACTIONS(4691), + [anon_sym_AMP_GT] = ACTIONS(4693), + [anon_sym_AMP_GT_GT] = ACTIONS(4691), + [anon_sym_LT_AMP] = ACTIONS(4691), + [anon_sym_GT_AMP] = ACTIONS(4691), + [anon_sym_LT_LT] = ACTIONS(4693), + [anon_sym_LT_LT_DASH] = ACTIONS(4691), + [anon_sym_LT_LT_LT] = ACTIONS(4691), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4691), + [anon_sym_AMP] = ACTIONS(4693), }, [2847] = { - [sym__simple_heredoc_body] = ACTIONS(5206), - [sym__heredoc_body_beginning] = ACTIONS(5206), - [sym_file_descriptor] = ACTIONS(5206), - [sym__concat] = ACTIONS(5206), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym_esac] = ACTIONS(5208), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_SEMI_SEMI] = ACTIONS(5206), - [anon_sym_PIPE_AMP] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [anon_sym_EQ_TILDE] = ACTIONS(5208), - [anon_sym_EQ_EQ] = ACTIONS(5208), - [anon_sym_LT] = ACTIONS(5208), - [anon_sym_GT] = ACTIONS(5208), - [anon_sym_GT_GT] = ACTIONS(5206), - [anon_sym_AMP_GT] = ACTIONS(5208), - [anon_sym_AMP_GT_GT] = ACTIONS(5206), - [anon_sym_LT_AMP] = ACTIONS(5206), - [anon_sym_GT_AMP] = ACTIONS(5206), - [anon_sym_LT_LT] = ACTIONS(5208), - [anon_sym_LT_LT_DASH] = ACTIONS(5206), - [anon_sym_LT_LT_LT] = ACTIONS(5206), - [sym__special_characters] = ACTIONS(5206), - [anon_sym_DQUOTE] = ACTIONS(5206), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), - [anon_sym_BQUOTE] = ACTIONS(5206), - [anon_sym_LT_LPAREN] = ACTIONS(5206), - [anon_sym_GT_LPAREN] = ACTIONS(5206), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5208), - [anon_sym_LF] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5208), + [sym__simple_heredoc_body] = ACTIONS(4695), + [sym__heredoc_body_beginning] = ACTIONS(4695), + [sym_file_descriptor] = ACTIONS(4695), + [sym__concat] = ACTIONS(4695), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym_esac] = ACTIONS(4695), + [anon_sym_PIPE] = ACTIONS(4697), + [anon_sym_SEMI_SEMI] = ACTIONS(4695), + [anon_sym_PIPE_AMP] = ACTIONS(4695), + [anon_sym_AMP_AMP] = ACTIONS(4695), + [anon_sym_PIPE_PIPE] = ACTIONS(4695), + [anon_sym_LT] = ACTIONS(4697), + [anon_sym_GT] = ACTIONS(4697), + [anon_sym_GT_GT] = ACTIONS(4695), + [anon_sym_AMP_GT] = ACTIONS(4697), + [anon_sym_AMP_GT_GT] = ACTIONS(4695), + [anon_sym_LT_AMP] = ACTIONS(4695), + [anon_sym_GT_AMP] = ACTIONS(4695), + [anon_sym_LT_LT] = ACTIONS(4697), + [anon_sym_LT_LT_DASH] = ACTIONS(4695), + [anon_sym_LT_LT_LT] = ACTIONS(4695), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4695), + [anon_sym_AMP] = ACTIONS(4697), }, [2848] = { - [sym__simple_heredoc_body] = ACTIONS(3934), - [sym__heredoc_body_beginning] = ACTIONS(3934), - [sym_file_descriptor] = ACTIONS(3934), - [sym__concat] = ACTIONS(3934), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym_esac] = ACTIONS(3934), - [anon_sym_PIPE] = ACTIONS(3936), - [anon_sym_SEMI_SEMI] = ACTIONS(3934), - [anon_sym_PIPE_AMP] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_LT] = ACTIONS(3936), - [anon_sym_GT] = ACTIONS(3936), - [anon_sym_GT_GT] = ACTIONS(3934), - [anon_sym_AMP_GT] = ACTIONS(3936), - [anon_sym_AMP_GT_GT] = ACTIONS(3934), - [anon_sym_LT_AMP] = ACTIONS(3934), - [anon_sym_GT_AMP] = ACTIONS(3934), - [anon_sym_LT_LT] = ACTIONS(3936), - [anon_sym_LT_LT_DASH] = ACTIONS(3934), - [anon_sym_LT_LT_LT] = ACTIONS(3934), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3934), - [anon_sym_AMP] = ACTIONS(3936), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6592), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2849] = { - [sym__simple_heredoc_body] = ACTIONS(3942), - [sym__heredoc_body_beginning] = ACTIONS(3942), - [sym_file_descriptor] = ACTIONS(3942), - [sym__concat] = ACTIONS(3942), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym_esac] = ACTIONS(3942), - [anon_sym_PIPE] = ACTIONS(3944), - [anon_sym_SEMI_SEMI] = ACTIONS(3942), - [anon_sym_PIPE_AMP] = ACTIONS(3942), - [anon_sym_AMP_AMP] = ACTIONS(3942), - [anon_sym_PIPE_PIPE] = ACTIONS(3942), - [anon_sym_LT] = ACTIONS(3944), - [anon_sym_GT] = ACTIONS(3944), - [anon_sym_GT_GT] = ACTIONS(3942), - [anon_sym_AMP_GT] = ACTIONS(3944), - [anon_sym_AMP_GT_GT] = ACTIONS(3942), - [anon_sym_LT_AMP] = ACTIONS(3942), - [anon_sym_GT_AMP] = ACTIONS(3942), - [anon_sym_LT_LT] = ACTIONS(3944), - [anon_sym_LT_LT_DASH] = ACTIONS(3942), - [anon_sym_LT_LT_LT] = ACTIONS(3942), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3942), - [anon_sym_AMP] = ACTIONS(3944), + [sym_concatenation] = STATE(940), + [sym_string] = STATE(465), + [sym_simple_expansion] = STATE(465), + [sym_string_expansion] = STATE(465), + [sym_expansion] = STATE(465), + [sym_command_substitution] = STATE(465), + [sym_process_substitution] = STATE(465), + [aux_sym_expansion_repeat1] = STATE(940), + [anon_sym_RBRACE] = ACTIONS(6594), + [anon_sym_EQ] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [sym__special_characters] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [sym_raw_string] = ACTIONS(851), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1878), + [anon_sym_COLON_QMARK] = ACTIONS(1878), + [anon_sym_COLON_DASH] = ACTIONS(1878), + [anon_sym_PERCENT] = ACTIONS(1878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(859), + [anon_sym_BQUOTE] = ACTIONS(861), + [anon_sym_LT_LPAREN] = ACTIONS(863), + [anon_sym_GT_LPAREN] = ACTIONS(863), + [sym_comment] = ACTIONS(265), + [sym_word] = ACTIONS(865), }, [2850] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(6560), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(4731), + [sym__heredoc_body_beginning] = ACTIONS(4731), + [sym_file_descriptor] = ACTIONS(4731), + [sym__concat] = ACTIONS(4731), + [anon_sym_SEMI] = ACTIONS(4733), + [anon_sym_esac] = ACTIONS(4731), + [anon_sym_PIPE] = ACTIONS(4733), + [anon_sym_SEMI_SEMI] = ACTIONS(4731), + [anon_sym_PIPE_AMP] = ACTIONS(4731), + [anon_sym_AMP_AMP] = ACTIONS(4731), + [anon_sym_PIPE_PIPE] = ACTIONS(4731), + [anon_sym_LT] = ACTIONS(4733), + [anon_sym_GT] = ACTIONS(4733), + [anon_sym_GT_GT] = ACTIONS(4731), + [anon_sym_AMP_GT] = ACTIONS(4733), + [anon_sym_AMP_GT_GT] = ACTIONS(4731), + [anon_sym_LT_AMP] = ACTIONS(4731), + [anon_sym_GT_AMP] = ACTIONS(4731), + [anon_sym_LT_LT] = ACTIONS(4733), + [anon_sym_LT_LT_DASH] = ACTIONS(4731), + [anon_sym_LT_LT_LT] = ACTIONS(4731), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4731), + [anon_sym_AMP] = ACTIONS(4733), }, [2851] = { - [aux_sym_concatenation_repeat1] = STATE(1366), - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(6562), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(4751), + [sym__heredoc_body_beginning] = ACTIONS(4751), + [sym_file_descriptor] = ACTIONS(4751), + [sym__concat] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4753), + [anon_sym_esac] = ACTIONS(4751), + [anon_sym_PIPE] = ACTIONS(4753), + [anon_sym_SEMI_SEMI] = ACTIONS(4751), + [anon_sym_PIPE_AMP] = ACTIONS(4751), + [anon_sym_AMP_AMP] = ACTIONS(4751), + [anon_sym_PIPE_PIPE] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_GT_GT] = ACTIONS(4751), + [anon_sym_AMP_GT] = ACTIONS(4753), + [anon_sym_AMP_GT_GT] = ACTIONS(4751), + [anon_sym_LT_AMP] = ACTIONS(4751), + [anon_sym_GT_AMP] = ACTIONS(4751), + [anon_sym_LT_LT] = ACTIONS(4753), + [anon_sym_LT_LT_DASH] = ACTIONS(4751), + [anon_sym_LT_LT_LT] = ACTIONS(4751), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4751), + [anon_sym_AMP] = ACTIONS(4753), }, [2852] = { - [anon_sym_RBRACE] = ACTIONS(6562), - [sym_comment] = ACTIONS(55), + [sym__simple_heredoc_body] = ACTIONS(4755), + [sym__heredoc_body_beginning] = ACTIONS(4755), + [sym_file_descriptor] = ACTIONS(4755), + [sym__concat] = ACTIONS(4755), + [anon_sym_SEMI] = ACTIONS(4757), + [anon_sym_esac] = ACTIONS(4755), + [anon_sym_PIPE] = ACTIONS(4757), + [anon_sym_SEMI_SEMI] = ACTIONS(4755), + [anon_sym_PIPE_AMP] = ACTIONS(4755), + [anon_sym_AMP_AMP] = ACTIONS(4755), + [anon_sym_PIPE_PIPE] = ACTIONS(4755), + [anon_sym_LT] = ACTIONS(4757), + [anon_sym_GT] = ACTIONS(4757), + [anon_sym_GT_GT] = ACTIONS(4755), + [anon_sym_AMP_GT] = ACTIONS(4757), + [anon_sym_AMP_GT_GT] = ACTIONS(4755), + [anon_sym_LT_AMP] = ACTIONS(4755), + [anon_sym_GT_AMP] = ACTIONS(4755), + [anon_sym_LT_LT] = ACTIONS(4757), + [anon_sym_LT_LT_DASH] = ACTIONS(4755), + [anon_sym_LT_LT_LT] = ACTIONS(4755), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(4755), + [anon_sym_AMP] = ACTIONS(4757), }, [2853] = { - [sym_concatenation] = STATE(2875), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2875), - [anon_sym_RBRACE] = ACTIONS(6564), - [anon_sym_EQ] = ACTIONS(6566), - [anon_sym_DASH] = ACTIONS(6566), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6568), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6566), - [anon_sym_COLON_QMARK] = ACTIONS(6566), - [anon_sym_COLON_DASH] = ACTIONS(6566), - [anon_sym_PERCENT] = ACTIONS(6566), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(5168), + [sym__heredoc_body_beginning] = ACTIONS(5168), + [sym_file_descriptor] = ACTIONS(5168), + [sym__concat] = ACTIONS(5168), + [sym_variable_name] = ACTIONS(5168), + [anon_sym_SEMI] = ACTIONS(5170), + [anon_sym_esac] = ACTIONS(5170), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_SEMI_SEMI] = ACTIONS(5168), + [anon_sym_PIPE_AMP] = ACTIONS(5168), + [anon_sym_AMP_AMP] = ACTIONS(5168), + [anon_sym_PIPE_PIPE] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5170), + [anon_sym_GT] = ACTIONS(5170), + [anon_sym_GT_GT] = ACTIONS(5168), + [anon_sym_AMP_GT] = ACTIONS(5170), + [anon_sym_AMP_GT_GT] = ACTIONS(5168), + [anon_sym_LT_AMP] = ACTIONS(5168), + [anon_sym_GT_AMP] = ACTIONS(5168), + [anon_sym_LT_LT] = ACTIONS(5170), + [anon_sym_LT_LT_DASH] = ACTIONS(5168), + [anon_sym_LT_LT_LT] = ACTIONS(5168), + [sym__special_characters] = ACTIONS(5168), + [anon_sym_DQUOTE] = ACTIONS(5168), + [anon_sym_DOLLAR] = ACTIONS(5170), + [sym_raw_string] = ACTIONS(5168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5168), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5168), + [anon_sym_BQUOTE] = ACTIONS(5168), + [anon_sym_LT_LPAREN] = ACTIONS(5168), + [anon_sym_GT_LPAREN] = ACTIONS(5168), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5170), + [anon_sym_LF] = ACTIONS(5168), + [anon_sym_AMP] = ACTIONS(5170), }, [2854] = { - [sym__simple_heredoc_body] = ACTIONS(3998), - [sym__heredoc_body_beginning] = ACTIONS(3998), - [sym_file_descriptor] = ACTIONS(3998), - [sym__concat] = ACTIONS(3998), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym_esac] = ACTIONS(3998), - [anon_sym_PIPE] = ACTIONS(4000), - [anon_sym_SEMI_SEMI] = ACTIONS(3998), - [anon_sym_PIPE_AMP] = ACTIONS(3998), - [anon_sym_AMP_AMP] = ACTIONS(3998), - [anon_sym_PIPE_PIPE] = ACTIONS(3998), - [anon_sym_LT] = ACTIONS(4000), - [anon_sym_GT] = ACTIONS(4000), - [anon_sym_GT_GT] = ACTIONS(3998), - [anon_sym_AMP_GT] = ACTIONS(4000), - [anon_sym_AMP_GT_GT] = ACTIONS(3998), - [anon_sym_LT_AMP] = ACTIONS(3998), - [anon_sym_GT_AMP] = ACTIONS(3998), - [anon_sym_LT_LT] = ACTIONS(4000), - [anon_sym_LT_LT_DASH] = ACTIONS(3998), - [anon_sym_LT_LT_LT] = ACTIONS(3998), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(3998), - [anon_sym_AMP] = ACTIONS(4000), + [sym__simple_heredoc_body] = ACTIONS(5172), + [sym__heredoc_body_beginning] = ACTIONS(5172), + [sym_file_descriptor] = ACTIONS(5172), + [sym__concat] = ACTIONS(5172), + [sym_variable_name] = ACTIONS(5172), + [anon_sym_SEMI] = ACTIONS(5174), + [anon_sym_esac] = ACTIONS(5174), + [anon_sym_PIPE] = ACTIONS(5174), + [anon_sym_SEMI_SEMI] = ACTIONS(5172), + [anon_sym_PIPE_AMP] = ACTIONS(5172), + [anon_sym_AMP_AMP] = ACTIONS(5172), + [anon_sym_PIPE_PIPE] = ACTIONS(5172), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_GT_GT] = ACTIONS(5172), + [anon_sym_AMP_GT] = ACTIONS(5174), + [anon_sym_AMP_GT_GT] = ACTIONS(5172), + [anon_sym_LT_AMP] = ACTIONS(5172), + [anon_sym_GT_AMP] = ACTIONS(5172), + [anon_sym_LT_LT] = ACTIONS(5174), + [anon_sym_LT_LT_DASH] = ACTIONS(5172), + [anon_sym_LT_LT_LT] = ACTIONS(5172), + [sym__special_characters] = ACTIONS(5172), + [anon_sym_DQUOTE] = ACTIONS(5172), + [anon_sym_DOLLAR] = ACTIONS(5174), + [sym_raw_string] = ACTIONS(5172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5172), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5172), + [anon_sym_BQUOTE] = ACTIONS(5172), + [anon_sym_LT_LPAREN] = ACTIONS(5172), + [anon_sym_GT_LPAREN] = ACTIONS(5172), + [sym_comment] = ACTIONS(57), + [sym_word] = ACTIONS(5174), + [anon_sym_LF] = ACTIONS(5172), + [anon_sym_AMP] = ACTIONS(5174), }, [2855] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6564), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), + [sym__simple_heredoc_body] = ACTIONS(5168), + [sym__heredoc_body_beginning] = ACTIONS(5168), + [sym_file_descriptor] = ACTIONS(5168), + [sym__concat] = ACTIONS(5168), + [anon_sym_SEMI] = ACTIONS(5170), + [anon_sym_esac] = ACTIONS(5168), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_SEMI_SEMI] = ACTIONS(5168), + [anon_sym_PIPE_AMP] = ACTIONS(5168), + [anon_sym_AMP_AMP] = ACTIONS(5168), + [anon_sym_PIPE_PIPE] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5170), + [anon_sym_GT] = ACTIONS(5170), + [anon_sym_GT_GT] = ACTIONS(5168), + [anon_sym_AMP_GT] = ACTIONS(5170), + [anon_sym_AMP_GT_GT] = ACTIONS(5168), + [anon_sym_LT_AMP] = ACTIONS(5168), + [anon_sym_GT_AMP] = ACTIONS(5168), + [anon_sym_LT_LT] = ACTIONS(5170), + [anon_sym_LT_LT_DASH] = ACTIONS(5168), + [anon_sym_LT_LT_LT] = ACTIONS(5168), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5168), + [anon_sym_AMP] = ACTIONS(5170), }, [2856] = { - [sym_concatenation] = STATE(2876), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(2876), - [anon_sym_RBRACE] = ACTIONS(6562), - [anon_sym_EQ] = ACTIONS(6570), - [anon_sym_DASH] = ACTIONS(6570), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(6572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(6570), - [anon_sym_COLON_QMARK] = ACTIONS(6570), - [anon_sym_COLON_DASH] = ACTIONS(6570), - [anon_sym_PERCENT] = ACTIONS(6570), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2857] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6562), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2858] = { - [sym__simple_heredoc_body] = ACTIONS(4043), - [sym__heredoc_body_beginning] = ACTIONS(4043), - [sym_file_descriptor] = ACTIONS(4043), - [sym__concat] = ACTIONS(4043), - [anon_sym_SEMI] = ACTIONS(4045), - [anon_sym_esac] = ACTIONS(4043), - [anon_sym_PIPE] = ACTIONS(4045), - [anon_sym_SEMI_SEMI] = ACTIONS(4043), - [anon_sym_PIPE_AMP] = ACTIONS(4043), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_LT] = ACTIONS(4045), - [anon_sym_GT] = ACTIONS(4045), - [anon_sym_GT_GT] = ACTIONS(4043), - [anon_sym_AMP_GT] = ACTIONS(4045), - [anon_sym_AMP_GT_GT] = ACTIONS(4043), - [anon_sym_LT_AMP] = ACTIONS(4043), - [anon_sym_GT_AMP] = ACTIONS(4043), - [anon_sym_LT_LT] = ACTIONS(4045), - [anon_sym_LT_LT_DASH] = ACTIONS(4043), - [anon_sym_LT_LT_LT] = ACTIONS(4043), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4043), - [anon_sym_AMP] = ACTIONS(4045), - }, - [2859] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6574), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2860] = { - [sym__simple_heredoc_body] = ACTIONS(4065), - [sym__heredoc_body_beginning] = ACTIONS(4065), - [sym_file_descriptor] = ACTIONS(4065), - [sym__concat] = ACTIONS(4065), - [anon_sym_SEMI] = ACTIONS(4067), - [anon_sym_esac] = ACTIONS(4065), - [anon_sym_PIPE] = ACTIONS(4067), - [anon_sym_SEMI_SEMI] = ACTIONS(4065), - [anon_sym_PIPE_AMP] = ACTIONS(4065), - [anon_sym_AMP_AMP] = ACTIONS(4065), - [anon_sym_PIPE_PIPE] = ACTIONS(4065), - [anon_sym_LT] = ACTIONS(4067), - [anon_sym_GT] = ACTIONS(4067), - [anon_sym_GT_GT] = ACTIONS(4065), - [anon_sym_AMP_GT] = ACTIONS(4067), - [anon_sym_AMP_GT_GT] = ACTIONS(4065), - [anon_sym_LT_AMP] = ACTIONS(4065), - [anon_sym_GT_AMP] = ACTIONS(4065), - [anon_sym_LT_LT] = ACTIONS(4067), - [anon_sym_LT_LT_DASH] = ACTIONS(4065), - [anon_sym_LT_LT_LT] = ACTIONS(4065), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4065), - [anon_sym_AMP] = ACTIONS(4067), - }, - [2861] = { - [sym__simple_heredoc_body] = ACTIONS(4089), - [sym__heredoc_body_beginning] = ACTIONS(4089), - [sym_file_descriptor] = ACTIONS(4089), - [sym__concat] = ACTIONS(4089), - [anon_sym_SEMI] = ACTIONS(4091), - [anon_sym_esac] = ACTIONS(4089), - [anon_sym_PIPE] = ACTIONS(4091), - [anon_sym_SEMI_SEMI] = ACTIONS(4089), - [anon_sym_PIPE_AMP] = ACTIONS(4089), - [anon_sym_AMP_AMP] = ACTIONS(4089), - [anon_sym_PIPE_PIPE] = ACTIONS(4089), - [anon_sym_LT] = ACTIONS(4091), - [anon_sym_GT] = ACTIONS(4091), - [anon_sym_GT_GT] = ACTIONS(4089), - [anon_sym_AMP_GT] = ACTIONS(4091), - [anon_sym_AMP_GT_GT] = ACTIONS(4089), - [anon_sym_LT_AMP] = ACTIONS(4089), - [anon_sym_GT_AMP] = ACTIONS(4089), - [anon_sym_LT_LT] = ACTIONS(4091), - [anon_sym_LT_LT_DASH] = ACTIONS(4089), - [anon_sym_LT_LT_LT] = ACTIONS(4089), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4089), - [anon_sym_AMP] = ACTIONS(4091), - }, - [2862] = { - [sym_file_descriptor] = ACTIONS(4710), - [sym__concat] = ACTIONS(4710), - [sym_variable_name] = ACTIONS(4710), - [anon_sym_SEMI] = ACTIONS(4712), - [anon_sym_esac] = ACTIONS(4712), - [anon_sym_PIPE] = ACTIONS(4712), - [anon_sym_SEMI_SEMI] = ACTIONS(4710), - [anon_sym_PIPE_AMP] = ACTIONS(4710), - [anon_sym_AMP_AMP] = ACTIONS(4710), - [anon_sym_PIPE_PIPE] = ACTIONS(4710), - [anon_sym_LT] = ACTIONS(4712), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_GT_GT] = ACTIONS(4710), - [anon_sym_AMP_GT] = ACTIONS(4712), - [anon_sym_AMP_GT_GT] = ACTIONS(4710), - [anon_sym_LT_AMP] = ACTIONS(4710), - [anon_sym_GT_AMP] = ACTIONS(4710), - [sym__special_characters] = ACTIONS(4710), - [anon_sym_DQUOTE] = ACTIONS(4710), - [anon_sym_DOLLAR] = ACTIONS(4712), - [sym_raw_string] = ACTIONS(4710), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4710), - [anon_sym_BQUOTE] = ACTIONS(4710), - [anon_sym_LT_LPAREN] = ACTIONS(4710), - [anon_sym_GT_LPAREN] = ACTIONS(4710), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4712), - [anon_sym_LF] = ACTIONS(4710), - [anon_sym_AMP] = ACTIONS(4712), - }, - [2863] = { - [sym_file_descriptor] = ACTIONS(4714), - [sym__concat] = ACTIONS(4714), - [sym_variable_name] = ACTIONS(4714), - [anon_sym_SEMI] = ACTIONS(4716), - [anon_sym_esac] = ACTIONS(4716), - [anon_sym_PIPE] = ACTIONS(4716), - [anon_sym_SEMI_SEMI] = ACTIONS(4714), - [anon_sym_PIPE_AMP] = ACTIONS(4714), - [anon_sym_AMP_AMP] = ACTIONS(4714), - [anon_sym_PIPE_PIPE] = ACTIONS(4714), - [anon_sym_LT] = ACTIONS(4716), - [anon_sym_GT] = ACTIONS(4716), - [anon_sym_GT_GT] = ACTIONS(4714), - [anon_sym_AMP_GT] = ACTIONS(4716), - [anon_sym_AMP_GT_GT] = ACTIONS(4714), - [anon_sym_LT_AMP] = ACTIONS(4714), - [anon_sym_GT_AMP] = ACTIONS(4714), - [sym__special_characters] = ACTIONS(4714), - [anon_sym_DQUOTE] = ACTIONS(4714), - [anon_sym_DOLLAR] = ACTIONS(4716), - [sym_raw_string] = ACTIONS(4714), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4714), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4714), - [anon_sym_BQUOTE] = ACTIONS(4714), - [anon_sym_LT_LPAREN] = ACTIONS(4714), - [anon_sym_GT_LPAREN] = ACTIONS(4714), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4716), - [anon_sym_LF] = ACTIONS(4714), - [anon_sym_AMP] = ACTIONS(4716), - }, - [2864] = { - [sym_file_descriptor] = ACTIONS(4718), - [sym__concat] = ACTIONS(4718), - [sym_variable_name] = ACTIONS(4718), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_esac] = ACTIONS(4720), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_SEMI_SEMI] = ACTIONS(4718), - [anon_sym_PIPE_AMP] = ACTIONS(4718), - [anon_sym_AMP_AMP] = ACTIONS(4718), - [anon_sym_PIPE_PIPE] = ACTIONS(4718), - [anon_sym_LT] = ACTIONS(4720), - [anon_sym_GT] = ACTIONS(4720), - [anon_sym_GT_GT] = ACTIONS(4718), - [anon_sym_AMP_GT] = ACTIONS(4720), - [anon_sym_AMP_GT_GT] = ACTIONS(4718), - [anon_sym_LT_AMP] = ACTIONS(4718), - [anon_sym_GT_AMP] = ACTIONS(4718), - [sym__special_characters] = ACTIONS(4718), - [anon_sym_DQUOTE] = ACTIONS(4718), - [anon_sym_DOLLAR] = ACTIONS(4720), - [sym_raw_string] = ACTIONS(4718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4718), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4718), - [anon_sym_BQUOTE] = ACTIONS(4718), - [anon_sym_LT_LPAREN] = ACTIONS(4718), - [anon_sym_GT_LPAREN] = ACTIONS(4718), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4720), - [anon_sym_LF] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - }, - [2865] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6576), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2866] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6578), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2867] = { - [sym_file_descriptor] = ACTIONS(4754), - [sym__concat] = ACTIONS(4754), - [sym_variable_name] = ACTIONS(4754), - [anon_sym_SEMI] = ACTIONS(4756), - [anon_sym_esac] = ACTIONS(4756), - [anon_sym_PIPE] = ACTIONS(4756), - [anon_sym_SEMI_SEMI] = ACTIONS(4754), - [anon_sym_PIPE_AMP] = ACTIONS(4754), - [anon_sym_AMP_AMP] = ACTIONS(4754), - [anon_sym_PIPE_PIPE] = ACTIONS(4754), - [anon_sym_LT] = ACTIONS(4756), - [anon_sym_GT] = ACTIONS(4756), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_AMP_GT] = ACTIONS(4756), - [anon_sym_AMP_GT_GT] = ACTIONS(4754), - [anon_sym_LT_AMP] = ACTIONS(4754), - [anon_sym_GT_AMP] = ACTIONS(4754), - [sym__special_characters] = ACTIONS(4754), - [anon_sym_DQUOTE] = ACTIONS(4754), - [anon_sym_DOLLAR] = ACTIONS(4756), - [sym_raw_string] = ACTIONS(4754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4754), - [anon_sym_BQUOTE] = ACTIONS(4754), - [anon_sym_LT_LPAREN] = ACTIONS(4754), - [anon_sym_GT_LPAREN] = ACTIONS(4754), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(4756), - [anon_sym_LF] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4756), - }, - [2868] = { - [sym__concat] = ACTIONS(5202), - [sym_variable_name] = ACTIONS(5202), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_esac] = ACTIONS(5204), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_SEMI_SEMI] = ACTIONS(5202), - [anon_sym_PIPE_AMP] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_PIPE_PIPE] = ACTIONS(5202), - [sym__special_characters] = ACTIONS(5202), - [anon_sym_DQUOTE] = ACTIONS(5202), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), - [anon_sym_BQUOTE] = ACTIONS(5202), - [anon_sym_LT_LPAREN] = ACTIONS(5202), - [anon_sym_GT_LPAREN] = ACTIONS(5202), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5204), - [sym_word] = ACTIONS(5204), - [anon_sym_LF] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5204), - }, - [2869] = { - [sym__concat] = ACTIONS(5206), - [sym_variable_name] = ACTIONS(5206), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym_esac] = ACTIONS(5208), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_SEMI_SEMI] = ACTIONS(5206), - [anon_sym_PIPE_AMP] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [sym__special_characters] = ACTIONS(5206), - [anon_sym_DQUOTE] = ACTIONS(5206), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), - [anon_sym_BQUOTE] = ACTIONS(5206), - [anon_sym_LT_LPAREN] = ACTIONS(5206), - [anon_sym_GT_LPAREN] = ACTIONS(5206), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5208), - [sym_word] = ACTIONS(5208), - [anon_sym_LF] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5208), - }, - [2870] = { - [sym__concat] = ACTIONS(5202), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_esac] = ACTIONS(5204), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_SEMI_SEMI] = ACTIONS(5202), - [anon_sym_PIPE_AMP] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_PIPE_PIPE] = ACTIONS(5202), - [sym__special_characters] = ACTIONS(5202), - [anon_sym_DQUOTE] = ACTIONS(5202), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), - [anon_sym_BQUOTE] = ACTIONS(5202), - [anon_sym_LT_LPAREN] = ACTIONS(5202), - [anon_sym_GT_LPAREN] = ACTIONS(5202), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5204), - [sym_word] = ACTIONS(5204), - [anon_sym_LF] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5204), - }, - [2871] = { - [sym__concat] = ACTIONS(5206), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym_esac] = ACTIONS(5208), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_SEMI_SEMI] = ACTIONS(5206), - [anon_sym_PIPE_AMP] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [sym__special_characters] = ACTIONS(5206), - [anon_sym_DQUOTE] = ACTIONS(5206), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), - [anon_sym_BQUOTE] = ACTIONS(5206), - [anon_sym_LT_LPAREN] = ACTIONS(5206), - [anon_sym_GT_LPAREN] = ACTIONS(5206), - [sym_comment] = ACTIONS(55), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5208), - [sym_word] = ACTIONS(5208), - [anon_sym_LF] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5208), - }, - [2872] = { - [sym__simple_heredoc_body] = ACTIONS(4710), - [sym__heredoc_body_beginning] = ACTIONS(4710), - [sym_file_descriptor] = ACTIONS(4710), - [sym__concat] = ACTIONS(4710), - [anon_sym_SEMI] = ACTIONS(4712), - [anon_sym_esac] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4712), - [anon_sym_SEMI_SEMI] = ACTIONS(4710), - [anon_sym_PIPE_AMP] = ACTIONS(4710), - [anon_sym_AMP_AMP] = ACTIONS(4710), - [anon_sym_PIPE_PIPE] = ACTIONS(4710), - [anon_sym_LT] = ACTIONS(4712), - [anon_sym_GT] = ACTIONS(4712), - [anon_sym_GT_GT] = ACTIONS(4710), - [anon_sym_AMP_GT] = ACTIONS(4712), - [anon_sym_AMP_GT_GT] = ACTIONS(4710), - [anon_sym_LT_AMP] = ACTIONS(4710), - [anon_sym_GT_AMP] = ACTIONS(4710), - [anon_sym_LT_LT] = ACTIONS(4712), - [anon_sym_LT_LT_DASH] = ACTIONS(4710), - [anon_sym_LT_LT_LT] = ACTIONS(4710), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4710), - [anon_sym_AMP] = ACTIONS(4712), - }, - [2873] = { - [sym__simple_heredoc_body] = ACTIONS(4714), - [sym__heredoc_body_beginning] = ACTIONS(4714), - [sym_file_descriptor] = ACTIONS(4714), - [sym__concat] = ACTIONS(4714), - [anon_sym_SEMI] = ACTIONS(4716), - [anon_sym_esac] = ACTIONS(4714), - [anon_sym_PIPE] = ACTIONS(4716), - [anon_sym_SEMI_SEMI] = ACTIONS(4714), - [anon_sym_PIPE_AMP] = ACTIONS(4714), - [anon_sym_AMP_AMP] = ACTIONS(4714), - [anon_sym_PIPE_PIPE] = ACTIONS(4714), - [anon_sym_LT] = ACTIONS(4716), - [anon_sym_GT] = ACTIONS(4716), - [anon_sym_GT_GT] = ACTIONS(4714), - [anon_sym_AMP_GT] = ACTIONS(4716), - [anon_sym_AMP_GT_GT] = ACTIONS(4714), - [anon_sym_LT_AMP] = ACTIONS(4714), - [anon_sym_GT_AMP] = ACTIONS(4714), - [anon_sym_LT_LT] = ACTIONS(4716), - [anon_sym_LT_LT_DASH] = ACTIONS(4714), - [anon_sym_LT_LT_LT] = ACTIONS(4714), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4714), - [anon_sym_AMP] = ACTIONS(4716), - }, - [2874] = { - [sym__simple_heredoc_body] = ACTIONS(4718), - [sym__heredoc_body_beginning] = ACTIONS(4718), - [sym_file_descriptor] = ACTIONS(4718), - [sym__concat] = ACTIONS(4718), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_esac] = ACTIONS(4718), - [anon_sym_PIPE] = ACTIONS(4720), - [anon_sym_SEMI_SEMI] = ACTIONS(4718), - [anon_sym_PIPE_AMP] = ACTIONS(4718), - [anon_sym_AMP_AMP] = ACTIONS(4718), - [anon_sym_PIPE_PIPE] = ACTIONS(4718), - [anon_sym_LT] = ACTIONS(4720), - [anon_sym_GT] = ACTIONS(4720), - [anon_sym_GT_GT] = ACTIONS(4718), - [anon_sym_AMP_GT] = ACTIONS(4720), - [anon_sym_AMP_GT_GT] = ACTIONS(4718), - [anon_sym_LT_AMP] = ACTIONS(4718), - [anon_sym_GT_AMP] = ACTIONS(4718), - [anon_sym_LT_LT] = ACTIONS(4720), - [anon_sym_LT_LT_DASH] = ACTIONS(4718), - [anon_sym_LT_LT_LT] = ACTIONS(4718), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4718), - [anon_sym_AMP] = ACTIONS(4720), - }, - [2875] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6580), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2876] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(483), - [sym_simple_expansion] = STATE(483), - [sym_string_expansion] = STATE(483), - [sym_expansion] = STATE(483), - [sym_command_substitution] = STATE(483), - [sym_process_substitution] = STATE(483), - [aux_sym_expansion_repeat1] = STATE(960), - [anon_sym_RBRACE] = ACTIONS(6582), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1915), - [sym__special_characters] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(875), - [anon_sym_DOLLAR] = ACTIONS(877), - [sym_raw_string] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_COLON_QMARK] = ACTIONS(1915), - [anon_sym_COLON_DASH] = ACTIONS(1915), - [anon_sym_PERCENT] = ACTIONS(1915), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(887), - [anon_sym_BQUOTE] = ACTIONS(889), - [anon_sym_LT_LPAREN] = ACTIONS(891), - [anon_sym_GT_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(281), - [sym_word] = ACTIONS(893), - }, - [2877] = { - [sym__simple_heredoc_body] = ACTIONS(4754), - [sym__heredoc_body_beginning] = ACTIONS(4754), - [sym_file_descriptor] = ACTIONS(4754), - [sym__concat] = ACTIONS(4754), - [anon_sym_SEMI] = ACTIONS(4756), - [anon_sym_esac] = ACTIONS(4754), - [anon_sym_PIPE] = ACTIONS(4756), - [anon_sym_SEMI_SEMI] = ACTIONS(4754), - [anon_sym_PIPE_AMP] = ACTIONS(4754), - [anon_sym_AMP_AMP] = ACTIONS(4754), - [anon_sym_PIPE_PIPE] = ACTIONS(4754), - [anon_sym_LT] = ACTIONS(4756), - [anon_sym_GT] = ACTIONS(4756), - [anon_sym_GT_GT] = ACTIONS(4754), - [anon_sym_AMP_GT] = ACTIONS(4756), - [anon_sym_AMP_GT_GT] = ACTIONS(4754), - [anon_sym_LT_AMP] = ACTIONS(4754), - [anon_sym_GT_AMP] = ACTIONS(4754), - [anon_sym_LT_LT] = ACTIONS(4756), - [anon_sym_LT_LT_DASH] = ACTIONS(4754), - [anon_sym_LT_LT_LT] = ACTIONS(4754), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(4754), - [anon_sym_AMP] = ACTIONS(4756), - }, - [2878] = { - [sym_file_descriptor] = ACTIONS(5202), - [sym__concat] = ACTIONS(5202), - [sym_variable_name] = ACTIONS(5202), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_esac] = ACTIONS(5204), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_SEMI_SEMI] = ACTIONS(5202), - [anon_sym_PIPE_AMP] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_PIPE_PIPE] = ACTIONS(5202), - [anon_sym_LT] = ACTIONS(5204), - [anon_sym_GT] = ACTIONS(5204), - [anon_sym_GT_GT] = ACTIONS(5202), - [anon_sym_AMP_GT] = ACTIONS(5204), - [anon_sym_AMP_GT_GT] = ACTIONS(5202), - [anon_sym_LT_AMP] = ACTIONS(5202), - [anon_sym_GT_AMP] = ACTIONS(5202), - [sym__special_characters] = ACTIONS(5202), - [anon_sym_DQUOTE] = ACTIONS(5202), - [anon_sym_DOLLAR] = ACTIONS(5204), - [sym_raw_string] = ACTIONS(5202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5202), - [anon_sym_BQUOTE] = ACTIONS(5202), - [anon_sym_LT_LPAREN] = ACTIONS(5202), - [anon_sym_GT_LPAREN] = ACTIONS(5202), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5204), - [anon_sym_LF] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5204), - }, - [2879] = { - [sym_file_descriptor] = ACTIONS(5206), - [sym__concat] = ACTIONS(5206), - [sym_variable_name] = ACTIONS(5206), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym_esac] = ACTIONS(5208), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_SEMI_SEMI] = ACTIONS(5206), - [anon_sym_PIPE_AMP] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [anon_sym_LT] = ACTIONS(5208), - [anon_sym_GT] = ACTIONS(5208), - [anon_sym_GT_GT] = ACTIONS(5206), - [anon_sym_AMP_GT] = ACTIONS(5208), - [anon_sym_AMP_GT_GT] = ACTIONS(5206), - [anon_sym_LT_AMP] = ACTIONS(5206), - [anon_sym_GT_AMP] = ACTIONS(5206), - [sym__special_characters] = ACTIONS(5206), - [anon_sym_DQUOTE] = ACTIONS(5206), - [anon_sym_DOLLAR] = ACTIONS(5208), - [sym_raw_string] = ACTIONS(5206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5206), - [anon_sym_BQUOTE] = ACTIONS(5206), - [anon_sym_LT_LPAREN] = ACTIONS(5206), - [anon_sym_GT_LPAREN] = ACTIONS(5206), - [sym_comment] = ACTIONS(55), - [sym_word] = ACTIONS(5208), - [anon_sym_LF] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5208), - }, - [2880] = { - [sym__simple_heredoc_body] = ACTIONS(5202), - [sym__heredoc_body_beginning] = ACTIONS(5202), - [sym_file_descriptor] = ACTIONS(5202), - [sym__concat] = ACTIONS(5202), - [anon_sym_SEMI] = ACTIONS(5204), - [anon_sym_esac] = ACTIONS(5202), - [anon_sym_PIPE] = ACTIONS(5204), - [anon_sym_SEMI_SEMI] = ACTIONS(5202), - [anon_sym_PIPE_AMP] = ACTIONS(5202), - [anon_sym_AMP_AMP] = ACTIONS(5202), - [anon_sym_PIPE_PIPE] = ACTIONS(5202), - [anon_sym_LT] = ACTIONS(5204), - [anon_sym_GT] = ACTIONS(5204), - [anon_sym_GT_GT] = ACTIONS(5202), - [anon_sym_AMP_GT] = ACTIONS(5204), - [anon_sym_AMP_GT_GT] = ACTIONS(5202), - [anon_sym_LT_AMP] = ACTIONS(5202), - [anon_sym_GT_AMP] = ACTIONS(5202), - [anon_sym_LT_LT] = ACTIONS(5204), - [anon_sym_LT_LT_DASH] = ACTIONS(5202), - [anon_sym_LT_LT_LT] = ACTIONS(5202), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5202), - [anon_sym_AMP] = ACTIONS(5204), - }, - [2881] = { - [sym__simple_heredoc_body] = ACTIONS(5206), - [sym__heredoc_body_beginning] = ACTIONS(5206), - [sym_file_descriptor] = ACTIONS(5206), - [sym__concat] = ACTIONS(5206), - [anon_sym_SEMI] = ACTIONS(5208), - [anon_sym_esac] = ACTIONS(5206), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_SEMI_SEMI] = ACTIONS(5206), - [anon_sym_PIPE_AMP] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [anon_sym_LT] = ACTIONS(5208), - [anon_sym_GT] = ACTIONS(5208), - [anon_sym_GT_GT] = ACTIONS(5206), - [anon_sym_AMP_GT] = ACTIONS(5208), - [anon_sym_AMP_GT_GT] = ACTIONS(5206), - [anon_sym_LT_AMP] = ACTIONS(5206), - [anon_sym_GT_AMP] = ACTIONS(5206), - [anon_sym_LT_LT] = ACTIONS(5208), - [anon_sym_LT_LT_DASH] = ACTIONS(5206), - [anon_sym_LT_LT_LT] = ACTIONS(5206), - [sym_comment] = ACTIONS(55), - [anon_sym_LF] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5208), + [sym__simple_heredoc_body] = ACTIONS(5172), + [sym__heredoc_body_beginning] = ACTIONS(5172), + [sym_file_descriptor] = ACTIONS(5172), + [sym__concat] = ACTIONS(5172), + [anon_sym_SEMI] = ACTIONS(5174), + [anon_sym_esac] = ACTIONS(5172), + [anon_sym_PIPE] = ACTIONS(5174), + [anon_sym_SEMI_SEMI] = ACTIONS(5172), + [anon_sym_PIPE_AMP] = ACTIONS(5172), + [anon_sym_AMP_AMP] = ACTIONS(5172), + [anon_sym_PIPE_PIPE] = ACTIONS(5172), + [anon_sym_LT] = ACTIONS(5174), + [anon_sym_GT] = ACTIONS(5174), + [anon_sym_GT_GT] = ACTIONS(5172), + [anon_sym_AMP_GT] = ACTIONS(5174), + [anon_sym_AMP_GT_GT] = ACTIONS(5172), + [anon_sym_LT_AMP] = ACTIONS(5172), + [anon_sym_GT_AMP] = ACTIONS(5172), + [anon_sym_LT_LT] = ACTIONS(5174), + [anon_sym_LT_LT_DASH] = ACTIONS(5172), + [anon_sym_LT_LT_LT] = ACTIONS(5172), + [sym_comment] = ACTIONS(57), + [anon_sym_LF] = ACTIONS(5172), + [anon_sym_AMP] = ACTIONS(5174), }, }; @@ -82383,42 +89748,42 @@ static TSParseActionEntry ts_parse_actions[] = { [19] = {.count = 1, .reusable = false}, SHIFT(8), [21] = {.count = 1, .reusable = false}, SHIFT(9), [23] = {.count = 1, .reusable = false}, SHIFT(10), - [25] = {.count = 1, .reusable = false}, SHIFT(11), + [25] = {.count = 1, .reusable = true}, SHIFT(11), [27] = {.count = 1, .reusable = false}, SHIFT(12), - [29] = {.count = 1, .reusable = true}, SHIFT(13), - [31] = {.count = 1, .reusable = false}, SHIFT(14), + [29] = {.count = 1, .reusable = false}, SHIFT(13), + [31] = {.count = 1, .reusable = true}, SHIFT(14), [33] = {.count = 1, .reusable = false}, SHIFT(15), [35] = {.count = 1, .reusable = false}, SHIFT(16), - [37] = {.count = 1, .reusable = true}, SHIFT(16), - [39] = {.count = 1, .reusable = false}, SHIFT(17), - [41] = {.count = 1, .reusable = true}, SHIFT(18), - [43] = {.count = 1, .reusable = false}, SHIFT(19), - [45] = {.count = 1, .reusable = true}, SHIFT(20), + [37] = {.count = 1, .reusable = false}, SHIFT(17), + [39] = {.count = 1, .reusable = true}, SHIFT(17), + [41] = {.count = 1, .reusable = false}, SHIFT(18), + [43] = {.count = 1, .reusable = true}, SHIFT(19), + [45] = {.count = 1, .reusable = false}, SHIFT(20), [47] = {.count = 1, .reusable = true}, SHIFT(21), [49] = {.count = 1, .reusable = true}, SHIFT(22), [51] = {.count = 1, .reusable = true}, SHIFT(23), [53] = {.count = 1, .reusable = true}, SHIFT(24), - [55] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), - [57] = {.count = 1, .reusable = false}, SHIFT(25), - [59] = {.count = 1, .reusable = false}, SHIFT(34), - [61] = {.count = 1, .reusable = true}, SHIFT(34), + [55] = {.count = 1, .reusable = true}, SHIFT(25), + [57] = {.count = 1, .reusable = true}, SHIFT_EXTRA(), + [59] = {.count = 1, .reusable = false}, SHIFT(26), + [61] = {.count = 1, .reusable = false}, SHIFT(35), [63] = {.count = 1, .reusable = true}, SHIFT(35), [65] = {.count = 1, .reusable = true}, SHIFT(36), [67] = {.count = 1, .reusable = true}, SHIFT(37), [69] = {.count = 1, .reusable = true}, SHIFT(38), [71] = {.count = 1, .reusable = true}, SHIFT(39), - [73] = {.count = 1, .reusable = false}, SHIFT(40), - [75] = {.count = 1, .reusable = true}, SHIFT(41), + [73] = {.count = 1, .reusable = true}, SHIFT(40), + [75] = {.count = 1, .reusable = false}, SHIFT(41), [77] = {.count = 1, .reusable = true}, SHIFT(42), - [79] = {.count = 1, .reusable = false}, SHIFT(43), - [81] = {.count = 1, .reusable = true}, SHIFT(44), + [79] = {.count = 1, .reusable = true}, SHIFT(43), + [81] = {.count = 1, .reusable = false}, SHIFT(44), [83] = {.count = 1, .reusable = true}, SHIFT(45), [85] = {.count = 1, .reusable = true}, SHIFT(46), [87] = {.count = 1, .reusable = true}, SHIFT(47), [89] = {.count = 1, .reusable = true}, SHIFT(48), - [91] = {.count = 1, .reusable = false}, SHIFT(44), - [93] = {.count = 1, .reusable = true}, SHIFT(40), - [95] = {.count = 1, .reusable = true}, SHIFT(50), + [91] = {.count = 1, .reusable = true}, SHIFT(49), + [93] = {.count = 1, .reusable = false}, SHIFT(45), + [95] = {.count = 1, .reusable = true}, SHIFT(41), [97] = {.count = 1, .reusable = true}, SHIFT(51), [99] = {.count = 1, .reusable = false}, SHIFT(52), [101] = {.count = 1, .reusable = false}, SHIFT(53), @@ -82426,3129 +89791,3146 @@ static TSParseActionEntry ts_parse_actions[] = { [105] = {.count = 1, .reusable = false}, SHIFT(55), [107] = {.count = 1, .reusable = true}, SHIFT(56), [109] = {.count = 1, .reusable = false}, SHIFT(57), - [111] = {.count = 1, .reusable = false}, SHIFT(58), - [113] = {.count = 1, .reusable = false}, SHIFT(59), - [115] = {.count = 1, .reusable = true}, SHIFT(60), - [117] = {.count = 1, .reusable = false}, SHIFT(61), + [111] = {.count = 1, .reusable = true}, SHIFT(65), + [113] = {.count = 1, .reusable = true}, SHIFT(66), + [115] = {.count = 1, .reusable = false}, SHIFT(67), + [117] = {.count = 1, .reusable = true}, SHIFT(68), [119] = {.count = 1, .reusable = true}, SHIFT(69), [121] = {.count = 1, .reusable = true}, SHIFT(70), - [123] = {.count = 1, .reusable = false}, SHIFT(71), + [123] = {.count = 1, .reusable = true}, SHIFT(71), [125] = {.count = 1, .reusable = true}, SHIFT(72), - [127] = {.count = 1, .reusable = true}, SHIFT(73), - [129] = {.count = 1, .reusable = true}, SHIFT(74), - [131] = {.count = 1, .reusable = true}, SHIFT(75), - [133] = {.count = 1, .reusable = true}, SHIFT(76), - [135] = {.count = 1, .reusable = true}, SHIFT(78), - [137] = {.count = 1, .reusable = true}, SHIFT(79), + [127] = {.count = 1, .reusable = true}, SHIFT(74), + [129] = {.count = 1, .reusable = true}, SHIFT(75), + [131] = {.count = 1, .reusable = false}, SHIFT(76), + [133] = {.count = 1, .reusable = false}, SHIFT(77), + [135] = {.count = 1, .reusable = false}, SHIFT(78), + [137] = {.count = 1, .reusable = false}, SHIFT(79), [139] = {.count = 1, .reusable = true}, SHIFT(80), [141] = {.count = 1, .reusable = false}, SHIFT(81), - [143] = {.count = 1, .reusable = false}, SHIFT(82), - [145] = {.count = 1, .reusable = false}, SHIFT(83), - [147] = {.count = 1, .reusable = false}, SHIFT(84), - [149] = {.count = 1, .reusable = true}, SHIFT(85), - [151] = {.count = 1, .reusable = false}, SHIFT(86), - [153] = {.count = 1, .reusable = false}, SHIFT(87), - [155] = {.count = 1, .reusable = false}, SHIFT(88), - [157] = {.count = 1, .reusable = true}, SHIFT(89), - [159] = {.count = 1, .reusable = false}, SHIFT(90), - [161] = {.count = 1, .reusable = true}, SHIFT(97), - [163] = {.count = 1, .reusable = true}, SHIFT(100), - [165] = {.count = 1, .reusable = false}, SHIFT(101), - [167] = {.count = 1, .reusable = true}, SHIFT(102), - [169] = {.count = 1, .reusable = true}, SHIFT(103), - [171] = {.count = 1, .reusable = false}, SHIFT(104), - [173] = {.count = 1, .reusable = true}, SHIFT(105), - [175] = {.count = 1, .reusable = true}, SHIFT(106), - [177] = {.count = 1, .reusable = true}, SHIFT(107), - [179] = {.count = 1, .reusable = true}, SHIFT(108), - [181] = {.count = 1, .reusable = true}, SHIFT(109), - [183] = {.count = 1, .reusable = false}, SHIFT(105), - [185] = {.count = 1, .reusable = true}, SHIFT(101), - [187] = {.count = 1, .reusable = false}, SHIFT(111), + [143] = {.count = 1, .reusable = true}, SHIFT(88), + [145] = {.count = 1, .reusable = true}, SHIFT(92), + [147] = {.count = 1, .reusable = true}, SHIFT(95), + [149] = {.count = 1, .reusable = false}, SHIFT(96), + [151] = {.count = 1, .reusable = true}, SHIFT(97), + [153] = {.count = 1, .reusable = true}, SHIFT(98), + [155] = {.count = 1, .reusable = false}, SHIFT(99), + [157] = {.count = 1, .reusable = true}, SHIFT(100), + [159] = {.count = 1, .reusable = true}, SHIFT(101), + [161] = {.count = 1, .reusable = true}, SHIFT(102), + [163] = {.count = 1, .reusable = true}, SHIFT(103), + [165] = {.count = 1, .reusable = true}, SHIFT(104), + [167] = {.count = 1, .reusable = false}, SHIFT(100), + [169] = {.count = 1, .reusable = true}, SHIFT(96), + [171] = {.count = 1, .reusable = false}, SHIFT(106), + [173] = {.count = 1, .reusable = true}, SHIFT(107), + [175] = {.count = 1, .reusable = true}, SHIFT(108), + [177] = {.count = 1, .reusable = false}, SHIFT(108), + [179] = {.count = 1, .reusable = true}, SHIFT(106), + [181] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 1), + [183] = {.count = 1, .reusable = true}, SHIFT(110), + [185] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 1), + [187] = {.count = 1, .reusable = true}, SHIFT(111), [189] = {.count = 1, .reusable = true}, SHIFT(112), - [191] = {.count = 1, .reusable = true}, SHIFT(113), - [193] = {.count = 1, .reusable = false}, SHIFT(113), - [195] = {.count = 1, .reusable = true}, SHIFT(111), - [197] = {.count = 1, .reusable = true}, SHIFT(115), - [199] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 1), - [201] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 1), - [203] = {.count = 1, .reusable = true}, SHIFT(116), - [205] = {.count = 1, .reusable = true}, SHIFT(117), - [207] = {.count = 1, .reusable = false}, SHIFT(118), - [209] = {.count = 1, .reusable = true}, SHIFT(119), - [211] = {.count = 1, .reusable = true}, SHIFT(120), - [213] = {.count = 1, .reusable = true}, SHIFT(121), - [215] = {.count = 1, .reusable = true}, SHIFT(122), - [217] = {.count = 1, .reusable = true}, SHIFT(123), - [219] = {.count = 1, .reusable = false}, SHIFT(125), - [221] = {.count = 1, .reusable = false}, SHIFT(119), - [223] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 1), - [225] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 1), - [227] = {.count = 1, .reusable = true}, SHIFT(126), - [229] = {.count = 1, .reusable = true}, SHIFT(127), - [231] = {.count = 1, .reusable = false}, SHIFT(128), - [233] = {.count = 1, .reusable = true}, SHIFT(129), - [235] = {.count = 1, .reusable = true}, SHIFT(130), - [237] = {.count = 1, .reusable = true}, SHIFT(131), - [239] = {.count = 1, .reusable = true}, SHIFT(132), - [241] = {.count = 1, .reusable = true}, SHIFT(133), - [243] = {.count = 1, .reusable = false}, SHIFT(134), - [245] = {.count = 1, .reusable = false}, SHIFT(129), - [247] = {.count = 1, .reusable = true}, SHIFT(135), - [249] = {.count = 1, .reusable = true}, SHIFT(136), - [251] = {.count = 1, .reusable = false}, SHIFT(137), - [253] = {.count = 1, .reusable = true}, SHIFT(138), - [255] = {.count = 1, .reusable = true}, SHIFT(139), - [257] = {.count = 1, .reusable = true}, SHIFT(140), - [259] = {.count = 1, .reusable = true}, SHIFT(141), - [261] = {.count = 1, .reusable = true}, SHIFT(142), - [263] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), - [265] = {.count = 1, .reusable = true}, SHIFT(144), - [267] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), - [269] = {.count = 1, .reusable = false}, SHIFT(146), - [271] = {.count = 1, .reusable = false}, SHIFT(147), - [273] = {.count = 1, .reusable = true}, SHIFT(148), - [275] = {.count = 1, .reusable = false}, SHIFT(149), - [277] = {.count = 1, .reusable = false}, SHIFT(150), - [279] = {.count = 1, .reusable = false}, SHIFT(151), - [281] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), + [191] = {.count = 1, .reusable = false}, SHIFT(113), + [193] = {.count = 1, .reusable = true}, SHIFT(114), + [195] = {.count = 1, .reusable = true}, SHIFT(115), + [197] = {.count = 1, .reusable = true}, SHIFT(116), + [199] = {.count = 1, .reusable = true}, SHIFT(117), + [201] = {.count = 1, .reusable = true}, SHIFT(118), + [203] = {.count = 1, .reusable = false}, SHIFT(120), + [205] = {.count = 1, .reusable = false}, SHIFT(114), + [207] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 1), + [209] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 1), + [211] = {.count = 1, .reusable = true}, SHIFT(121), + [213] = {.count = 1, .reusable = true}, SHIFT(122), + [215] = {.count = 1, .reusable = false}, SHIFT(123), + [217] = {.count = 1, .reusable = true}, SHIFT(124), + [219] = {.count = 1, .reusable = true}, SHIFT(125), + [221] = {.count = 1, .reusable = true}, SHIFT(126), + [223] = {.count = 1, .reusable = true}, SHIFT(127), + [225] = {.count = 1, .reusable = true}, SHIFT(128), + [227] = {.count = 1, .reusable = false}, SHIFT(129), + [229] = {.count = 1, .reusable = false}, SHIFT(124), + [231] = {.count = 1, .reusable = true}, SHIFT(130), + [233] = {.count = 1, .reusable = true}, SHIFT(131), + [235] = {.count = 1, .reusable = false}, SHIFT(132), + [237] = {.count = 1, .reusable = true}, SHIFT(133), + [239] = {.count = 1, .reusable = true}, SHIFT(134), + [241] = {.count = 1, .reusable = true}, SHIFT(135), + [243] = {.count = 1, .reusable = true}, SHIFT(136), + [245] = {.count = 1, .reusable = true}, SHIFT(137), + [247] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), + [249] = {.count = 1, .reusable = true}, SHIFT(139), + [251] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), + [253] = {.count = 1, .reusable = false}, SHIFT(141), + [255] = {.count = 1, .reusable = false}, SHIFT(142), + [257] = {.count = 1, .reusable = true}, SHIFT(143), + [259] = {.count = 1, .reusable = false}, SHIFT(144), + [261] = {.count = 1, .reusable = false}, SHIFT(145), + [263] = {.count = 1, .reusable = false}, SHIFT(146), + [265] = {.count = 1, .reusable = false}, SHIFT_EXTRA(), + [267] = {.count = 1, .reusable = true}, SHIFT(148), + [269] = {.count = 1, .reusable = true}, SHIFT(149), + [271] = {.count = 1, .reusable = false}, SHIFT(150), + [273] = {.count = 1, .reusable = true}, SHIFT(150), + [275] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1), + [277] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1), + [279] = {.count = 1, .reusable = true}, SHIFT(151), + [281] = {.count = 1, .reusable = true}, SHIFT(152), [283] = {.count = 1, .reusable = true}, SHIFT(153), - [285] = {.count = 1, .reusable = true}, SHIFT(154), - [287] = {.count = 1, .reusable = false}, SHIFT(155), - [289] = {.count = 1, .reusable = true}, SHIFT(155), - [291] = {.count = 1, .reusable = true}, REDUCE(sym_command_name, 1), - [293] = {.count = 1, .reusable = false}, REDUCE(sym_command_name, 1), - [295] = {.count = 1, .reusable = true}, SHIFT(156), - [297] = {.count = 1, .reusable = true}, SHIFT(157), - [299] = {.count = 1, .reusable = true}, SHIFT(158), - [301] = {.count = 1, .reusable = false}, SHIFT(159), - [303] = {.count = 1, .reusable = true}, SHIFT(159), - [305] = {.count = 1, .reusable = true}, SHIFT(163), - [307] = {.count = 1, .reusable = false}, SHIFT(164), - [309] = {.count = 1, .reusable = false}, SHIFT(165), - [311] = {.count = 1, .reusable = false}, SHIFT(166), - [313] = {.count = 1, .reusable = false}, SHIFT(167), - [315] = {.count = 1, .reusable = true}, SHIFT(168), - [317] = {.count = 1, .reusable = false}, SHIFT(169), - [319] = {.count = 1, .reusable = false}, SHIFT(170), - [321] = {.count = 1, .reusable = false}, SHIFT(171), - [323] = {.count = 1, .reusable = true}, SHIFT(180), - [325] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), - [327] = {.count = 1, .reusable = true}, REDUCE(sym_program, 1), - [329] = {.count = 1, .reusable = false}, SHIFT(181), - [331] = {.count = 1, .reusable = false}, SHIFT(182), - [333] = {.count = 1, .reusable = true}, SHIFT(181), - [335] = {.count = 1, .reusable = true}, SHIFT(182), - [337] = {.count = 1, .reusable = true}, SHIFT(183), - [339] = {.count = 1, .reusable = true}, SHIFT(184), - [341] = {.count = 1, .reusable = true}, SHIFT(185), - [343] = {.count = 1, .reusable = true}, SHIFT(186), - [345] = {.count = 1, .reusable = true}, REDUCE(sym_command, 1), - [347] = {.count = 1, .reusable = false}, REDUCE(sym_command, 1), - [349] = {.count = 1, .reusable = false}, SHIFT(187), - [351] = {.count = 1, .reusable = false}, SHIFT(188), - [353] = {.count = 1, .reusable = true}, SHIFT(188), - [355] = {.count = 1, .reusable = false}, SHIFT(189), - [357] = {.count = 1, .reusable = true}, SHIFT(189), - [359] = {.count = 1, .reusable = true}, SHIFT(190), - [361] = {.count = 1, .reusable = true}, SHIFT(191), - [363] = {.count = 1, .reusable = true}, SHIFT(192), - [365] = {.count = 1, .reusable = false}, SHIFT(192), - [367] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 1), - [369] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 1), - [371] = {.count = 1, .reusable = true}, SHIFT(17), - [373] = {.count = 1, .reusable = true}, SHIFT(201), - [375] = {.count = 1, .reusable = true}, SHIFT(202), - [377] = {.count = 1, .reusable = true}, SHIFT(204), - [379] = {.count = 1, .reusable = true}, SHIFT(205), - [381] = {.count = 1, .reusable = true}, SHIFT(207), - [383] = {.count = 1, .reusable = true}, SHIFT(208), - [385] = {.count = 1, .reusable = true}, SHIFT(209), - [387] = {.count = 1, .reusable = true}, SHIFT(210), - [389] = {.count = 1, .reusable = false}, SHIFT(211), - [391] = {.count = 1, .reusable = true}, SHIFT(212), - [393] = {.count = 1, .reusable = true}, SHIFT(213), - [395] = {.count = 1, .reusable = true}, SHIFT(214), - [397] = {.count = 1, .reusable = true}, SHIFT(215), - [399] = {.count = 1, .reusable = true}, SHIFT(216), - [401] = {.count = 1, .reusable = false}, SHIFT(217), - [403] = {.count = 1, .reusable = true}, SHIFT(217), - [405] = {.count = 1, .reusable = true}, SHIFT(218), - [407] = {.count = 1, .reusable = false}, SHIFT(219), - [409] = {.count = 1, .reusable = true}, SHIFT(220), - [411] = {.count = 1, .reusable = true}, SHIFT(221), - [413] = {.count = 1, .reusable = false}, SHIFT(222), - [415] = {.count = 1, .reusable = true}, SHIFT(223), - [417] = {.count = 1, .reusable = true}, SHIFT(224), - [419] = {.count = 1, .reusable = true}, SHIFT(225), - [421] = {.count = 1, .reusable = true}, SHIFT(226), - [423] = {.count = 1, .reusable = true}, SHIFT(227), - [425] = {.count = 1, .reusable = false}, SHIFT(223), - [427] = {.count = 1, .reusable = true}, SHIFT(219), - [429] = {.count = 1, .reusable = true}, SHIFT(229), - [431] = {.count = 1, .reusable = false}, SHIFT(230), - [433] = {.count = 1, .reusable = true}, SHIFT(230), - [435] = {.count = 1, .reusable = true}, SHIFT(231), - [437] = {.count = 1, .reusable = false}, SHIFT(232), - [439] = {.count = 1, .reusable = true}, SHIFT(233), - [441] = {.count = 1, .reusable = true}, SHIFT(234), - [443] = {.count = 1, .reusable = false}, SHIFT(235), - [445] = {.count = 1, .reusable = true}, SHIFT(236), - [447] = {.count = 1, .reusable = true}, SHIFT(237), - [449] = {.count = 1, .reusable = true}, SHIFT(238), - [451] = {.count = 1, .reusable = true}, SHIFT(239), + [285] = {.count = 1, .reusable = false}, SHIFT(154), + [287] = {.count = 1, .reusable = true}, SHIFT(154), + [289] = {.count = 1, .reusable = false}, SHIFT(158), + [291] = {.count = 1, .reusable = false}, SHIFT(159), + [293] = {.count = 1, .reusable = false}, SHIFT(160), + [295] = {.count = 1, .reusable = true}, SHIFT(169), + [297] = {.count = 1, .reusable = true}, ACCEPT_INPUT(), + [299] = {.count = 1, .reusable = true}, SHIFT(170), + [301] = {.count = 1, .reusable = true}, SHIFT(171), + [303] = {.count = 1, .reusable = true}, SHIFT(172), + [305] = {.count = 1, .reusable = true}, REDUCE(sym_program, 1), + [307] = {.count = 1, .reusable = false}, SHIFT(173), + [309] = {.count = 1, .reusable = false}, SHIFT(174), + [311] = {.count = 1, .reusable = true}, SHIFT(173), + [313] = {.count = 1, .reusable = true}, SHIFT(174), + [315] = {.count = 1, .reusable = true}, SHIFT(175), + [317] = {.count = 1, .reusable = false}, SHIFT(176), + [319] = {.count = 1, .reusable = true}, SHIFT(176), + [321] = {.count = 1, .reusable = false}, SHIFT(177), + [323] = {.count = 1, .reusable = true}, SHIFT(177), + [325] = {.count = 1, .reusable = true}, SHIFT(178), + [327] = {.count = 1, .reusable = true}, REDUCE(sym_command, 1), + [329] = {.count = 1, .reusable = false}, REDUCE(sym_command, 1), + [331] = {.count = 1, .reusable = false}, SHIFT(181), + [333] = {.count = 1, .reusable = true}, SHIFT(182), + [335] = {.count = 1, .reusable = true}, SHIFT(183), + [337] = {.count = 1, .reusable = false}, SHIFT(183), + [339] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 1), + [341] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 1), + [343] = {.count = 1, .reusable = true}, SHIFT(18), + [345] = {.count = 1, .reusable = true}, SHIFT(190), + [347] = {.count = 1, .reusable = true}, SHIFT(191), + [349] = {.count = 1, .reusable = true}, SHIFT(193), + [351] = {.count = 1, .reusable = true}, SHIFT(194), + [353] = {.count = 1, .reusable = true}, SHIFT(196), + [355] = {.count = 1, .reusable = true}, SHIFT(197), + [357] = {.count = 1, .reusable = true}, SHIFT(198), + [359] = {.count = 1, .reusable = true}, SHIFT(199), + [361] = {.count = 1, .reusable = false}, SHIFT(200), + [363] = {.count = 1, .reusable = true}, SHIFT(201), + [365] = {.count = 1, .reusable = true}, SHIFT(202), + [367] = {.count = 1, .reusable = true}, SHIFT(203), + [369] = {.count = 1, .reusable = true}, SHIFT(204), + [371] = {.count = 1, .reusable = true}, SHIFT(205), + [373] = {.count = 1, .reusable = false}, SHIFT(206), + [375] = {.count = 1, .reusable = true}, SHIFT(206), + [377] = {.count = 1, .reusable = true}, SHIFT(207), + [379] = {.count = 1, .reusable = false}, SHIFT(208), + [381] = {.count = 1, .reusable = true}, SHIFT(209), + [383] = {.count = 1, .reusable = true}, SHIFT(210), + [385] = {.count = 1, .reusable = false}, SHIFT(211), + [387] = {.count = 1, .reusable = true}, SHIFT(212), + [389] = {.count = 1, .reusable = true}, SHIFT(213), + [391] = {.count = 1, .reusable = true}, SHIFT(214), + [393] = {.count = 1, .reusable = true}, SHIFT(215), + [395] = {.count = 1, .reusable = true}, SHIFT(216), + [397] = {.count = 1, .reusable = false}, SHIFT(212), + [399] = {.count = 1, .reusable = true}, SHIFT(208), + [401] = {.count = 1, .reusable = true}, SHIFT(218), + [403] = {.count = 1, .reusable = false}, SHIFT(219), + [405] = {.count = 1, .reusable = true}, SHIFT(219), + [407] = {.count = 1, .reusable = true}, SHIFT(220), + [409] = {.count = 1, .reusable = false}, SHIFT(221), + [411] = {.count = 1, .reusable = true}, SHIFT(222), + [413] = {.count = 1, .reusable = true}, SHIFT(223), + [415] = {.count = 1, .reusable = false}, SHIFT(224), + [417] = {.count = 1, .reusable = true}, SHIFT(225), + [419] = {.count = 1, .reusable = true}, SHIFT(226), + [421] = {.count = 1, .reusable = true}, SHIFT(227), + [423] = {.count = 1, .reusable = true}, SHIFT(228), + [425] = {.count = 1, .reusable = true}, SHIFT(229), + [427] = {.count = 1, .reusable = false}, SHIFT(225), + [429] = {.count = 1, .reusable = true}, SHIFT(221), + [431] = {.count = 1, .reusable = true}, SHIFT(232), + [433] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), + [435] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), + [437] = {.count = 1, .reusable = false}, SHIFT(234), + [439] = {.count = 1, .reusable = false}, SHIFT(235), + [441] = {.count = 1, .reusable = true}, SHIFT(237), + [443] = {.count = 1, .reusable = true}, SHIFT(238), + [445] = {.count = 1, .reusable = false}, SHIFT(239), + [447] = {.count = 1, .reusable = true}, SHIFT(239), + [449] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), + [451] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), [453] = {.count = 1, .reusable = true}, SHIFT(240), - [455] = {.count = 1, .reusable = false}, SHIFT(236), - [457] = {.count = 1, .reusable = true}, SHIFT(232), - [459] = {.count = 1, .reusable = true}, SHIFT(243), - [461] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), - [463] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1, .alias_sequence_id = 1), - [465] = {.count = 1, .reusable = false}, SHIFT(245), - [467] = {.count = 1, .reusable = false}, SHIFT(246), - [469] = {.count = 1, .reusable = true}, SHIFT(248), - [471] = {.count = 1, .reusable = true}, SHIFT(249), - [473] = {.count = 1, .reusable = false}, SHIFT(250), - [475] = {.count = 1, .reusable = true}, SHIFT(250), - [477] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), - [479] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), - [481] = {.count = 1, .reusable = true}, SHIFT(251), - [483] = {.count = 1, .reusable = true}, SHIFT(252), - [485] = {.count = 1, .reusable = true}, SHIFT(253), - [487] = {.count = 1, .reusable = false}, SHIFT(254), - [489] = {.count = 1, .reusable = true}, SHIFT(254), - [491] = {.count = 1, .reusable = true}, SHIFT(264), - [493] = {.count = 1, .reusable = true}, SHIFT(265), - [495] = {.count = 1, .reusable = true}, SHIFT(266), - [497] = {.count = 1, .reusable = false}, SHIFT(265), - [499] = {.count = 1, .reusable = true}, SHIFT(267), - [501] = {.count = 1, .reusable = true}, SHIFT(268), + [455] = {.count = 1, .reusable = true}, SHIFT(241), + [457] = {.count = 1, .reusable = true}, SHIFT(242), + [459] = {.count = 1, .reusable = false}, SHIFT(243), + [461] = {.count = 1, .reusable = true}, SHIFT(243), + [463] = {.count = 1, .reusable = true}, SHIFT(253), + [465] = {.count = 1, .reusable = true}, SHIFT(254), + [467] = {.count = 1, .reusable = true}, SHIFT(255), + [469] = {.count = 1, .reusable = false}, SHIFT(254), + [471] = {.count = 1, .reusable = true}, SHIFT(256), + [473] = {.count = 1, .reusable = true}, SHIFT(257), + [475] = {.count = 1, .reusable = true}, SHIFT(258), + [477] = {.count = 1, .reusable = true}, SHIFT(259), + [479] = {.count = 1, .reusable = true}, SHIFT(260), + [481] = {.count = 1, .reusable = false}, SHIFT(262), + [483] = {.count = 1, .reusable = false}, SHIFT(260), + [485] = {.count = 1, .reusable = true}, SHIFT(263), + [487] = {.count = 1, .reusable = true}, SHIFT(264), + [489] = {.count = 1, .reusable = false}, SHIFT(265), + [491] = {.count = 1, .reusable = false}, SHIFT(264), + [493] = {.count = 1, .reusable = true}, SHIFT(267), + [495] = {.count = 1, .reusable = true}, SHIFT(269), + [497] = {.count = 1, .reusable = false}, SHIFT(270), + [499] = {.count = 1, .reusable = false}, SHIFT(271), + [501] = {.count = 1, .reusable = true}, SHIFT(270), [503] = {.count = 1, .reusable = true}, SHIFT(271), - [505] = {.count = 1, .reusable = true}, SHIFT(274), - [507] = {.count = 1, .reusable = true}, SHIFT(275), - [509] = {.count = 1, .reusable = true}, SHIFT(276), - [511] = {.count = 1, .reusable = false}, SHIFT(278), - [513] = {.count = 1, .reusable = false}, SHIFT(276), - [515] = {.count = 1, .reusable = true}, SHIFT(279), - [517] = {.count = 1, .reusable = true}, SHIFT(280), - [519] = {.count = 1, .reusable = false}, SHIFT(281), - [521] = {.count = 1, .reusable = false}, SHIFT(280), - [523] = {.count = 1, .reusable = true}, SHIFT(283), - [525] = {.count = 1, .reusable = true}, SHIFT(284), - [527] = {.count = 1, .reusable = false}, SHIFT(286), - [529] = {.count = 1, .reusable = false}, SHIFT(287), - [531] = {.count = 1, .reusable = true}, SHIFT(286), - [533] = {.count = 1, .reusable = true}, SHIFT(287), - [535] = {.count = 1, .reusable = true}, SHIFT(288), - [537] = {.count = 1, .reusable = true}, SHIFT(289), - [539] = {.count = 1, .reusable = false}, SHIFT(290), - [541] = {.count = 1, .reusable = false}, SHIFT(291), - [543] = {.count = 1, .reusable = true}, SHIFT(291), - [545] = {.count = 1, .reusable = true}, SHIFT(292), - [547] = {.count = 1, .reusable = true}, SHIFT(293), + [505] = {.count = 1, .reusable = true}, SHIFT(272), + [507] = {.count = 1, .reusable = false}, SHIFT(273), + [509] = {.count = 1, .reusable = true}, SHIFT(273), + [511] = {.count = 1, .reusable = true}, SHIFT(274), + [513] = {.count = 1, .reusable = false}, SHIFT(277), + [515] = {.count = 1, .reusable = true}, SHIFT(278), + [517] = {.count = 1, .reusable = true}, SHIFT(279), + [519] = {.count = 1, .reusable = false}, SHIFT(279), + [521] = {.count = 1, .reusable = true}, SHIFT(55), + [523] = {.count = 1, .reusable = true}, SHIFT(282), + [525] = {.count = 1, .reusable = true}, SHIFT(283), + [527] = {.count = 1, .reusable = true}, SHIFT(284), + [529] = {.count = 1, .reusable = false}, SHIFT(285), + [531] = {.count = 1, .reusable = true}, SHIFT(285), + [533] = {.count = 1, .reusable = false}, SHIFT(287), + [535] = {.count = 1, .reusable = false}, SHIFT(288), + [537] = {.count = 1, .reusable = true}, SHIFT(290), + [539] = {.count = 1, .reusable = true}, SHIFT(291), + [541] = {.count = 1, .reusable = false}, SHIFT(292), + [543] = {.count = 1, .reusable = true}, SHIFT(292), + [545] = {.count = 1, .reusable = true}, SHIFT(293), + [547] = {.count = 1, .reusable = false}, SHIFT(294), [549] = {.count = 1, .reusable = true}, SHIFT(294), - [551] = {.count = 1, .reusable = false}, SHIFT(294), - [553] = {.count = 1, .reusable = true}, SHIFT(59), - [555] = {.count = 1, .reusable = true}, SHIFT(298), - [557] = {.count = 1, .reusable = true}, SHIFT(299), - [559] = {.count = 1, .reusable = true}, SHIFT(300), - [561] = {.count = 1, .reusable = false}, SHIFT(301), - [563] = {.count = 1, .reusable = true}, SHIFT(301), - [565] = {.count = 1, .reusable = false}, SHIFT(303), - [567] = {.count = 1, .reusable = false}, SHIFT(304), - [569] = {.count = 1, .reusable = true}, SHIFT(306), - [571] = {.count = 1, .reusable = true}, SHIFT(307), - [573] = {.count = 1, .reusable = false}, SHIFT(308), - [575] = {.count = 1, .reusable = true}, SHIFT(308), - [577] = {.count = 1, .reusable = true}, SHIFT(309), - [579] = {.count = 1, .reusable = false}, SHIFT(310), - [581] = {.count = 1, .reusable = true}, SHIFT(310), - [583] = {.count = 1, .reusable = true}, SHIFT(311), - [585] = {.count = 1, .reusable = true}, SHIFT(312), - [587] = {.count = 1, .reusable = true}, SHIFT(313), - [589] = {.count = 1, .reusable = false}, SHIFT(314), - [591] = {.count = 1, .reusable = true}, SHIFT(314), - [593] = {.count = 1, .reusable = true}, SHIFT(324), - [595] = {.count = 1, .reusable = true}, SHIFT(325), - [597] = {.count = 1, .reusable = true}, SHIFT(327), - [599] = {.count = 1, .reusable = true}, SHIFT(330), - [601] = {.count = 1, .reusable = true}, SHIFT(333), - [603] = {.count = 1, .reusable = true}, SHIFT(334), - [605] = {.count = 1, .reusable = true}, SHIFT(335), - [607] = {.count = 1, .reusable = false}, SHIFT(337), - [609] = {.count = 1, .reusable = false}, SHIFT(335), - [611] = {.count = 1, .reusable = true}, SHIFT(338), - [613] = {.count = 1, .reusable = true}, SHIFT(339), - [615] = {.count = 1, .reusable = false}, SHIFT(340), - [617] = {.count = 1, .reusable = false}, SHIFT(339), - [619] = {.count = 1, .reusable = true}, SHIFT(342), - [621] = {.count = 1, .reusable = false}, SHIFT(343), - [623] = {.count = 1, .reusable = false}, SHIFT(344), - [625] = {.count = 1, .reusable = true}, SHIFT(345), - [627] = {.count = 1, .reusable = true}, SHIFT(343), - [629] = {.count = 1, .reusable = true}, SHIFT(344), - [631] = {.count = 1, .reusable = true}, SHIFT(346), - [633] = {.count = 1, .reusable = true}, SHIFT(347), - [635] = {.count = 1, .reusable = false}, SHIFT(348), - [637] = {.count = 1, .reusable = false}, SHIFT(349), - [639] = {.count = 1, .reusable = true}, SHIFT(349), + [551] = {.count = 1, .reusable = true}, SHIFT(295), + [553] = {.count = 1, .reusable = true}, SHIFT(296), + [555] = {.count = 1, .reusable = true}, SHIFT(297), + [557] = {.count = 1, .reusable = false}, SHIFT(298), + [559] = {.count = 1, .reusable = true}, SHIFT(298), + [561] = {.count = 1, .reusable = true}, SHIFT(308), + [563] = {.count = 1, .reusable = true}, SHIFT(310), + [565] = {.count = 1, .reusable = true}, SHIFT(311), + [567] = {.count = 1, .reusable = true}, SHIFT(312), + [569] = {.count = 1, .reusable = true}, SHIFT(313), + [571] = {.count = 1, .reusable = false}, SHIFT(315), + [573] = {.count = 1, .reusable = false}, SHIFT(313), + [575] = {.count = 1, .reusable = true}, SHIFT(316), + [577] = {.count = 1, .reusable = true}, SHIFT(317), + [579] = {.count = 1, .reusable = false}, SHIFT(318), + [581] = {.count = 1, .reusable = false}, SHIFT(317), + [583] = {.count = 1, .reusable = true}, SHIFT(320), + [585] = {.count = 1, .reusable = false}, SHIFT(321), + [587] = {.count = 1, .reusable = false}, SHIFT(322), + [589] = {.count = 1, .reusable = true}, SHIFT(323), + [591] = {.count = 1, .reusable = true}, SHIFT(321), + [593] = {.count = 1, .reusable = true}, SHIFT(322), + [595] = {.count = 1, .reusable = true}, SHIFT(324), + [597] = {.count = 1, .reusable = false}, SHIFT(325), + [599] = {.count = 1, .reusable = true}, SHIFT(325), + [601] = {.count = 1, .reusable = true}, SHIFT(326), + [603] = {.count = 1, .reusable = false}, SHIFT(329), + [605] = {.count = 1, .reusable = true}, SHIFT(330), + [607] = {.count = 1, .reusable = true}, SHIFT(331), + [609] = {.count = 1, .reusable = false}, SHIFT(331), + [611] = {.count = 1, .reusable = true}, SHIFT(79), + [613] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [615] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [617] = {.count = 1, .reusable = false}, SHIFT(336), + [619] = {.count = 1, .reusable = true}, SHIFT(336), + [621] = {.count = 1, .reusable = true}, SHIFT(338), + [623] = {.count = 1, .reusable = true}, SHIFT(340), + [625] = {.count = 1, .reusable = true}, REDUCE(sym_negated_command, 2), + [627] = {.count = 1, .reusable = false}, REDUCE(sym_negated_command, 2), + [629] = {.count = 1, .reusable = true}, SHIFT(343), + [631] = {.count = 1, .reusable = false}, SHIFT(345), + [633] = {.count = 1, .reusable = false}, SHIFT(346), + [635] = {.count = 1, .reusable = true}, SHIFT(348), + [637] = {.count = 1, .reusable = true}, SHIFT(349), + [639] = {.count = 1, .reusable = false}, SHIFT(350), [641] = {.count = 1, .reusable = true}, SHIFT(350), [643] = {.count = 1, .reusable = true}, SHIFT(351), [645] = {.count = 1, .reusable = true}, SHIFT(352), - [647] = {.count = 1, .reusable = false}, SHIFT(352), - [649] = {.count = 1, .reusable = true}, SHIFT(88), - [651] = {.count = 1, .reusable = true}, SHIFT(358), - [653] = {.count = 1, .reusable = true}, REDUCE(sym_negated_command, 2), - [655] = {.count = 1, .reusable = false}, REDUCE(sym_negated_command, 2), - [657] = {.count = 1, .reusable = true}, SHIFT(361), - [659] = {.count = 1, .reusable = false}, SHIFT(363), - [661] = {.count = 1, .reusable = false}, SHIFT(364), - [663] = {.count = 1, .reusable = true}, SHIFT(366), - [665] = {.count = 1, .reusable = true}, SHIFT(367), - [667] = {.count = 1, .reusable = false}, SHIFT(368), - [669] = {.count = 1, .reusable = true}, SHIFT(368), - [671] = {.count = 1, .reusable = true}, SHIFT(369), - [673] = {.count = 1, .reusable = true}, SHIFT(370), - [675] = {.count = 1, .reusable = true}, SHIFT(371), - [677] = {.count = 1, .reusable = false}, SHIFT(372), - [679] = {.count = 1, .reusable = true}, SHIFT(372), - [681] = {.count = 1, .reusable = true}, SHIFT(382), - [683] = {.count = 1, .reusable = true}, SHIFT(383), - [685] = {.count = 1, .reusable = false}, SHIFT(382), - [687] = {.count = 1, .reusable = true}, SHIFT(384), - [689] = {.count = 1, .reusable = true}, SHIFT(387), - [691] = {.count = 1, .reusable = true}, SHIFT(388), - [693] = {.count = 1, .reusable = false}, SHIFT(387), - [695] = {.count = 1, .reusable = true}, SHIFT(389), - [697] = {.count = 1, .reusable = true}, SHIFT(390), - [699] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), - [701] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), - [703] = {.count = 1, .reusable = false}, SHIFT(392), + [647] = {.count = 1, .reusable = true}, SHIFT(353), + [649] = {.count = 1, .reusable = false}, SHIFT(354), + [651] = {.count = 1, .reusable = true}, SHIFT(354), + [653] = {.count = 1, .reusable = true}, SHIFT(364), + [655] = {.count = 1, .reusable = true}, SHIFT(365), + [657] = {.count = 1, .reusable = false}, SHIFT(364), + [659] = {.count = 1, .reusable = true}, SHIFT(366), + [661] = {.count = 1, .reusable = true}, SHIFT(369), + [663] = {.count = 1, .reusable = true}, SHIFT(370), + [665] = {.count = 1, .reusable = false}, SHIFT(369), + [667] = {.count = 1, .reusable = true}, SHIFT(371), + [669] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [671] = {.count = 1, .reusable = true}, SHIFT(372), + [673] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [675] = {.count = 1, .reusable = false}, SHIFT(374), + [677] = {.count = 1, .reusable = false}, SHIFT(375), + [679] = {.count = 1, .reusable = true}, SHIFT(377), + [681] = {.count = 1, .reusable = true}, SHIFT(378), + [683] = {.count = 1, .reusable = false}, SHIFT(379), + [685] = {.count = 1, .reusable = true}, SHIFT(379), + [687] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [689] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [691] = {.count = 1, .reusable = true}, SHIFT(380), + [693] = {.count = 1, .reusable = true}, SHIFT(381), + [695] = {.count = 1, .reusable = true}, SHIFT(382), + [697] = {.count = 1, .reusable = false}, SHIFT(383), + [699] = {.count = 1, .reusable = true}, SHIFT(383), + [701] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 2), + [703] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 2), [705] = {.count = 1, .reusable = false}, SHIFT(393), - [707] = {.count = 1, .reusable = true}, SHIFT(395), - [709] = {.count = 1, .reusable = true}, SHIFT(396), - [711] = {.count = 1, .reusable = false}, SHIFT(397), - [713] = {.count = 1, .reusable = true}, SHIFT(397), - [715] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [717] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [719] = {.count = 1, .reusable = true}, SHIFT(398), - [721] = {.count = 1, .reusable = true}, SHIFT(399), - [723] = {.count = 1, .reusable = true}, SHIFT(400), - [725] = {.count = 1, .reusable = false}, SHIFT(401), - [727] = {.count = 1, .reusable = true}, SHIFT(401), - [729] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_command, 2), - [731] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 2), - [733] = {.count = 1, .reusable = false}, SHIFT(411), - [735] = {.count = 1, .reusable = true}, SHIFT(412), - [737] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), - [739] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), - [741] = {.count = 1, .reusable = false}, SHIFT(414), + [707] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), + [709] = {.count = 1, .reusable = true}, SHIFT(394), + [711] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), + [713] = {.count = 1, .reusable = false}, SHIFT(396), + [715] = {.count = 1, .reusable = false}, SHIFT(397), + [717] = {.count = 1, .reusable = true}, SHIFT(399), + [719] = {.count = 1, .reusable = true}, SHIFT(400), + [721] = {.count = 1, .reusable = false}, SHIFT(401), + [723] = {.count = 1, .reusable = true}, SHIFT(401), + [725] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1), + [727] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1), + [729] = {.count = 1, .reusable = true}, SHIFT(402), + [731] = {.count = 1, .reusable = true}, SHIFT(403), + [733] = {.count = 1, .reusable = true}, SHIFT(404), + [735] = {.count = 1, .reusable = false}, SHIFT(405), + [737] = {.count = 1, .reusable = true}, SHIFT(405), + [739] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 2), + [741] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 2), [743] = {.count = 1, .reusable = false}, SHIFT(415), - [745] = {.count = 1, .reusable = true}, SHIFT(417), - [747] = {.count = 1, .reusable = true}, SHIFT(418), - [749] = {.count = 1, .reusable = false}, SHIFT(419), - [751] = {.count = 1, .reusable = true}, SHIFT(419), - [753] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1), - [755] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1), - [757] = {.count = 1, .reusable = true}, SHIFT(420), - [759] = {.count = 1, .reusable = true}, SHIFT(421), - [761] = {.count = 1, .reusable = true}, SHIFT(422), - [763] = {.count = 1, .reusable = false}, SHIFT(423), - [765] = {.count = 1, .reusable = true}, SHIFT(423), - [767] = {.count = 1, .reusable = true}, REDUCE(sym_unset_command, 2), - [769] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 2), - [771] = {.count = 1, .reusable = false}, SHIFT(433), - [773] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 2), - [775] = {.count = 1, .reusable = true}, SHIFT(434), - [777] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 2), - [779] = {.count = 1, .reusable = false}, SHIFT(436), - [781] = {.count = 1, .reusable = false}, SHIFT(437), - [783] = {.count = 1, .reusable = true}, SHIFT(439), - [785] = {.count = 1, .reusable = true}, SHIFT(440), - [787] = {.count = 1, .reusable = false}, SHIFT(441), - [789] = {.count = 1, .reusable = true}, SHIFT(441), - [791] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2), - [793] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2), - [795] = {.count = 1, .reusable = true}, SHIFT(442), - [797] = {.count = 1, .reusable = true}, SHIFT(443), - [799] = {.count = 1, .reusable = true}, SHIFT(444), - [801] = {.count = 1, .reusable = false}, SHIFT(445), - [803] = {.count = 1, .reusable = true}, SHIFT(445), - [805] = {.count = 1, .reusable = true}, SHIFT(455), - [807] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 2), - [809] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 2), - [811] = {.count = 1, .reusable = true}, REDUCE(sym_string, 2), - [813] = {.count = 1, .reusable = false}, REDUCE(sym_string, 2), - [815] = {.count = 1, .reusable = true}, SHIFT(457), - [817] = {.count = 1, .reusable = false}, SHIFT(458), - [819] = {.count = 1, .reusable = false}, SHIFT(457), - [821] = {.count = 1, .reusable = false}, SHIFT(459), - [823] = {.count = 1, .reusable = false}, SHIFT(460), - [825] = {.count = 1, .reusable = true}, SHIFT(460), - [827] = {.count = 1, .reusable = true}, SHIFT(461), - [829] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 1), - [831] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 1), - [833] = {.count = 1, .reusable = true}, SHIFT(462), - [835] = {.count = 1, .reusable = true}, SHIFT(463), - [837] = {.count = 1, .reusable = true}, SHIFT(464), - [839] = {.count = 1, .reusable = false}, SHIFT(465), - [841] = {.count = 1, .reusable = true}, SHIFT(465), - [843] = {.count = 1, .reusable = false}, SHIFT(472), - [845] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 3), - [847] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 3), - [849] = {.count = 1, .reusable = true}, REDUCE(sym_string_expansion, 2), - [851] = {.count = 1, .reusable = false}, REDUCE(sym_string_expansion, 2), - [853] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2), - [855] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2), - [857] = {.count = 1, .reusable = true}, SHIFT(474), - [859] = {.count = 1, .reusable = true}, SHIFT(475), - [861] = {.count = 1, .reusable = true}, SHIFT(476), - [863] = {.count = 1, .reusable = true}, SHIFT(477), - [865] = {.count = 1, .reusable = false}, SHIFT(478), - [867] = {.count = 1, .reusable = true}, SHIFT(478), - [869] = {.count = 1, .reusable = true}, SHIFT(479), - [871] = {.count = 1, .reusable = false}, SHIFT(489), - [873] = {.count = 1, .reusable = false}, SHIFT(480), - [875] = {.count = 1, .reusable = true}, SHIFT(481), - [877] = {.count = 1, .reusable = false}, SHIFT(482), - [879] = {.count = 1, .reusable = true}, SHIFT(483), - [881] = {.count = 1, .reusable = true}, SHIFT(489), - [883] = {.count = 1, .reusable = true}, SHIFT(484), - [885] = {.count = 1, .reusable = true}, SHIFT(485), - [887] = {.count = 1, .reusable = true}, SHIFT(486), - [889] = {.count = 1, .reusable = true}, SHIFT(487), - [891] = {.count = 1, .reusable = true}, SHIFT(488), - [893] = {.count = 1, .reusable = false}, SHIFT(483), - [895] = {.count = 1, .reusable = true}, SHIFT(490), - [897] = {.count = 1, .reusable = false}, SHIFT(492), - [899] = {.count = 1, .reusable = true}, SHIFT(492), - [901] = {.count = 1, .reusable = true}, SHIFT(491), - [903] = {.count = 1, .reusable = false}, SHIFT(493), - [905] = {.count = 1, .reusable = true}, SHIFT(494), - [907] = {.count = 1, .reusable = true}, SHIFT(493), + [745] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 2), + [747] = {.count = 1, .reusable = true}, SHIFT(416), + [749] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 2), + [751] = {.count = 1, .reusable = false}, SHIFT(418), + [753] = {.count = 1, .reusable = false}, SHIFT(419), + [755] = {.count = 1, .reusable = true}, SHIFT(421), + [757] = {.count = 1, .reusable = true}, SHIFT(422), + [759] = {.count = 1, .reusable = false}, SHIFT(423), + [761] = {.count = 1, .reusable = true}, SHIFT(423), + [763] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 2), + [765] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 2), + [767] = {.count = 1, .reusable = true}, SHIFT(424), + [769] = {.count = 1, .reusable = true}, SHIFT(425), + [771] = {.count = 1, .reusable = true}, SHIFT(426), + [773] = {.count = 1, .reusable = false}, SHIFT(427), + [775] = {.count = 1, .reusable = true}, SHIFT(427), + [777] = {.count = 1, .reusable = true}, SHIFT(437), + [779] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 2), + [781] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 2), + [783] = {.count = 1, .reusable = true}, REDUCE(sym_string, 2), + [785] = {.count = 1, .reusable = false}, REDUCE(sym_string, 2), + [787] = {.count = 1, .reusable = true}, SHIFT(439), + [789] = {.count = 1, .reusable = false}, SHIFT(440), + [791] = {.count = 1, .reusable = false}, SHIFT(439), + [793] = {.count = 1, .reusable = false}, SHIFT(441), + [795] = {.count = 1, .reusable = false}, SHIFT(442), + [797] = {.count = 1, .reusable = true}, SHIFT(442), + [799] = {.count = 1, .reusable = true}, SHIFT(443), + [801] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 1), + [803] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 1), + [805] = {.count = 1, .reusable = true}, SHIFT(444), + [807] = {.count = 1, .reusable = true}, SHIFT(445), + [809] = {.count = 1, .reusable = true}, SHIFT(446), + [811] = {.count = 1, .reusable = false}, SHIFT(447), + [813] = {.count = 1, .reusable = true}, SHIFT(447), + [815] = {.count = 1, .reusable = false}, SHIFT(454), + [817] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 3), + [819] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 3), + [821] = {.count = 1, .reusable = true}, REDUCE(sym_string_expansion, 2), + [823] = {.count = 1, .reusable = false}, REDUCE(sym_string_expansion, 2), + [825] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2), + [827] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2), + [829] = {.count = 1, .reusable = true}, SHIFT(456), + [831] = {.count = 1, .reusable = true}, SHIFT(457), + [833] = {.count = 1, .reusable = true}, SHIFT(458), + [835] = {.count = 1, .reusable = true}, SHIFT(459), + [837] = {.count = 1, .reusable = false}, SHIFT(460), + [839] = {.count = 1, .reusable = true}, SHIFT(460), + [841] = {.count = 1, .reusable = true}, SHIFT(461), + [843] = {.count = 1, .reusable = false}, SHIFT(471), + [845] = {.count = 1, .reusable = false}, SHIFT(462), + [847] = {.count = 1, .reusable = true}, SHIFT(463), + [849] = {.count = 1, .reusable = false}, SHIFT(464), + [851] = {.count = 1, .reusable = true}, SHIFT(465), + [853] = {.count = 1, .reusable = true}, SHIFT(471), + [855] = {.count = 1, .reusable = true}, SHIFT(466), + [857] = {.count = 1, .reusable = true}, SHIFT(467), + [859] = {.count = 1, .reusable = true}, SHIFT(468), + [861] = {.count = 1, .reusable = true}, SHIFT(469), + [863] = {.count = 1, .reusable = true}, SHIFT(470), + [865] = {.count = 1, .reusable = false}, SHIFT(465), + [867] = {.count = 1, .reusable = true}, SHIFT(472), + [869] = {.count = 1, .reusable = false}, SHIFT(474), + [871] = {.count = 1, .reusable = true}, SHIFT(474), + [873] = {.count = 1, .reusable = true}, SHIFT(473), + [875] = {.count = 1, .reusable = false}, SHIFT(475), + [877] = {.count = 1, .reusable = true}, SHIFT(476), + [879] = {.count = 1, .reusable = true}, SHIFT(475), + [881] = {.count = 1, .reusable = false}, SHIFT(480), + [883] = {.count = 1, .reusable = false}, SHIFT(481), + [885] = {.count = 1, .reusable = true}, SHIFT(482), + [887] = {.count = 1, .reusable = false}, SHIFT(483), + [889] = {.count = 1, .reusable = false}, SHIFT(484), + [891] = {.count = 1, .reusable = true}, SHIFT(483), + [893] = {.count = 1, .reusable = true}, SHIFT(484), + [895] = {.count = 1, .reusable = true}, SHIFT(485), + [897] = {.count = 1, .reusable = false}, SHIFT(486), + [899] = {.count = 1, .reusable = true}, SHIFT(486), + [901] = {.count = 1, .reusable = true}, SHIFT(487), + [903] = {.count = 1, .reusable = false}, SHIFT(494), + [905] = {.count = 1, .reusable = true}, SHIFT(495), + [907] = {.count = 1, .reusable = true}, SHIFT(494), [909] = {.count = 1, .reusable = true}, SHIFT(499), - [911] = {.count = 1, .reusable = false}, SHIFT(502), - [913] = {.count = 1, .reusable = false}, SHIFT(503), - [915] = {.count = 1, .reusable = true}, SHIFT(504), - [917] = {.count = 1, .reusable = false}, SHIFT(505), - [919] = {.count = 1, .reusable = false}, SHIFT(506), - [921] = {.count = 1, .reusable = true}, SHIFT(505), - [923] = {.count = 1, .reusable = true}, SHIFT(506), - [925] = {.count = 1, .reusable = true}, SHIFT(507), - [927] = {.count = 1, .reusable = true}, SHIFT(508), - [929] = {.count = 1, .reusable = false}, SHIFT(509), - [931] = {.count = 1, .reusable = true}, SHIFT(509), - [933] = {.count = 1, .reusable = true}, SHIFT(510), - [935] = {.count = 1, .reusable = false}, SHIFT(516), - [937] = {.count = 1, .reusable = true}, SHIFT(517), - [939] = {.count = 1, .reusable = true}, SHIFT(516), - [941] = {.count = 1, .reusable = true}, SHIFT(520), - [943] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 2), - [945] = {.count = 1, .reusable = true}, REDUCE(sym_program, 2), - [947] = {.count = 1, .reusable = false}, REDUCE(sym__terminated_statement, 2), - [949] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 1), - [951] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 1), - [953] = {.count = 1, .reusable = true}, SHIFT(528), - [955] = {.count = 1, .reusable = true}, SHIFT(525), - [957] = {.count = 1, .reusable = false}, SHIFT(526), - [959] = {.count = 1, .reusable = true}, SHIFT(527), - [961] = {.count = 1, .reusable = false}, SHIFT(529), - [963] = {.count = 1, .reusable = true}, SHIFT(529), - [965] = {.count = 1, .reusable = true}, SHIFT(530), - [967] = {.count = 1, .reusable = true}, SHIFT(531), - [969] = {.count = 1, .reusable = true}, SHIFT(532), - [971] = {.count = 1, .reusable = true}, SHIFT(533), - [973] = {.count = 1, .reusable = true}, SHIFT(534), - [975] = {.count = 1, .reusable = true}, SHIFT(536), - [977] = {.count = 1, .reusable = true}, SHIFT(537), - [979] = {.count = 1, .reusable = true}, SHIFT(538), - [981] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), - [983] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), - [985] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1), - [987] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1), - [989] = {.count = 1, .reusable = true}, REDUCE(sym_command, 2), - [991] = {.count = 1, .reusable = false}, REDUCE(sym_command, 2), - [993] = {.count = 1, .reusable = false}, SHIFT(544), - [995] = {.count = 1, .reusable = true}, SHIFT(544), - [997] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2), - [1000] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(50), - [1003] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4), - [1006] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(51), - [1009] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(52), - [1012] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(7), - [1015] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(8), - [1018] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(53), - [1021] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(10), - [1024] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(54), - [1027] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(55), - [1030] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(56), - [1033] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(57), - [1036] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(58), - [1039] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(16), - [1042] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(16), - [1045] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(59), - [1048] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(18), - [1051] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(19), - [1054] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(60), - [1057] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(21), - [1060] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(22), - [1063] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(23), - [1066] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(24), - [1069] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(61), - [1072] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), - [1075] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(97), - [1078] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(16), - [1081] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(16), - [1084] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), - [1086] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), - [1088] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 4), - [1090] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 4), - [1092] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3), - [1094] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3), - [1096] = {.count = 1, .reusable = true}, SHIFT(548), - [1098] = {.count = 1, .reusable = true}, SHIFT(549), - [1100] = {.count = 1, .reusable = true}, SHIFT(551), - [1102] = {.count = 1, .reusable = true}, SHIFT(552), - [1104] = {.count = 1, .reusable = true}, SHIFT(553), - [1106] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3), - [1108] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3), - [1110] = {.count = 1, .reusable = true}, SHIFT(554), - [1112] = {.count = 1, .reusable = true}, SHIFT(555), - [1114] = {.count = 1, .reusable = true}, SHIFT(556), - [1116] = {.count = 1, .reusable = false}, SHIFT(557), - [1118] = {.count = 1, .reusable = true}, SHIFT(558), - [1120] = {.count = 1, .reusable = true}, SHIFT(559), - [1122] = {.count = 1, .reusable = true}, SHIFT(560), - [1124] = {.count = 1, .reusable = true}, SHIFT(561), - [1126] = {.count = 1, .reusable = true}, SHIFT(562), - [1128] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 4), - [1130] = {.count = 1, .reusable = true}, SHIFT(564), - [1132] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 4), - [1134] = {.count = 1, .reusable = false}, SHIFT(566), - [1136] = {.count = 1, .reusable = false}, SHIFT(567), - [1138] = {.count = 1, .reusable = true}, SHIFT(569), - [1140] = {.count = 1, .reusable = true}, SHIFT(570), - [1142] = {.count = 1, .reusable = false}, SHIFT(571), - [1144] = {.count = 1, .reusable = true}, SHIFT(571), - [1146] = {.count = 1, .reusable = true}, SHIFT(572), - [1148] = {.count = 1, .reusable = true}, SHIFT(573), - [1150] = {.count = 1, .reusable = true}, SHIFT(574), - [1152] = {.count = 1, .reusable = false}, SHIFT(575), - [1154] = {.count = 1, .reusable = true}, SHIFT(575), - [1156] = {.count = 1, .reusable = false}, SHIFT(585), - [1158] = {.count = 1, .reusable = true}, SHIFT(585), - [1160] = {.count = 1, .reusable = true}, SHIFT(589), - [1162] = {.count = 1, .reusable = false}, SHIFT(591), - [1164] = {.count = 1, .reusable = false}, SHIFT(592), - [1166] = {.count = 1, .reusable = true}, SHIFT(594), - [1168] = {.count = 1, .reusable = true}, SHIFT(595), - [1170] = {.count = 1, .reusable = false}, SHIFT(596), - [1172] = {.count = 1, .reusable = true}, SHIFT(596), - [1174] = {.count = 1, .reusable = true}, SHIFT(597), - [1176] = {.count = 1, .reusable = true}, SHIFT(598), - [1178] = {.count = 1, .reusable = true}, SHIFT(599), - [1180] = {.count = 1, .reusable = false}, SHIFT(600), - [1182] = {.count = 1, .reusable = true}, SHIFT(600), - [1184] = {.count = 1, .reusable = false}, SHIFT(610), - [1186] = {.count = 1, .reusable = true}, SHIFT(610), - [1188] = {.count = 1, .reusable = true}, SHIFT(611), - [1190] = {.count = 1, .reusable = true}, SHIFT(612), - [1192] = {.count = 1, .reusable = false}, SHIFT(611), - [1194] = {.count = 1, .reusable = true}, SHIFT(613), - [1196] = {.count = 1, .reusable = true}, SHIFT(614), - [1198] = {.count = 1, .reusable = true}, SHIFT(615), - [1200] = {.count = 1, .reusable = false}, SHIFT(616), - [1202] = {.count = 1, .reusable = true}, SHIFT(617), - [1204] = {.count = 1, .reusable = true}, SHIFT(618), - [1206] = {.count = 1, .reusable = true}, SHIFT(619), - [1208] = {.count = 1, .reusable = true}, SHIFT(620), - [1210] = {.count = 1, .reusable = true}, SHIFT(621), - [1212] = {.count = 1, .reusable = true}, SHIFT(623), - [1214] = {.count = 1, .reusable = true}, SHIFT(627), - [1216] = {.count = 1, .reusable = false}, SHIFT(629), - [1218] = {.count = 1, .reusable = false}, SHIFT(630), - [1220] = {.count = 1, .reusable = true}, SHIFT(632), - [1222] = {.count = 1, .reusable = true}, SHIFT(633), - [1224] = {.count = 1, .reusable = false}, SHIFT(634), - [1226] = {.count = 1, .reusable = true}, SHIFT(634), - [1228] = {.count = 1, .reusable = true}, SHIFT(635), - [1230] = {.count = 1, .reusable = true}, SHIFT(636), - [1232] = {.count = 1, .reusable = true}, SHIFT(637), - [1234] = {.count = 1, .reusable = false}, SHIFT(638), - [1236] = {.count = 1, .reusable = true}, SHIFT(638), - [1238] = {.count = 1, .reusable = true}, SHIFT(648), - [1240] = {.count = 1, .reusable = true}, SHIFT(649), - [1242] = {.count = 1, .reusable = true}, SHIFT(650), - [1244] = {.count = 1, .reusable = false}, SHIFT(649), - [1246] = {.count = 1, .reusable = true}, SHIFT(651), - [1248] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2), - [1250] = {.count = 1, .reusable = true}, SHIFT(652), - [1252] = {.count = 1, .reusable = false}, SHIFT(654), - [1254] = {.count = 1, .reusable = false}, SHIFT(655), - [1256] = {.count = 1, .reusable = true}, SHIFT(656), - [1258] = {.count = 1, .reusable = true}, SHIFT(657), - [1260] = {.count = 1, .reusable = true}, SHIFT(658), - [1262] = {.count = 1, .reusable = false}, SHIFT(659), - [1264] = {.count = 1, .reusable = true}, SHIFT(659), - [1266] = {.count = 1, .reusable = true}, SHIFT(660), - [1268] = {.count = 1, .reusable = false}, SHIFT(662), - [1270] = {.count = 1, .reusable = true}, SHIFT(662), - [1272] = {.count = 1, .reusable = true}, SHIFT(661), - [1274] = {.count = 1, .reusable = true}, SHIFT(663), - [1276] = {.count = 1, .reusable = false}, SHIFT(665), - [1278] = {.count = 1, .reusable = true}, SHIFT(665), - [1280] = {.count = 1, .reusable = true}, SHIFT(664), - [1282] = {.count = 1, .reusable = false}, SHIFT(666), - [1284] = {.count = 1, .reusable = true}, SHIFT(667), - [1286] = {.count = 1, .reusable = true}, SHIFT(666), - [1288] = {.count = 1, .reusable = false}, SHIFT(670), - [1290] = {.count = 1, .reusable = true}, SHIFT(670), - [1292] = {.count = 1, .reusable = false}, SHIFT(673), - [1294] = {.count = 1, .reusable = true}, SHIFT(674), - [1296] = {.count = 1, .reusable = true}, SHIFT(673), - [1298] = {.count = 1, .reusable = true}, SHIFT(677), - [1300] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 3), - [1302] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 3), - [1304] = {.count = 1, .reusable = false}, SHIFT(678), - [1306] = {.count = 1, .reusable = true}, SHIFT(678), - [1308] = {.count = 1, .reusable = false}, SHIFT(679), - [1310] = {.count = 1, .reusable = true}, SHIFT(679), - [1312] = {.count = 1, .reusable = true}, SHIFT(680), - [1314] = {.count = 1, .reusable = true}, SHIFT(683), - [1316] = {.count = 1, .reusable = true}, REDUCE(sym_postfix_expression, 2), - [1318] = {.count = 1, .reusable = false}, REDUCE(sym_postfix_expression, 2), - [1320] = {.count = 1, .reusable = true}, SHIFT(684), - [1322] = {.count = 1, .reusable = true}, SHIFT(685), - [1324] = {.count = 1, .reusable = true}, SHIFT(686), - [1326] = {.count = 1, .reusable = true}, SHIFT(688), - [1328] = {.count = 1, .reusable = true}, SHIFT(690), - [1330] = {.count = 1, .reusable = false}, SHIFT(692), - [1332] = {.count = 1, .reusable = false}, SHIFT(694), - [1334] = {.count = 1, .reusable = true}, SHIFT(696), - [1336] = {.count = 1, .reusable = false}, SHIFT(697), - [1338] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), - [1340] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), - [1342] = {.count = 1, .reusable = false}, SHIFT(703), - [1344] = {.count = 1, .reusable = true}, SHIFT(703), - [1346] = {.count = 1, .reusable = true}, SHIFT(704), - [1348] = {.count = 1, .reusable = true}, SHIFT(705), - [1350] = {.count = 1, .reusable = true}, SHIFT(706), - [1352] = {.count = 1, .reusable = true}, SHIFT(707), - [1354] = {.count = 1, .reusable = true}, SHIFT(708), - [1356] = {.count = 1, .reusable = true}, SHIFT(709), - [1358] = {.count = 1, .reusable = false}, SHIFT(714), - [1360] = {.count = 1, .reusable = false}, SHIFT(715), - [1362] = {.count = 1, .reusable = false}, SHIFT(716), - [1364] = {.count = 1, .reusable = true}, SHIFT(720), - [1366] = {.count = 1, .reusable = false}, SHIFT(721), - [1368] = {.count = 1, .reusable = true}, SHIFT(721), - [1370] = {.count = 1, .reusable = true}, SHIFT(722), - [1372] = {.count = 1, .reusable = false}, SHIFT(724), - [1374] = {.count = 1, .reusable = false}, SHIFT(725), - [1376] = {.count = 1, .reusable = false}, SHIFT(726), - [1378] = {.count = 1, .reusable = true}, SHIFT(726), - [1380] = {.count = 1, .reusable = true}, SHIFT(727), - [1382] = {.count = 1, .reusable = true}, SHIFT(728), - [1384] = {.count = 1, .reusable = true}, SHIFT(729), - [1386] = {.count = 1, .reusable = true}, SHIFT(730), - [1388] = {.count = 1, .reusable = false}, SHIFT(731), - [1390] = {.count = 1, .reusable = true}, SHIFT(731), - [1392] = {.count = 1, .reusable = true}, SHIFT(732), - [1394] = {.count = 1, .reusable = false}, SHIFT(734), - [1396] = {.count = 1, .reusable = true}, SHIFT(734), - [1398] = {.count = 1, .reusable = true}, SHIFT(733), - [1400] = {.count = 1, .reusable = true}, SHIFT(735), - [1402] = {.count = 1, .reusable = false}, SHIFT(737), - [1404] = {.count = 1, .reusable = true}, SHIFT(737), - [1406] = {.count = 1, .reusable = true}, SHIFT(736), - [1408] = {.count = 1, .reusable = false}, SHIFT(738), - [1410] = {.count = 1, .reusable = true}, SHIFT(739), - [1412] = {.count = 1, .reusable = true}, SHIFT(738), - [1414] = {.count = 1, .reusable = false}, SHIFT(742), - [1416] = {.count = 1, .reusable = true}, SHIFT(742), - [1418] = {.count = 1, .reusable = false}, SHIFT(745), - [1420] = {.count = 1, .reusable = true}, SHIFT(746), - [1422] = {.count = 1, .reusable = true}, SHIFT(745), - [1424] = {.count = 1, .reusable = true}, SHIFT(749), - [1426] = {.count = 1, .reusable = true}, SHIFT(750), - [1428] = {.count = 1, .reusable = true}, SHIFT(754), - [1430] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), - [1432] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), - [1434] = {.count = 1, .reusable = false}, SHIFT(755), - [1436] = {.count = 1, .reusable = true}, SHIFT(755), - [1438] = {.count = 1, .reusable = true}, SHIFT(757), - [1440] = {.count = 1, .reusable = true}, SHIFT(758), - [1442] = {.count = 1, .reusable = true}, SHIFT(759), - [1444] = {.count = 1, .reusable = true}, SHIFT(761), - [1446] = {.count = 1, .reusable = true}, SHIFT(763), - [1448] = {.count = 1, .reusable = false}, SHIFT(765), - [1450] = {.count = 1, .reusable = false}, SHIFT(767), - [1452] = {.count = 1, .reusable = true}, SHIFT(769), - [1454] = {.count = 1, .reusable = true}, SHIFT(770), - [1456] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 3), - [1458] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 3), - [1460] = {.count = 1, .reusable = false}, SHIFT(773), - [1462] = {.count = 1, .reusable = true}, SHIFT(773), - [1464] = {.count = 1, .reusable = true}, SHIFT(774), - [1466] = {.count = 1, .reusable = true}, SHIFT(775), - [1468] = {.count = 1, .reusable = true}, SHIFT(776), - [1470] = {.count = 1, .reusable = true}, SHIFT(777), - [1472] = {.count = 1, .reusable = true}, SHIFT(778), - [1474] = {.count = 1, .reusable = true}, SHIFT(779), - [1476] = {.count = 1, .reusable = false}, SHIFT(783), - [1478] = {.count = 1, .reusable = true}, SHIFT(783), - [1480] = {.count = 1, .reusable = true}, SHIFT(785), - [1482] = {.count = 1, .reusable = true}, SHIFT(786), - [1484] = {.count = 1, .reusable = true}, SHIFT(787), - [1486] = {.count = 1, .reusable = true}, SHIFT(788), - [1488] = {.count = 1, .reusable = true}, SHIFT(789), - [1490] = {.count = 1, .reusable = true}, SHIFT(790), - [1492] = {.count = 1, .reusable = false}, SHIFT(792), - [1494] = {.count = 1, .reusable = false}, SHIFT(793), - [1496] = {.count = 1, .reusable = true}, SHIFT(794), - [1498] = {.count = 1, .reusable = true}, SHIFT(795), - [1500] = {.count = 1, .reusable = true}, SHIFT(796), - [1502] = {.count = 1, .reusable = false}, SHIFT(797), - [1504] = {.count = 1, .reusable = true}, SHIFT(797), - [1506] = {.count = 1, .reusable = true}, SHIFT(798), - [1508] = {.count = 1, .reusable = false}, SHIFT(800), - [1510] = {.count = 1, .reusable = true}, SHIFT(800), - [1512] = {.count = 1, .reusable = true}, SHIFT(799), - [1514] = {.count = 1, .reusable = true}, SHIFT(801), - [1516] = {.count = 1, .reusable = false}, SHIFT(803), - [1518] = {.count = 1, .reusable = true}, SHIFT(803), - [1520] = {.count = 1, .reusable = true}, SHIFT(802), - [1522] = {.count = 1, .reusable = false}, SHIFT(804), - [1524] = {.count = 1, .reusable = true}, SHIFT(805), - [1526] = {.count = 1, .reusable = true}, SHIFT(804), - [1528] = {.count = 1, .reusable = false}, SHIFT(808), - [1530] = {.count = 1, .reusable = true}, SHIFT(808), - [1532] = {.count = 1, .reusable = false}, SHIFT(811), - [1534] = {.count = 1, .reusable = true}, SHIFT(812), - [1536] = {.count = 1, .reusable = true}, SHIFT(811), - [1538] = {.count = 1, .reusable = true}, SHIFT(816), - [1540] = {.count = 1, .reusable = true}, SHIFT(818), - [1542] = {.count = 1, .reusable = true}, SHIFT(819), - [1544] = {.count = 1, .reusable = true}, SHIFT(820), - [1546] = {.count = 1, .reusable = true}, SHIFT(821), - [1548] = {.count = 1, .reusable = true}, SHIFT(822), - [1550] = {.count = 1, .reusable = false}, SHIFT(824), - [1552] = {.count = 1, .reusable = false}, SHIFT(825), - [1554] = {.count = 1, .reusable = true}, SHIFT(826), - [1556] = {.count = 1, .reusable = true}, SHIFT(827), - [1558] = {.count = 1, .reusable = true}, SHIFT(828), - [1560] = {.count = 1, .reusable = false}, SHIFT(829), - [1562] = {.count = 1, .reusable = true}, SHIFT(829), - [1564] = {.count = 1, .reusable = true}, SHIFT(830), - [1566] = {.count = 1, .reusable = false}, SHIFT(832), - [1568] = {.count = 1, .reusable = true}, SHIFT(832), - [1570] = {.count = 1, .reusable = true}, SHIFT(831), - [1572] = {.count = 1, .reusable = true}, SHIFT(833), - [1574] = {.count = 1, .reusable = false}, SHIFT(835), - [1576] = {.count = 1, .reusable = true}, SHIFT(835), - [1578] = {.count = 1, .reusable = true}, SHIFT(834), - [1580] = {.count = 1, .reusable = false}, SHIFT(836), - [1582] = {.count = 1, .reusable = true}, SHIFT(837), - [1584] = {.count = 1, .reusable = true}, SHIFT(836), - [1586] = {.count = 1, .reusable = false}, SHIFT(840), - [1588] = {.count = 1, .reusable = true}, SHIFT(840), - [1590] = {.count = 1, .reusable = false}, SHIFT(843), - [1592] = {.count = 1, .reusable = true}, SHIFT(844), - [1594] = {.count = 1, .reusable = true}, SHIFT(843), - [1596] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(115), - [1599] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1601] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1603] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(116), - [1606] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(117), - [1609] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(118), - [1612] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(119), - [1615] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(120), - [1618] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(121), - [1621] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(122), - [1624] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(123), - [1627] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(411), - [1630] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(119), - [1633] = {.count = 1, .reusable = true}, SHIFT(847), - [1635] = {.count = 1, .reusable = false}, SHIFT(849), - [1637] = {.count = 1, .reusable = false}, SHIFT(850), - [1639] = {.count = 1, .reusable = true}, SHIFT(851), - [1641] = {.count = 1, .reusable = true}, SHIFT(852), - [1643] = {.count = 1, .reusable = true}, SHIFT(853), - [1645] = {.count = 1, .reusable = false}, SHIFT(854), - [1647] = {.count = 1, .reusable = true}, SHIFT(854), - [1649] = {.count = 1, .reusable = true}, SHIFT(855), - [1651] = {.count = 1, .reusable = false}, SHIFT(857), - [1653] = {.count = 1, .reusable = true}, SHIFT(857), - [1655] = {.count = 1, .reusable = true}, SHIFT(856), - [1657] = {.count = 1, .reusable = true}, SHIFT(858), - [1659] = {.count = 1, .reusable = false}, SHIFT(860), - [1661] = {.count = 1, .reusable = true}, SHIFT(860), - [1663] = {.count = 1, .reusable = true}, SHIFT(859), - [1665] = {.count = 1, .reusable = false}, SHIFT(861), - [1667] = {.count = 1, .reusable = true}, SHIFT(862), - [1669] = {.count = 1, .reusable = true}, SHIFT(861), - [1671] = {.count = 1, .reusable = false}, SHIFT(865), - [1673] = {.count = 1, .reusable = true}, SHIFT(865), - [1675] = {.count = 1, .reusable = false}, SHIFT(868), - [1677] = {.count = 1, .reusable = true}, SHIFT(869), - [1679] = {.count = 1, .reusable = true}, SHIFT(868), - [1681] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), - [1683] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), - [1685] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(126), - [1688] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(127), - [1691] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(128), - [1694] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(129), - [1697] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(130), - [1700] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(131), - [1703] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(132), - [1706] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(133), - [1709] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(433), - [1712] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(129), - [1715] = {.count = 1, .reusable = true}, SHIFT(872), - [1717] = {.count = 1, .reusable = false}, SHIFT(874), - [1719] = {.count = 1, .reusable = false}, SHIFT(875), - [1721] = {.count = 1, .reusable = true}, SHIFT(876), - [1723] = {.count = 1, .reusable = true}, SHIFT(877), - [1725] = {.count = 1, .reusable = true}, SHIFT(878), - [1727] = {.count = 1, .reusable = false}, SHIFT(879), - [1729] = {.count = 1, .reusable = true}, SHIFT(879), - [1731] = {.count = 1, .reusable = true}, SHIFT(880), - [1733] = {.count = 1, .reusable = false}, SHIFT(882), - [1735] = {.count = 1, .reusable = true}, SHIFT(882), - [1737] = {.count = 1, .reusable = true}, SHIFT(881), - [1739] = {.count = 1, .reusable = true}, SHIFT(883), - [1741] = {.count = 1, .reusable = false}, SHIFT(885), - [1743] = {.count = 1, .reusable = true}, SHIFT(885), - [1745] = {.count = 1, .reusable = true}, SHIFT(884), - [1747] = {.count = 1, .reusable = false}, SHIFT(886), - [1749] = {.count = 1, .reusable = true}, SHIFT(887), - [1751] = {.count = 1, .reusable = true}, SHIFT(886), - [1753] = {.count = 1, .reusable = false}, SHIFT(890), - [1755] = {.count = 1, .reusable = true}, SHIFT(890), - [1757] = {.count = 1, .reusable = false}, SHIFT(893), - [1759] = {.count = 1, .reusable = true}, SHIFT(894), - [1761] = {.count = 1, .reusable = true}, SHIFT(893), - [1763] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1765] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1767] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(144), - [1770] = {.count = 1, .reusable = true}, REDUCE(sym_string, 3), - [1772] = {.count = 1, .reusable = false}, REDUCE(sym_string, 3), - [1774] = {.count = 1, .reusable = true}, SHIFT(897), - [1776] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), - [1778] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), - [1780] = {.count = 1, .reusable = true}, SHIFT(898), - [1782] = {.count = 1, .reusable = true}, SHIFT(899), - [1784] = {.count = 1, .reusable = true}, SHIFT(900), - [1786] = {.count = 1, .reusable = false}, SHIFT(901), - [1788] = {.count = 1, .reusable = true}, SHIFT(901), - [1790] = {.count = 1, .reusable = true}, SHIFT(902), - [1792] = {.count = 1, .reusable = false}, SHIFT(904), - [1794] = {.count = 1, .reusable = true}, SHIFT(904), - [1796] = {.count = 1, .reusable = true}, SHIFT(903), - [1798] = {.count = 1, .reusable = true}, SHIFT(905), - [1800] = {.count = 1, .reusable = false}, SHIFT(907), - [1802] = {.count = 1, .reusable = true}, SHIFT(907), - [1804] = {.count = 1, .reusable = true}, SHIFT(906), - [1806] = {.count = 1, .reusable = false}, SHIFT(908), - [1808] = {.count = 1, .reusable = true}, SHIFT(909), - [1810] = {.count = 1, .reusable = true}, SHIFT(908), - [1812] = {.count = 1, .reusable = false}, SHIFT(912), - [1814] = {.count = 1, .reusable = true}, SHIFT(912), - [1816] = {.count = 1, .reusable = false}, SHIFT(915), - [1818] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(916), - [1821] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(148), - [1824] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(149), - [1827] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(150), - [1830] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(151), - [1833] = {.count = 1, .reusable = true}, SHIFT(917), - [1835] = {.count = 1, .reusable = true}, SHIFT(918), - [1837] = {.count = 1, .reusable = true}, SHIFT(920), - [1839] = {.count = 1, .reusable = false}, SHIFT(921), - [1841] = {.count = 1, .reusable = true}, SHIFT(922), - [1843] = {.count = 1, .reusable = false}, SHIFT(923), - [1845] = {.count = 1, .reusable = true}, SHIFT(924), - [1847] = {.count = 1, .reusable = true}, SHIFT(925), - [1849] = {.count = 1, .reusable = true}, SHIFT(926), - [1851] = {.count = 1, .reusable = true}, SHIFT(927), - [1853] = {.count = 1, .reusable = true}, SHIFT(928), - [1855] = {.count = 1, .reusable = true}, SHIFT(930), - [1857] = {.count = 1, .reusable = true}, SHIFT(931), - [1859] = {.count = 1, .reusable = false}, SHIFT(933), - [1861] = {.count = 1, .reusable = true}, SHIFT(933), - [1863] = {.count = 1, .reusable = true}, SHIFT(932), - [1865] = {.count = 1, .reusable = false}, SHIFT(935), - [1867] = {.count = 1, .reusable = true}, SHIFT(935), - [1869] = {.count = 1, .reusable = true}, SHIFT(934), - [1871] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 3), - [1873] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 3), - [1875] = {.count = 1, .reusable = true}, SHIFT(936), - [1877] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1879] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1881] = {.count = 1, .reusable = false}, SHIFT(938), - [1883] = {.count = 1, .reusable = false}, SHIFT(939), - [1885] = {.count = 1, .reusable = true}, SHIFT(941), - [1887] = {.count = 1, .reusable = true}, SHIFT(942), - [1889] = {.count = 1, .reusable = false}, SHIFT(943), - [1891] = {.count = 1, .reusable = true}, SHIFT(943), - [1893] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), - [1895] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), - [1897] = {.count = 1, .reusable = true}, SHIFT(944), - [1899] = {.count = 1, .reusable = true}, SHIFT(945), - [1901] = {.count = 1, .reusable = true}, SHIFT(946), - [1903] = {.count = 1, .reusable = false}, SHIFT(947), - [1905] = {.count = 1, .reusable = true}, SHIFT(947), - [1907] = {.count = 1, .reusable = true}, SHIFT(948), - [1909] = {.count = 1, .reusable = true}, SHIFT(949), - [1911] = {.count = 1, .reusable = false}, SHIFT(950), - [1913] = {.count = 1, .reusable = true}, SHIFT(950), - [1915] = {.count = 1, .reusable = false}, SHIFT(960), - [1917] = {.count = 1, .reusable = true}, SHIFT(960), - [1919] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3), - [1921] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3), - [1923] = {.count = 1, .reusable = true}, SHIFT(961), - [1925] = {.count = 1, .reusable = true}, SHIFT(962), - [1927] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 3), - [1929] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 3), - [1931] = {.count = 1, .reusable = false}, SHIFT(963), - [1933] = {.count = 1, .reusable = true}, SHIFT(963), - [1935] = {.count = 1, .reusable = true}, SHIFT(964), - [1937] = {.count = 1, .reusable = true}, SHIFT(966), - [1939] = {.count = 1, .reusable = true}, SHIFT(968), - [1941] = {.count = 1, .reusable = false}, SHIFT(972), - [1943] = {.count = 1, .reusable = true}, SHIFT(972), - [1945] = {.count = 1, .reusable = true}, SHIFT(973), - [1947] = {.count = 1, .reusable = true}, SHIFT(974), - [1949] = {.count = 1, .reusable = true}, SHIFT(975), - [1951] = {.count = 1, .reusable = true}, SHIFT(976), - [1953] = {.count = 1, .reusable = false}, SHIFT(979), - [1955] = {.count = 1, .reusable = true}, SHIFT(979), - [1957] = {.count = 1, .reusable = true}, SHIFT(981), - [1959] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 3), - [1961] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 3), - [1963] = {.count = 1, .reusable = false}, SHIFT(982), - [1965] = {.count = 1, .reusable = true}, SHIFT(982), - [1967] = {.count = 1, .reusable = true}, REDUCE(sym_pipeline, 3), - [1969] = {.count = 1, .reusable = false}, REDUCE(sym_pipeline, 3), - [1971] = {.count = 1, .reusable = true}, REDUCE(sym_list, 3), - [1973] = {.count = 1, .reusable = false}, REDUCE(sym_list, 3), - [1975] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 2), - [1977] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 2), - [1979] = {.count = 1, .reusable = true}, SHIFT(984), - [1981] = {.count = 1, .reusable = false}, SHIFT(985), - [1983] = {.count = 1, .reusable = true}, SHIFT(985), - [1985] = {.count = 1, .reusable = true}, SHIFT(986), - [1987] = {.count = 1, .reusable = true}, SHIFT(987), - [1989] = {.count = 1, .reusable = true}, SHIFT(988), - [1991] = {.count = 1, .reusable = false}, SHIFT(989), - [1993] = {.count = 1, .reusable = true}, SHIFT(989), - [1995] = {.count = 1, .reusable = true}, SHIFT(991), - [1997] = {.count = 1, .reusable = true}, SHIFT(990), - [1999] = {.count = 1, .reusable = true}, SHIFT(992), - [2001] = {.count = 1, .reusable = true}, SHIFT(993), - [2003] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), - [2005] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), - [2007] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 2), - [2009] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 2), - [2011] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_redirect, 2), - [2013] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_redirect, 2), - [2015] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 2), - [2017] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 2), - [2019] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2), - [2021] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2), - [2023] = {.count = 1, .reusable = true}, REDUCE(sym_command, 3), - [2025] = {.count = 1, .reusable = false}, REDUCE(sym_command, 3), - [2027] = {.count = 1, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), - [2029] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(186), - [2032] = {.count = 1, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), - [2034] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(188), - [2037] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(188), - [2040] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(189), - [2043] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(189), - [2046] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(190), - [2049] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(187), - [2052] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(191), - [2055] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(18), - [2058] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(19), - [2061] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(192), - [2064] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(21), - [2067] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), - [2070] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(23), - [2073] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(24), - [2076] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(192), - [2079] = {.count = 1, .reusable = true}, REDUCE(sym_program, 3), - [2081] = {.count = 1, .reusable = false}, SHIFT(997), - [2083] = {.count = 1, .reusable = true}, SHIFT(997), - [2085] = {.count = 1, .reusable = true}, SHIFT(999), - [2087] = {.count = 1, .reusable = false}, SHIFT(790), - [2089] = {.count = 1, .reusable = true}, SHIFT(1000), - [2091] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4, .alias_sequence_id = 4), - [2093] = {.count = 1, .reusable = true}, SHIFT(1002), - [2095] = {.count = 1, .reusable = true}, SHIFT(1003), - [2097] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4), - [2099] = {.count = 1, .reusable = true}, REDUCE(sym_array, 2), - [2101] = {.count = 1, .reusable = false}, REDUCE(sym_array, 2), - [2103] = {.count = 1, .reusable = true}, SHIFT(1004), - [2105] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [2107] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [2109] = {.count = 1, .reusable = false}, SHIFT(1006), - [2111] = {.count = 1, .reusable = false}, SHIFT(1007), - [2113] = {.count = 1, .reusable = true}, SHIFT(1009), - [2115] = {.count = 1, .reusable = true}, SHIFT(1010), - [2117] = {.count = 1, .reusable = false}, SHIFT(1011), - [2119] = {.count = 1, .reusable = true}, SHIFT(1011), - [2121] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1), - [2123] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1), - [2125] = {.count = 1, .reusable = true}, SHIFT(1012), - [2127] = {.count = 1, .reusable = true}, SHIFT(1013), - [2129] = {.count = 1, .reusable = true}, SHIFT(1014), - [2131] = {.count = 1, .reusable = false}, SHIFT(1015), - [2133] = {.count = 1, .reusable = true}, SHIFT(1015), - [2135] = {.count = 1, .reusable = true}, SHIFT(1025), - [2137] = {.count = 1, .reusable = true}, SHIFT(1027), - [2139] = {.count = 1, .reusable = false}, SHIFT(1029), - [2141] = {.count = 1, .reusable = false}, SHIFT(1030), - [2143] = {.count = 1, .reusable = true}, SHIFT(1031), - [2145] = {.count = 1, .reusable = true}, SHIFT(1032), - [2147] = {.count = 1, .reusable = true}, SHIFT(1033), - [2149] = {.count = 1, .reusable = false}, SHIFT(1034), - [2151] = {.count = 1, .reusable = true}, SHIFT(1034), - [2153] = {.count = 1, .reusable = true}, SHIFT(1035), - [2155] = {.count = 1, .reusable = false}, SHIFT(1037), - [2157] = {.count = 1, .reusable = true}, SHIFT(1037), - [2159] = {.count = 1, .reusable = true}, SHIFT(1036), - [2161] = {.count = 1, .reusable = true}, SHIFT(1038), - [2163] = {.count = 1, .reusable = false}, SHIFT(1040), - [2165] = {.count = 1, .reusable = true}, SHIFT(1040), - [2167] = {.count = 1, .reusable = true}, SHIFT(1039), - [2169] = {.count = 1, .reusable = false}, SHIFT(1041), - [2171] = {.count = 1, .reusable = true}, SHIFT(1042), - [2173] = {.count = 1, .reusable = true}, SHIFT(1041), - [2175] = {.count = 1, .reusable = false}, SHIFT(1045), - [2177] = {.count = 1, .reusable = true}, SHIFT(1045), - [2179] = {.count = 1, .reusable = false}, SHIFT(1048), - [2181] = {.count = 1, .reusable = true}, SHIFT(1049), - [2183] = {.count = 1, .reusable = true}, SHIFT(1048), - [2185] = {.count = 1, .reusable = true}, SHIFT(1052), - [2187] = {.count = 1, .reusable = false}, SHIFT(1054), - [2189] = {.count = 1, .reusable = true}, SHIFT(1054), - [2191] = {.count = 1, .reusable = true}, SHIFT(1055), - [2193] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2), - [2195] = {.count = 1, .reusable = true}, SHIFT(1056), - [2197] = {.count = 1, .reusable = false}, SHIFT(1058), - [2199] = {.count = 1, .reusable = false}, SHIFT(1059), - [2201] = {.count = 1, .reusable = true}, SHIFT(1060), - [2203] = {.count = 1, .reusable = true}, SHIFT(1061), - [2205] = {.count = 1, .reusable = true}, SHIFT(1062), - [2207] = {.count = 1, .reusable = false}, SHIFT(1063), - [2209] = {.count = 1, .reusable = true}, SHIFT(1063), - [2211] = {.count = 1, .reusable = true}, SHIFT(1064), - [2213] = {.count = 1, .reusable = false}, SHIFT(1066), - [2215] = {.count = 1, .reusable = true}, SHIFT(1066), - [2217] = {.count = 1, .reusable = true}, SHIFT(1065), - [2219] = {.count = 1, .reusable = true}, SHIFT(1067), - [2221] = {.count = 1, .reusable = false}, SHIFT(1069), - [2223] = {.count = 1, .reusable = true}, SHIFT(1069), - [2225] = {.count = 1, .reusable = true}, SHIFT(1068), - [2227] = {.count = 1, .reusable = false}, SHIFT(1070), - [2229] = {.count = 1, .reusable = true}, SHIFT(1071), - [2231] = {.count = 1, .reusable = true}, SHIFT(1070), - [2233] = {.count = 1, .reusable = false}, SHIFT(1074), - [2235] = {.count = 1, .reusable = true}, SHIFT(1074), - [2237] = {.count = 1, .reusable = false}, SHIFT(1077), - [2239] = {.count = 1, .reusable = true}, SHIFT(1078), - [2241] = {.count = 1, .reusable = true}, SHIFT(1077), - [2243] = {.count = 1, .reusable = true}, SHIFT(1083), - [2245] = {.count = 1, .reusable = true}, SHIFT(1084), - [2247] = {.count = 1, .reusable = false}, SHIFT(1086), - [2249] = {.count = 1, .reusable = false}, SHIFT(1087), - [2251] = {.count = 1, .reusable = true}, SHIFT(1089), - [2253] = {.count = 1, .reusable = true}, SHIFT(1090), - [2255] = {.count = 1, .reusable = false}, SHIFT(1091), - [2257] = {.count = 1, .reusable = true}, SHIFT(1091), - [2259] = {.count = 1, .reusable = true}, SHIFT(1092), - [2261] = {.count = 1, .reusable = true}, SHIFT(1093), - [2263] = {.count = 1, .reusable = true}, SHIFT(1094), - [2265] = {.count = 1, .reusable = false}, SHIFT(1095), - [2267] = {.count = 1, .reusable = true}, SHIFT(1095), - [2269] = {.count = 1, .reusable = false}, SHIFT(1105), - [2271] = {.count = 1, .reusable = true}, SHIFT(1105), - [2273] = {.count = 1, .reusable = false}, SHIFT(617), - [2275] = {.count = 1, .reusable = false}, SHIFT(1107), - [2277] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 4), - [2279] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 4), - [2281] = {.count = 1, .reusable = true}, SHIFT(1109), - [2283] = {.count = 1, .reusable = true}, SHIFT(1110), - [2285] = {.count = 1, .reusable = false}, SHIFT(1112), - [2287] = {.count = 1, .reusable = false}, SHIFT(1113), - [2289] = {.count = 1, .reusable = true}, SHIFT(1114), - [2291] = {.count = 1, .reusable = true}, SHIFT(1115), - [2293] = {.count = 1, .reusable = true}, SHIFT(1116), - [2295] = {.count = 1, .reusable = false}, SHIFT(1117), - [2297] = {.count = 1, .reusable = true}, SHIFT(1117), - [2299] = {.count = 1, .reusable = true}, SHIFT(1118), - [2301] = {.count = 1, .reusable = false}, SHIFT(1120), - [2303] = {.count = 1, .reusable = true}, SHIFT(1120), - [2305] = {.count = 1, .reusable = true}, SHIFT(1119), - [2307] = {.count = 1, .reusable = true}, SHIFT(1121), - [2309] = {.count = 1, .reusable = false}, SHIFT(1123), - [2311] = {.count = 1, .reusable = true}, SHIFT(1123), - [2313] = {.count = 1, .reusable = true}, SHIFT(1122), - [2315] = {.count = 1, .reusable = false}, SHIFT(1124), - [2317] = {.count = 1, .reusable = true}, SHIFT(1125), - [2319] = {.count = 1, .reusable = true}, SHIFT(1124), - [2321] = {.count = 1, .reusable = false}, SHIFT(1128), - [2323] = {.count = 1, .reusable = true}, SHIFT(1128), - [2325] = {.count = 1, .reusable = false}, SHIFT(1131), - [2327] = {.count = 1, .reusable = true}, SHIFT(1132), - [2329] = {.count = 1, .reusable = true}, SHIFT(1131), - [2331] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [2333] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [2335] = {.count = 1, .reusable = true}, SHIFT(1136), - [2337] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(243), - [2340] = {.count = 1, .reusable = false}, SHIFT(1137), - [2342] = {.count = 1, .reusable = true}, SHIFT(1138), - [2344] = {.count = 1, .reusable = false}, SHIFT(1139), - [2346] = {.count = 1, .reusable = true}, SHIFT(1140), - [2348] = {.count = 1, .reusable = true}, SHIFT(1142), - [2350] = {.count = 1, .reusable = true}, SHIFT(1143), - [2352] = {.count = 1, .reusable = false}, SHIFT(1145), - [2354] = {.count = 1, .reusable = true}, SHIFT(1145), - [2356] = {.count = 1, .reusable = true}, SHIFT(1144), - [2358] = {.count = 1, .reusable = false}, SHIFT(1147), - [2360] = {.count = 1, .reusable = true}, SHIFT(1147), - [2362] = {.count = 1, .reusable = true}, SHIFT(1146), - [2364] = {.count = 1, .reusable = true}, SHIFT(1148), - [2366] = {.count = 1, .reusable = true}, SHIFT(1149), - [2368] = {.count = 1, .reusable = false}, SHIFT(1150), - [2370] = {.count = 1, .reusable = true}, SHIFT(1150), - [2372] = {.count = 1, .reusable = true}, SHIFT(1151), - [2374] = {.count = 1, .reusable = true}, SHIFT(1152), - [2376] = {.count = 1, .reusable = false}, SHIFT(1153), - [2378] = {.count = 1, .reusable = true}, SHIFT(1153), - [2380] = {.count = 1, .reusable = false}, SHIFT(1154), - [2382] = {.count = 1, .reusable = true}, SHIFT(1154), - [2384] = {.count = 1, .reusable = true}, SHIFT(1155), - [2386] = {.count = 1, .reusable = false}, SHIFT(1156), - [2388] = {.count = 1, .reusable = true}, SHIFT(1156), - [2390] = {.count = 1, .reusable = false}, SHIFT(1157), - [2392] = {.count = 1, .reusable = true}, SHIFT(1157), - [2394] = {.count = 1, .reusable = true}, SHIFT(1158), - [2396] = {.count = 1, .reusable = true}, SHIFT(1159), - [2398] = {.count = 1, .reusable = false}, SHIFT(1160), - [2400] = {.count = 1, .reusable = true}, SHIFT(1161), - [2402] = {.count = 1, .reusable = true}, SHIFT(1162), - [2404] = {.count = 1, .reusable = true}, SHIFT(1163), - [2406] = {.count = 1, .reusable = true}, SHIFT(1164), - [2408] = {.count = 1, .reusable = true}, SHIFT(1165), - [2410] = {.count = 1, .reusable = true}, SHIFT(1167), - [2412] = {.count = 1, .reusable = true}, SHIFT(1168), - [2414] = {.count = 1, .reusable = true}, SHIFT(1169), - [2416] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 4), - [2418] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 4), - [2420] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3), - [2422] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3), - [2424] = {.count = 1, .reusable = true}, SHIFT(1173), - [2426] = {.count = 1, .reusable = false}, SHIFT(1174), - [2428] = {.count = 1, .reusable = true}, SHIFT(1174), - [2430] = {.count = 1, .reusable = true}, SHIFT(1175), - [2432] = {.count = 1, .reusable = true}, SHIFT(1178), - [2434] = {.count = 1, .reusable = true}, SHIFT(1179), - [2436] = {.count = 1, .reusable = false}, SHIFT(1180), - [2438] = {.count = 1, .reusable = true}, SHIFT(1180), - [2440] = {.count = 1, .reusable = true}, SHIFT(1181), - [2442] = {.count = 1, .reusable = true}, SHIFT(1182), - [2444] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(274), - [2447] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(275), - [2450] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(276), - [2453] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(692), - [2456] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(276), - [2459] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(279), - [2462] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(280), - [2465] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(694), - [2468] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(280), - [2471] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 2), - [2473] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 2), - [2475] = {.count = 1, .reusable = false}, SHIFT(1186), - [2477] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 4), - [2479] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 4), - [2481] = {.count = 1, .reusable = true}, SHIFT(1189), - [2483] = {.count = 1, .reusable = true}, SHIFT(1190), - [2485] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(289), - [2488] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(291), - [2491] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(291), - [2494] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(292), - [2497] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(290), - [2500] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(293), - [2503] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(294), - [2506] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(294), - [2509] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 4), - [2511] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 4), - [2513] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 1), - [2515] = {.count = 1, .reusable = true}, SHIFT(1195), + [911] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 1), + [913] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 1), + [915] = {.count = 1, .reusable = true}, SHIFT(503), + [917] = {.count = 1, .reusable = true}, SHIFT(500), + [919] = {.count = 1, .reusable = false}, SHIFT(501), + [921] = {.count = 1, .reusable = true}, SHIFT(502), + [923] = {.count = 1, .reusable = false}, SHIFT(504), + [925] = {.count = 1, .reusable = true}, SHIFT(504), + [927] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 2), + [929] = {.count = 1, .reusable = true}, REDUCE(sym_program, 2), + [931] = {.count = 1, .reusable = false}, REDUCE(sym__terminated_statement, 2), + [933] = {.count = 1, .reusable = true}, SHIFT(509), + [935] = {.count = 1, .reusable = true}, SHIFT(510), + [937] = {.count = 1, .reusable = true}, SHIFT(512), + [939] = {.count = 1, .reusable = true}, SHIFT(513), + [941] = {.count = 1, .reusable = true}, SHIFT(514), + [943] = {.count = 1, .reusable = false}, SHIFT(516), + [945] = {.count = 1, .reusable = true}, SHIFT(516), + [947] = {.count = 1, .reusable = true}, REDUCE(sym_redirected_statement, 2), + [949] = {.count = 1, .reusable = false}, REDUCE(sym_redirected_statement, 2), + [951] = {.count = 1, .reusable = true}, SHIFT(518), + [953] = {.count = 1, .reusable = true}, SHIFT(519), + [955] = {.count = 1, .reusable = true}, SHIFT(520), + [957] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [959] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [961] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 1), + [963] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 1), + [965] = {.count = 1, .reusable = true}, REDUCE(sym_command, 2), + [967] = {.count = 1, .reusable = false}, REDUCE(sym_command, 2), + [969] = {.count = 1, .reusable = false}, SHIFT(522), + [971] = {.count = 1, .reusable = true}, SHIFT(522), + [973] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2), + [976] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(51), + [979] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(4), + [982] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(5), + [985] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(6), + [988] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(7), + [991] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(8), + [994] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(9), + [997] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(10), + [1000] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(11), + [1003] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(52), + [1006] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(13), + [1009] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(14), + [1012] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(53), + [1015] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(54), + [1018] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(17), + [1021] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(17), + [1024] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(55), + [1027] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(19), + [1030] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(20), + [1033] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(56), + [1036] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(22), + [1039] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(23), + [1042] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(24), + [1045] = {.count = 2, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(25), + [1048] = {.count = 2, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(57), + [1051] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), + [1054] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(92), + [1057] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(17), + [1060] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(17), + [1063] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat1, 2), + [1065] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat1, 2), + [1067] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 4), + [1069] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 4), + [1071] = {.count = 1, .reusable = true}, REDUCE(sym_file_redirect, 3), + [1073] = {.count = 1, .reusable = false}, REDUCE(sym_file_redirect, 3), + [1075] = {.count = 1, .reusable = true}, SHIFT(527), + [1077] = {.count = 1, .reusable = true}, SHIFT(528), + [1079] = {.count = 1, .reusable = true}, SHIFT(530), + [1081] = {.count = 1, .reusable = true}, SHIFT(531), + [1083] = {.count = 1, .reusable = true}, SHIFT(532), + [1085] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3), + [1087] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3), + [1089] = {.count = 1, .reusable = true}, SHIFT(533), + [1091] = {.count = 1, .reusable = true}, SHIFT(534), + [1093] = {.count = 1, .reusable = true}, SHIFT(535), + [1095] = {.count = 1, .reusable = false}, SHIFT(536), + [1097] = {.count = 1, .reusable = true}, SHIFT(537), + [1099] = {.count = 1, .reusable = true}, SHIFT(538), + [1101] = {.count = 1, .reusable = true}, SHIFT(539), + [1103] = {.count = 1, .reusable = true}, SHIFT(540), + [1105] = {.count = 1, .reusable = true}, SHIFT(541), + [1107] = {.count = 1, .reusable = true}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 4), + [1109] = {.count = 1, .reusable = true}, SHIFT(543), + [1111] = {.count = 1, .reusable = false}, REDUCE(sym_variable_assignment, 3, .alias_sequence_id = 4), + [1113] = {.count = 1, .reusable = false}, SHIFT(545), + [1115] = {.count = 1, .reusable = false}, SHIFT(546), + [1117] = {.count = 1, .reusable = true}, SHIFT(548), + [1119] = {.count = 1, .reusable = true}, SHIFT(549), + [1121] = {.count = 1, .reusable = false}, SHIFT(550), + [1123] = {.count = 1, .reusable = true}, SHIFT(550), + [1125] = {.count = 1, .reusable = true}, SHIFT(551), + [1127] = {.count = 1, .reusable = true}, SHIFT(552), + [1129] = {.count = 1, .reusable = true}, SHIFT(553), + [1131] = {.count = 1, .reusable = false}, SHIFT(554), + [1133] = {.count = 1, .reusable = true}, SHIFT(554), + [1135] = {.count = 1, .reusable = false}, SHIFT(564), + [1137] = {.count = 1, .reusable = true}, SHIFT(564), + [1139] = {.count = 1, .reusable = true}, SHIFT(568), + [1141] = {.count = 1, .reusable = false}, SHIFT(570), + [1143] = {.count = 1, .reusable = false}, SHIFT(571), + [1145] = {.count = 1, .reusable = true}, SHIFT(573), + [1147] = {.count = 1, .reusable = true}, SHIFT(574), + [1149] = {.count = 1, .reusable = false}, SHIFT(575), + [1151] = {.count = 1, .reusable = true}, SHIFT(575), + [1153] = {.count = 1, .reusable = true}, SHIFT(576), + [1155] = {.count = 1, .reusable = true}, SHIFT(577), + [1157] = {.count = 1, .reusable = true}, SHIFT(578), + [1159] = {.count = 1, .reusable = false}, SHIFT(579), + [1161] = {.count = 1, .reusable = true}, SHIFT(579), + [1163] = {.count = 1, .reusable = false}, SHIFT(589), + [1165] = {.count = 1, .reusable = true}, SHIFT(589), + [1167] = {.count = 1, .reusable = true}, SHIFT(590), + [1169] = {.count = 1, .reusable = true}, SHIFT(591), + [1171] = {.count = 1, .reusable = false}, SHIFT(590), + [1173] = {.count = 1, .reusable = true}, SHIFT(592), + [1175] = {.count = 1, .reusable = true}, SHIFT(593), + [1177] = {.count = 1, .reusable = true}, SHIFT(594), + [1179] = {.count = 1, .reusable = false}, SHIFT(595), + [1181] = {.count = 1, .reusable = true}, SHIFT(596), + [1183] = {.count = 1, .reusable = true}, SHIFT(597), + [1185] = {.count = 1, .reusable = true}, SHIFT(598), + [1187] = {.count = 1, .reusable = true}, SHIFT(599), + [1189] = {.count = 1, .reusable = true}, SHIFT(600), + [1191] = {.count = 1, .reusable = true}, SHIFT(605), + [1193] = {.count = 1, .reusable = false}, SHIFT(607), + [1195] = {.count = 1, .reusable = false}, SHIFT(608), + [1197] = {.count = 1, .reusable = true}, SHIFT(610), + [1199] = {.count = 1, .reusable = true}, SHIFT(611), + [1201] = {.count = 1, .reusable = false}, SHIFT(612), + [1203] = {.count = 1, .reusable = true}, SHIFT(612), + [1205] = {.count = 1, .reusable = true}, SHIFT(613), + [1207] = {.count = 1, .reusable = true}, SHIFT(614), + [1209] = {.count = 1, .reusable = true}, SHIFT(615), + [1211] = {.count = 1, .reusable = false}, SHIFT(616), + [1213] = {.count = 1, .reusable = true}, SHIFT(616), + [1215] = {.count = 1, .reusable = true}, SHIFT(626), + [1217] = {.count = 1, .reusable = true}, SHIFT(627), + [1219] = {.count = 1, .reusable = true}, SHIFT(628), + [1221] = {.count = 1, .reusable = false}, SHIFT(627), + [1223] = {.count = 1, .reusable = true}, SHIFT(629), + [1225] = {.count = 1, .reusable = true}, REDUCE(sym_unary_expression, 2), + [1227] = {.count = 1, .reusable = true}, SHIFT(630), + [1229] = {.count = 1, .reusable = false}, SHIFT(632), + [1231] = {.count = 1, .reusable = false}, SHIFT(633), + [1233] = {.count = 1, .reusable = true}, SHIFT(634), + [1235] = {.count = 1, .reusable = true}, SHIFT(635), + [1237] = {.count = 1, .reusable = true}, SHIFT(636), + [1239] = {.count = 1, .reusable = false}, SHIFT(637), + [1241] = {.count = 1, .reusable = true}, SHIFT(637), + [1243] = {.count = 1, .reusable = true}, SHIFT(638), + [1245] = {.count = 1, .reusable = false}, SHIFT(640), + [1247] = {.count = 1, .reusable = true}, SHIFT(640), + [1249] = {.count = 1, .reusable = true}, SHIFT(639), + [1251] = {.count = 1, .reusable = true}, SHIFT(641), + [1253] = {.count = 1, .reusable = false}, SHIFT(643), + [1255] = {.count = 1, .reusable = true}, SHIFT(643), + [1257] = {.count = 1, .reusable = true}, SHIFT(642), + [1259] = {.count = 1, .reusable = false}, SHIFT(644), + [1261] = {.count = 1, .reusable = true}, SHIFT(645), + [1263] = {.count = 1, .reusable = true}, SHIFT(644), + [1265] = {.count = 1, .reusable = false}, SHIFT(649), + [1267] = {.count = 1, .reusable = true}, SHIFT(649), + [1269] = {.count = 1, .reusable = false}, SHIFT(653), + [1271] = {.count = 1, .reusable = true}, SHIFT(654), + [1273] = {.count = 1, .reusable = true}, SHIFT(653), + [1275] = {.count = 1, .reusable = true}, REDUCE(sym_test_command, 3), + [1277] = {.count = 1, .reusable = false}, REDUCE(sym_test_command, 3), + [1279] = {.count = 1, .reusable = true}, SHIFT(659), + [1281] = {.count = 1, .reusable = true}, REDUCE(sym_postfix_expression, 2), + [1283] = {.count = 1, .reusable = false}, REDUCE(sym_postfix_expression, 2), + [1285] = {.count = 1, .reusable = true}, SHIFT(660), + [1287] = {.count = 1, .reusable = true}, SHIFT(661), + [1289] = {.count = 1, .reusable = true}, SHIFT(662), + [1291] = {.count = 1, .reusable = false}, SHIFT(664), + [1293] = {.count = 1, .reusable = false}, SHIFT(666), + [1295] = {.count = 1, .reusable = false}, SHIFT(668), + [1297] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 3), + [1299] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 3), + [1301] = {.count = 1, .reusable = false}, SHIFT(670), + [1303] = {.count = 1, .reusable = true}, SHIFT(670), + [1305] = {.count = 1, .reusable = true}, SHIFT(675), + [1307] = {.count = 1, .reusable = true}, SHIFT(676), + [1309] = {.count = 1, .reusable = true}, SHIFT(677), + [1311] = {.count = 1, .reusable = true}, SHIFT(678), + [1313] = {.count = 1, .reusable = false}, SHIFT(679), + [1315] = {.count = 1, .reusable = true}, SHIFT(679), + [1317] = {.count = 1, .reusable = true}, SHIFT(681), + [1319] = {.count = 1, .reusable = true}, SHIFT(682), + [1321] = {.count = 1, .reusable = false}, SHIFT(685), + [1323] = {.count = 1, .reusable = false}, SHIFT(686), + [1325] = {.count = 1, .reusable = false}, SHIFT(687), + [1327] = {.count = 1, .reusable = true}, SHIFT(691), + [1329] = {.count = 1, .reusable = false}, SHIFT(692), + [1331] = {.count = 1, .reusable = true}, SHIFT(692), + [1333] = {.count = 1, .reusable = true}, SHIFT(693), + [1335] = {.count = 1, .reusable = false}, SHIFT(695), + [1337] = {.count = 1, .reusable = false}, SHIFT(696), + [1339] = {.count = 1, .reusable = false}, SHIFT(697), + [1341] = {.count = 1, .reusable = true}, SHIFT(697), + [1343] = {.count = 1, .reusable = true}, SHIFT(698), + [1345] = {.count = 1, .reusable = true}, SHIFT(699), + [1347] = {.count = 1, .reusable = true}, SHIFT(700), + [1349] = {.count = 1, .reusable = true}, SHIFT(701), + [1351] = {.count = 1, .reusable = false}, SHIFT(702), + [1353] = {.count = 1, .reusable = true}, SHIFT(702), + [1355] = {.count = 1, .reusable = true}, SHIFT(703), + [1357] = {.count = 1, .reusable = false}, SHIFT(705), + [1359] = {.count = 1, .reusable = true}, SHIFT(705), + [1361] = {.count = 1, .reusable = true}, SHIFT(704), + [1363] = {.count = 1, .reusable = true}, SHIFT(706), + [1365] = {.count = 1, .reusable = false}, SHIFT(708), + [1367] = {.count = 1, .reusable = true}, SHIFT(708), + [1369] = {.count = 1, .reusable = true}, SHIFT(707), + [1371] = {.count = 1, .reusable = false}, SHIFT(709), + [1373] = {.count = 1, .reusable = true}, SHIFT(710), + [1375] = {.count = 1, .reusable = true}, SHIFT(709), + [1377] = {.count = 1, .reusable = false}, SHIFT(714), + [1379] = {.count = 1, .reusable = true}, SHIFT(714), + [1381] = {.count = 1, .reusable = false}, SHIFT(718), + [1383] = {.count = 1, .reusable = true}, SHIFT(719), + [1385] = {.count = 1, .reusable = true}, SHIFT(718), + [1387] = {.count = 1, .reusable = true}, SHIFT(723), + [1389] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), + [1391] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), + [1393] = {.count = 1, .reusable = true}, SHIFT(724), + [1395] = {.count = 1, .reusable = true}, SHIFT(725), + [1397] = {.count = 1, .reusable = true}, SHIFT(726), + [1399] = {.count = 1, .reusable = false}, SHIFT(728), + [1401] = {.count = 1, .reusable = false}, SHIFT(730), + [1403] = {.count = 1, .reusable = false}, SHIFT(732), + [1405] = {.count = 1, .reusable = true}, SHIFT(732), + [1407] = {.count = 1, .reusable = true}, SHIFT(733), + [1409] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 3), + [1411] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 3), + [1413] = {.count = 1, .reusable = true}, SHIFT(738), + [1415] = {.count = 1, .reusable = true}, SHIFT(739), + [1417] = {.count = 1, .reusable = true}, SHIFT(740), + [1419] = {.count = 1, .reusable = true}, SHIFT(741), + [1421] = {.count = 1, .reusable = false}, SHIFT(742), + [1423] = {.count = 1, .reusable = true}, SHIFT(742), + [1425] = {.count = 1, .reusable = true}, SHIFT(744), + [1427] = {.count = 1, .reusable = true}, SHIFT(745), + [1429] = {.count = 1, .reusable = false}, SHIFT(747), + [1431] = {.count = 1, .reusable = true}, SHIFT(747), + [1433] = {.count = 1, .reusable = false}, SHIFT(750), + [1435] = {.count = 1, .reusable = true}, SHIFT(750), + [1437] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [1439] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [1441] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), + [1443] = {.count = 1, .reusable = true}, SHIFT(751), + [1445] = {.count = 1, .reusable = true}, SHIFT(752), + [1447] = {.count = 1, .reusable = true}, SHIFT(753), + [1449] = {.count = 1, .reusable = true}, SHIFT(754), + [1451] = {.count = 1, .reusable = true}, SHIFT(755), + [1453] = {.count = 1, .reusable = true}, SHIFT(756), + [1455] = {.count = 1, .reusable = false}, SHIFT(758), + [1457] = {.count = 1, .reusable = false}, SHIFT(759), + [1459] = {.count = 1, .reusable = true}, SHIFT(760), + [1461] = {.count = 1, .reusable = true}, SHIFT(761), + [1463] = {.count = 1, .reusable = true}, SHIFT(762), + [1465] = {.count = 1, .reusable = false}, SHIFT(763), + [1467] = {.count = 1, .reusable = true}, SHIFT(763), + [1469] = {.count = 1, .reusable = true}, SHIFT(764), + [1471] = {.count = 1, .reusable = false}, SHIFT(766), + [1473] = {.count = 1, .reusable = true}, SHIFT(766), + [1475] = {.count = 1, .reusable = true}, SHIFT(765), + [1477] = {.count = 1, .reusable = true}, SHIFT(767), + [1479] = {.count = 1, .reusable = false}, SHIFT(769), + [1481] = {.count = 1, .reusable = true}, SHIFT(769), + [1483] = {.count = 1, .reusable = true}, SHIFT(768), + [1485] = {.count = 1, .reusable = false}, SHIFT(770), + [1487] = {.count = 1, .reusable = true}, SHIFT(771), + [1489] = {.count = 1, .reusable = true}, SHIFT(770), + [1491] = {.count = 1, .reusable = false}, SHIFT(775), + [1493] = {.count = 1, .reusable = true}, SHIFT(775), + [1495] = {.count = 1, .reusable = false}, SHIFT(779), + [1497] = {.count = 1, .reusable = true}, SHIFT(780), + [1499] = {.count = 1, .reusable = true}, SHIFT(779), + [1501] = {.count = 1, .reusable = true}, SHIFT(785), + [1503] = {.count = 1, .reusable = true}, SHIFT(787), + [1505] = {.count = 1, .reusable = true}, SHIFT(788), + [1507] = {.count = 1, .reusable = true}, SHIFT(789), + [1509] = {.count = 1, .reusable = true}, SHIFT(790), + [1511] = {.count = 1, .reusable = true}, SHIFT(791), + [1513] = {.count = 1, .reusable = false}, SHIFT(793), + [1515] = {.count = 1, .reusable = false}, SHIFT(794), + [1517] = {.count = 1, .reusable = true}, SHIFT(795), + [1519] = {.count = 1, .reusable = true}, SHIFT(796), + [1521] = {.count = 1, .reusable = true}, SHIFT(797), + [1523] = {.count = 1, .reusable = false}, SHIFT(798), + [1525] = {.count = 1, .reusable = true}, SHIFT(798), + [1527] = {.count = 1, .reusable = true}, SHIFT(799), + [1529] = {.count = 1, .reusable = false}, SHIFT(801), + [1531] = {.count = 1, .reusable = true}, SHIFT(801), + [1533] = {.count = 1, .reusable = true}, SHIFT(800), + [1535] = {.count = 1, .reusable = true}, SHIFT(802), + [1537] = {.count = 1, .reusable = false}, SHIFT(804), + [1539] = {.count = 1, .reusable = true}, SHIFT(804), + [1541] = {.count = 1, .reusable = true}, SHIFT(803), + [1543] = {.count = 1, .reusable = false}, SHIFT(805), + [1545] = {.count = 1, .reusable = true}, SHIFT(806), + [1547] = {.count = 1, .reusable = true}, SHIFT(805), + [1549] = {.count = 1, .reusable = false}, SHIFT(810), + [1551] = {.count = 1, .reusable = true}, SHIFT(810), + [1553] = {.count = 1, .reusable = false}, SHIFT(814), + [1555] = {.count = 1, .reusable = true}, SHIFT(815), + [1557] = {.count = 1, .reusable = true}, SHIFT(814), + [1559] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1561] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(110), + [1564] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1566] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(111), + [1569] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(112), + [1572] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(113), + [1575] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(114), + [1578] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(115), + [1581] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(116), + [1584] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(117), + [1587] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(118), + [1590] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(393), + [1593] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(114), + [1596] = {.count = 1, .reusable = true}, SHIFT(819), + [1598] = {.count = 1, .reusable = false}, SHIFT(821), + [1600] = {.count = 1, .reusable = false}, SHIFT(822), + [1602] = {.count = 1, .reusable = true}, SHIFT(823), + [1604] = {.count = 1, .reusable = true}, SHIFT(824), + [1606] = {.count = 1, .reusable = true}, SHIFT(825), + [1608] = {.count = 1, .reusable = false}, SHIFT(826), + [1610] = {.count = 1, .reusable = true}, SHIFT(826), + [1612] = {.count = 1, .reusable = true}, SHIFT(827), + [1614] = {.count = 1, .reusable = false}, SHIFT(829), + [1616] = {.count = 1, .reusable = true}, SHIFT(829), + [1618] = {.count = 1, .reusable = true}, SHIFT(828), + [1620] = {.count = 1, .reusable = true}, SHIFT(830), + [1622] = {.count = 1, .reusable = false}, SHIFT(832), + [1624] = {.count = 1, .reusable = true}, SHIFT(832), + [1626] = {.count = 1, .reusable = true}, SHIFT(831), + [1628] = {.count = 1, .reusable = false}, SHIFT(833), + [1630] = {.count = 1, .reusable = true}, SHIFT(834), + [1632] = {.count = 1, .reusable = true}, SHIFT(833), + [1634] = {.count = 1, .reusable = false}, SHIFT(838), + [1636] = {.count = 1, .reusable = true}, SHIFT(838), + [1638] = {.count = 1, .reusable = false}, SHIFT(842), + [1640] = {.count = 1, .reusable = true}, SHIFT(843), + [1642] = {.count = 1, .reusable = true}, SHIFT(842), + [1644] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1646] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1648] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(121), + [1651] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(122), + [1654] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(123), + [1657] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(124), + [1660] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(125), + [1663] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(126), + [1666] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(127), + [1669] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(128), + [1672] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(415), + [1675] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(124), + [1678] = {.count = 1, .reusable = true}, SHIFT(847), + [1680] = {.count = 1, .reusable = false}, SHIFT(849), + [1682] = {.count = 1, .reusable = false}, SHIFT(850), + [1684] = {.count = 1, .reusable = true}, SHIFT(851), + [1686] = {.count = 1, .reusable = true}, SHIFT(852), + [1688] = {.count = 1, .reusable = true}, SHIFT(853), + [1690] = {.count = 1, .reusable = false}, SHIFT(854), + [1692] = {.count = 1, .reusable = true}, SHIFT(854), + [1694] = {.count = 1, .reusable = true}, SHIFT(855), + [1696] = {.count = 1, .reusable = false}, SHIFT(857), + [1698] = {.count = 1, .reusable = true}, SHIFT(857), + [1700] = {.count = 1, .reusable = true}, SHIFT(856), + [1702] = {.count = 1, .reusable = true}, SHIFT(858), + [1704] = {.count = 1, .reusable = false}, SHIFT(860), + [1706] = {.count = 1, .reusable = true}, SHIFT(860), + [1708] = {.count = 1, .reusable = true}, SHIFT(859), + [1710] = {.count = 1, .reusable = false}, SHIFT(861), + [1712] = {.count = 1, .reusable = true}, SHIFT(862), + [1714] = {.count = 1, .reusable = true}, SHIFT(861), + [1716] = {.count = 1, .reusable = false}, SHIFT(866), + [1718] = {.count = 1, .reusable = true}, SHIFT(866), + [1720] = {.count = 1, .reusable = false}, SHIFT(870), + [1722] = {.count = 1, .reusable = true}, SHIFT(871), + [1724] = {.count = 1, .reusable = true}, SHIFT(870), + [1726] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1728] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1730] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(139), + [1733] = {.count = 1, .reusable = true}, REDUCE(sym_string, 3), + [1735] = {.count = 1, .reusable = false}, REDUCE(sym_string, 3), + [1737] = {.count = 1, .reusable = true}, SHIFT(875), + [1739] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), + [1741] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), + [1743] = {.count = 1, .reusable = true}, SHIFT(876), + [1745] = {.count = 1, .reusable = true}, SHIFT(877), + [1747] = {.count = 1, .reusable = true}, SHIFT(878), + [1749] = {.count = 1, .reusable = false}, SHIFT(879), + [1751] = {.count = 1, .reusable = true}, SHIFT(879), + [1753] = {.count = 1, .reusable = true}, SHIFT(880), + [1755] = {.count = 1, .reusable = false}, SHIFT(882), + [1757] = {.count = 1, .reusable = true}, SHIFT(882), + [1759] = {.count = 1, .reusable = true}, SHIFT(881), + [1761] = {.count = 1, .reusable = true}, SHIFT(883), + [1763] = {.count = 1, .reusable = false}, SHIFT(885), + [1765] = {.count = 1, .reusable = true}, SHIFT(885), + [1767] = {.count = 1, .reusable = true}, SHIFT(884), + [1769] = {.count = 1, .reusable = false}, SHIFT(886), + [1771] = {.count = 1, .reusable = true}, SHIFT(887), + [1773] = {.count = 1, .reusable = true}, SHIFT(886), + [1775] = {.count = 1, .reusable = false}, SHIFT(891), + [1777] = {.count = 1, .reusable = true}, SHIFT(891), + [1779] = {.count = 1, .reusable = false}, SHIFT(895), + [1781] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(896), + [1784] = {.count = 2, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(143), + [1787] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(144), + [1790] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(145), + [1793] = {.count = 2, .reusable = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(146), + [1796] = {.count = 1, .reusable = true}, SHIFT(897), + [1798] = {.count = 1, .reusable = true}, SHIFT(898), + [1800] = {.count = 1, .reusable = true}, SHIFT(900), + [1802] = {.count = 1, .reusable = false}, SHIFT(901), + [1804] = {.count = 1, .reusable = true}, SHIFT(902), + [1806] = {.count = 1, .reusable = false}, SHIFT(903), + [1808] = {.count = 1, .reusable = true}, SHIFT(904), + [1810] = {.count = 1, .reusable = true}, SHIFT(905), + [1812] = {.count = 1, .reusable = true}, SHIFT(906), + [1814] = {.count = 1, .reusable = true}, SHIFT(907), + [1816] = {.count = 1, .reusable = true}, SHIFT(908), + [1818] = {.count = 1, .reusable = true}, SHIFT(910), + [1820] = {.count = 1, .reusable = true}, SHIFT(911), + [1822] = {.count = 1, .reusable = false}, SHIFT(913), + [1824] = {.count = 1, .reusable = true}, SHIFT(913), + [1826] = {.count = 1, .reusable = true}, SHIFT(912), + [1828] = {.count = 1, .reusable = false}, SHIFT(915), + [1830] = {.count = 1, .reusable = true}, SHIFT(915), + [1832] = {.count = 1, .reusable = true}, SHIFT(914), + [1834] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 3), + [1836] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 3), + [1838] = {.count = 1, .reusable = true}, SHIFT(916), + [1840] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1842] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1844] = {.count = 1, .reusable = false}, SHIFT(918), + [1846] = {.count = 1, .reusable = false}, SHIFT(919), + [1848] = {.count = 1, .reusable = true}, SHIFT(921), + [1850] = {.count = 1, .reusable = true}, SHIFT(922), + [1852] = {.count = 1, .reusable = false}, SHIFT(923), + [1854] = {.count = 1, .reusable = true}, SHIFT(923), + [1856] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), + [1858] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), + [1860] = {.count = 1, .reusable = true}, SHIFT(924), + [1862] = {.count = 1, .reusable = true}, SHIFT(925), + [1864] = {.count = 1, .reusable = true}, SHIFT(926), + [1866] = {.count = 1, .reusable = false}, SHIFT(927), + [1868] = {.count = 1, .reusable = true}, SHIFT(927), + [1870] = {.count = 1, .reusable = true}, SHIFT(928), + [1872] = {.count = 1, .reusable = true}, SHIFT(929), + [1874] = {.count = 1, .reusable = false}, SHIFT(930), + [1876] = {.count = 1, .reusable = true}, SHIFT(930), + [1878] = {.count = 1, .reusable = false}, SHIFT(940), + [1880] = {.count = 1, .reusable = true}, SHIFT(940), + [1882] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3), + [1884] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3), + [1886] = {.count = 1, .reusable = true}, SHIFT(941), + [1888] = {.count = 1, .reusable = true}, SHIFT(942), + [1890] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 3), + [1892] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 3), + [1894] = {.count = 1, .reusable = false}, SHIFT(943), + [1896] = {.count = 1, .reusable = true}, SHIFT(943), + [1898] = {.count = 1, .reusable = false}, SHIFT(944), + [1900] = {.count = 1, .reusable = true}, SHIFT(944), + [1902] = {.count = 1, .reusable = false}, SHIFT(946), + [1904] = {.count = 1, .reusable = true}, SHIFT(946), + [1906] = {.count = 1, .reusable = true}, SHIFT(951), + [1908] = {.count = 1, .reusable = true}, SHIFT(952), + [1910] = {.count = 1, .reusable = true}, SHIFT(953), + [1912] = {.count = 1, .reusable = true}, SHIFT(954), + [1914] = {.count = 1, .reusable = false}, SHIFT(955), + [1916] = {.count = 1, .reusable = true}, SHIFT(955), + [1918] = {.count = 1, .reusable = false}, SHIFT(957), + [1920] = {.count = 1, .reusable = true}, SHIFT(957), + [1922] = {.count = 1, .reusable = true}, SHIFT(960), + [1924] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 3), + [1926] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 3), + [1928] = {.count = 1, .reusable = false}, SHIFT(961), + [1930] = {.count = 1, .reusable = true}, SHIFT(961), + [1932] = {.count = 1, .reusable = false}, SHIFT(962), + [1934] = {.count = 1, .reusable = true}, SHIFT(962), + [1936] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 2), + [1938] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 2), + [1940] = {.count = 1, .reusable = true}, SHIFT(965), + [1942] = {.count = 1, .reusable = false}, SHIFT(966), + [1944] = {.count = 1, .reusable = true}, SHIFT(966), + [1946] = {.count = 1, .reusable = true}, SHIFT(967), + [1948] = {.count = 1, .reusable = true}, SHIFT(968), + [1950] = {.count = 1, .reusable = true}, SHIFT(969), + [1952] = {.count = 1, .reusable = false}, SHIFT(970), + [1954] = {.count = 1, .reusable = true}, SHIFT(970), + [1956] = {.count = 1, .reusable = true}, SHIFT(972), + [1958] = {.count = 1, .reusable = true}, SHIFT(971), + [1960] = {.count = 1, .reusable = true}, SHIFT(973), + [1962] = {.count = 1, .reusable = true}, SHIFT(974), + [1964] = {.count = 1, .reusable = true}, REDUCE(sym_pipeline, 3), + [1966] = {.count = 1, .reusable = false}, REDUCE(sym_pipeline, 3), + [1968] = {.count = 1, .reusable = true}, REDUCE(sym_list, 3), + [1970] = {.count = 1, .reusable = false}, REDUCE(sym_list, 3), + [1972] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_redirect, 2), + [1974] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_redirect, 2), + [1976] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 2), + [1978] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 2), + [1980] = {.count = 1, .reusable = true}, REDUCE(sym_herestring_redirect, 2), + [1982] = {.count = 1, .reusable = false}, REDUCE(sym_herestring_redirect, 2), + [1984] = {.count = 1, .reusable = true}, REDUCE(sym__terminated_statement, 3), + [1986] = {.count = 1, .reusable = true}, REDUCE(sym_program, 3), + [1988] = {.count = 1, .reusable = false}, REDUCE(sym__terminated_statement, 3), + [1990] = {.count = 1, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [1992] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(172), + [1995] = {.count = 1, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [1997] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(176), + [2000] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(176), + [2003] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(177), + [2006] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(177), + [2009] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(178), + [2012] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), + [2014] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), + [2016] = {.count = 1, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 2), + [2018] = {.count = 1, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 2), + [2020] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(181), + [2023] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(182), + [2026] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(19), + [2029] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(20), + [2032] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(183), + [2035] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), + [2038] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(23), + [2041] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(24), + [2044] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(25), + [2047] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(183), + [2050] = {.count = 1, .reusable = false}, SHIFT(977), + [2052] = {.count = 1, .reusable = true}, SHIFT(977), + [2054] = {.count = 1, .reusable = false}, SHIFT(978), + [2056] = {.count = 1, .reusable = true}, SHIFT(978), + [2058] = {.count = 1, .reusable = true}, REDUCE(sym_command, 3), + [2060] = {.count = 1, .reusable = false}, REDUCE(sym_command, 3), + [2062] = {.count = 1, .reusable = true}, SHIFT(980), + [2064] = {.count = 1, .reusable = false}, SHIFT(756), + [2066] = {.count = 1, .reusable = true}, SHIFT(981), + [2068] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4, .alias_sequence_id = 4), + [2070] = {.count = 1, .reusable = true}, SHIFT(983), + [2072] = {.count = 1, .reusable = true}, SHIFT(984), + [2074] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 4), + [2076] = {.count = 1, .reusable = true}, REDUCE(sym_array, 2), + [2078] = {.count = 1, .reusable = false}, REDUCE(sym_array, 2), + [2080] = {.count = 1, .reusable = true}, SHIFT(985), + [2082] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2084] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2086] = {.count = 1, .reusable = false}, SHIFT(987), + [2088] = {.count = 1, .reusable = false}, SHIFT(988), + [2090] = {.count = 1, .reusable = true}, SHIFT(990), + [2092] = {.count = 1, .reusable = true}, SHIFT(991), + [2094] = {.count = 1, .reusable = false}, SHIFT(992), + [2096] = {.count = 1, .reusable = true}, SHIFT(992), + [2098] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2100] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2102] = {.count = 1, .reusable = true}, SHIFT(993), + [2104] = {.count = 1, .reusable = true}, SHIFT(994), + [2106] = {.count = 1, .reusable = true}, SHIFT(995), + [2108] = {.count = 1, .reusable = false}, SHIFT(996), + [2110] = {.count = 1, .reusable = true}, SHIFT(996), + [2112] = {.count = 1, .reusable = true}, SHIFT(1006), + [2114] = {.count = 1, .reusable = true}, SHIFT(1008), + [2116] = {.count = 1, .reusable = false}, SHIFT(1010), + [2118] = {.count = 1, .reusable = false}, SHIFT(1011), + [2120] = {.count = 1, .reusable = true}, SHIFT(1012), + [2122] = {.count = 1, .reusable = true}, SHIFT(1013), + [2124] = {.count = 1, .reusable = true}, SHIFT(1014), + [2126] = {.count = 1, .reusable = false}, SHIFT(1015), + [2128] = {.count = 1, .reusable = true}, SHIFT(1015), + [2130] = {.count = 1, .reusable = true}, SHIFT(1016), + [2132] = {.count = 1, .reusable = false}, SHIFT(1018), + [2134] = {.count = 1, .reusable = true}, SHIFT(1018), + [2136] = {.count = 1, .reusable = true}, SHIFT(1017), + [2138] = {.count = 1, .reusable = true}, SHIFT(1019), + [2140] = {.count = 1, .reusable = false}, SHIFT(1021), + [2142] = {.count = 1, .reusable = true}, SHIFT(1021), + [2144] = {.count = 1, .reusable = true}, SHIFT(1020), + [2146] = {.count = 1, .reusable = false}, SHIFT(1022), + [2148] = {.count = 1, .reusable = true}, SHIFT(1023), + [2150] = {.count = 1, .reusable = true}, SHIFT(1022), + [2152] = {.count = 1, .reusable = false}, SHIFT(1027), + [2154] = {.count = 1, .reusable = true}, SHIFT(1027), + [2156] = {.count = 1, .reusable = false}, SHIFT(1031), + [2158] = {.count = 1, .reusable = true}, SHIFT(1032), + [2160] = {.count = 1, .reusable = true}, SHIFT(1031), + [2162] = {.count = 1, .reusable = true}, SHIFT(1036), + [2164] = {.count = 1, .reusable = false}, SHIFT(1038), + [2166] = {.count = 1, .reusable = true}, SHIFT(1038), + [2168] = {.count = 1, .reusable = true}, SHIFT(1039), + [2170] = {.count = 1, .reusable = false}, REDUCE(sym_unary_expression, 2), + [2172] = {.count = 1, .reusable = true}, SHIFT(1040), + [2174] = {.count = 1, .reusable = false}, SHIFT(1042), + [2176] = {.count = 1, .reusable = false}, SHIFT(1043), + [2178] = {.count = 1, .reusable = true}, SHIFT(1044), + [2180] = {.count = 1, .reusable = true}, SHIFT(1045), + [2182] = {.count = 1, .reusable = true}, SHIFT(1046), + [2184] = {.count = 1, .reusable = false}, SHIFT(1047), + [2186] = {.count = 1, .reusable = true}, SHIFT(1047), + [2188] = {.count = 1, .reusable = true}, SHIFT(1048), + [2190] = {.count = 1, .reusable = false}, SHIFT(1050), + [2192] = {.count = 1, .reusable = true}, SHIFT(1050), + [2194] = {.count = 1, .reusable = true}, SHIFT(1049), + [2196] = {.count = 1, .reusable = true}, SHIFT(1051), + [2198] = {.count = 1, .reusable = false}, SHIFT(1053), + [2200] = {.count = 1, .reusable = true}, SHIFT(1053), + [2202] = {.count = 1, .reusable = true}, SHIFT(1052), + [2204] = {.count = 1, .reusable = false}, SHIFT(1054), + [2206] = {.count = 1, .reusable = true}, SHIFT(1055), + [2208] = {.count = 1, .reusable = true}, SHIFT(1054), + [2210] = {.count = 1, .reusable = false}, SHIFT(1059), + [2212] = {.count = 1, .reusable = true}, SHIFT(1059), + [2214] = {.count = 1, .reusable = false}, SHIFT(1063), + [2216] = {.count = 1, .reusable = true}, SHIFT(1064), + [2218] = {.count = 1, .reusable = true}, SHIFT(1063), + [2220] = {.count = 1, .reusable = true}, SHIFT(1070), + [2222] = {.count = 1, .reusable = true}, SHIFT(1071), + [2224] = {.count = 1, .reusable = false}, SHIFT(1073), + [2226] = {.count = 1, .reusable = false}, SHIFT(1074), + [2228] = {.count = 1, .reusable = true}, SHIFT(1076), + [2230] = {.count = 1, .reusable = true}, SHIFT(1077), + [2232] = {.count = 1, .reusable = false}, SHIFT(1078), + [2234] = {.count = 1, .reusable = true}, SHIFT(1078), + [2236] = {.count = 1, .reusable = true}, SHIFT(1079), + [2238] = {.count = 1, .reusable = true}, SHIFT(1080), + [2240] = {.count = 1, .reusable = true}, SHIFT(1081), + [2242] = {.count = 1, .reusable = false}, SHIFT(1082), + [2244] = {.count = 1, .reusable = true}, SHIFT(1082), + [2246] = {.count = 1, .reusable = false}, SHIFT(1092), + [2248] = {.count = 1, .reusable = true}, SHIFT(1092), + [2250] = {.count = 1, .reusable = false}, SHIFT(596), + [2252] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 4), + [2254] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 4), + [2256] = {.count = 1, .reusable = true}, SHIFT(1094), + [2258] = {.count = 1, .reusable = true}, SHIFT(1095), + [2260] = {.count = 1, .reusable = false}, SHIFT(1097), + [2262] = {.count = 1, .reusable = false}, SHIFT(1098), + [2264] = {.count = 1, .reusable = true}, SHIFT(1099), + [2266] = {.count = 1, .reusable = true}, SHIFT(1100), + [2268] = {.count = 1, .reusable = true}, SHIFT(1101), + [2270] = {.count = 1, .reusable = false}, SHIFT(1102), + [2272] = {.count = 1, .reusable = true}, SHIFT(1102), + [2274] = {.count = 1, .reusable = true}, SHIFT(1103), + [2276] = {.count = 1, .reusable = false}, SHIFT(1105), + [2278] = {.count = 1, .reusable = true}, SHIFT(1105), + [2280] = {.count = 1, .reusable = true}, SHIFT(1104), + [2282] = {.count = 1, .reusable = true}, SHIFT(1106), + [2284] = {.count = 1, .reusable = false}, SHIFT(1108), + [2286] = {.count = 1, .reusable = true}, SHIFT(1108), + [2288] = {.count = 1, .reusable = true}, SHIFT(1107), + [2290] = {.count = 1, .reusable = false}, SHIFT(1109), + [2292] = {.count = 1, .reusable = true}, SHIFT(1110), + [2294] = {.count = 1, .reusable = true}, SHIFT(1109), + [2296] = {.count = 1, .reusable = false}, SHIFT(1114), + [2298] = {.count = 1, .reusable = true}, SHIFT(1114), + [2300] = {.count = 1, .reusable = false}, SHIFT(1118), + [2302] = {.count = 1, .reusable = true}, SHIFT(1119), + [2304] = {.count = 1, .reusable = true}, SHIFT(1118), + [2306] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [2308] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [2310] = {.count = 1, .reusable = true}, SHIFT(1124), + [2312] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(232), + [2315] = {.count = 1, .reusable = false}, SHIFT(1125), + [2317] = {.count = 1, .reusable = true}, SHIFT(1126), + [2319] = {.count = 1, .reusable = false}, SHIFT(1127), + [2321] = {.count = 1, .reusable = true}, SHIFT(1128), + [2323] = {.count = 1, .reusable = true}, SHIFT(1130), + [2325] = {.count = 1, .reusable = true}, SHIFT(1131), + [2327] = {.count = 1, .reusable = false}, SHIFT(1133), + [2329] = {.count = 1, .reusable = true}, SHIFT(1133), + [2331] = {.count = 1, .reusable = true}, SHIFT(1132), + [2333] = {.count = 1, .reusable = false}, SHIFT(1135), + [2335] = {.count = 1, .reusable = true}, SHIFT(1135), + [2337] = {.count = 1, .reusable = true}, SHIFT(1134), + [2339] = {.count = 1, .reusable = true}, SHIFT(1136), + [2341] = {.count = 1, .reusable = true}, SHIFT(1137), + [2343] = {.count = 1, .reusable = false}, SHIFT(1138), + [2345] = {.count = 1, .reusable = true}, SHIFT(1138), + [2347] = {.count = 1, .reusable = true}, SHIFT(1139), + [2349] = {.count = 1, .reusable = true}, SHIFT(1140), + [2351] = {.count = 1, .reusable = false}, SHIFT(1141), + [2353] = {.count = 1, .reusable = true}, SHIFT(1141), + [2355] = {.count = 1, .reusable = false}, SHIFT(1142), + [2357] = {.count = 1, .reusable = true}, SHIFT(1142), + [2359] = {.count = 1, .reusable = false}, SHIFT(1144), + [2361] = {.count = 1, .reusable = true}, SHIFT(1144), + [2363] = {.count = 1, .reusable = false}, SHIFT(1145), + [2365] = {.count = 1, .reusable = true}, SHIFT(1145), + [2367] = {.count = 1, .reusable = true}, SHIFT(1147), + [2369] = {.count = 1, .reusable = false}, SHIFT(1148), + [2371] = {.count = 1, .reusable = true}, SHIFT(1148), + [2373] = {.count = 1, .reusable = false}, SHIFT(1149), + [2375] = {.count = 1, .reusable = true}, SHIFT(1149), + [2377] = {.count = 1, .reusable = true}, REDUCE(sym_binary_expression, 3), + [2379] = {.count = 1, .reusable = false}, REDUCE(sym_binary_expression, 3), + [2381] = {.count = 1, .reusable = true}, SHIFT(1152), + [2383] = {.count = 1, .reusable = true}, SHIFT(1153), + [2385] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(258), + [2388] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(259), + [2391] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(260), + [2394] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(664), + [2397] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(260), + [2400] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(263), + [2403] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(264), + [2406] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(666), + [2409] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(264), + [2412] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 2), + [2414] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 2), + [2416] = {.count = 1, .reusable = false}, SHIFT(1156), + [2418] = {.count = 1, .reusable = true}, SHIFT(1158), + [2420] = {.count = 1, .reusable = true}, SHIFT(1159), + [2422] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(269), + [2425] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(273), + [2428] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(273), + [2431] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(274), + [2434] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(277), + [2437] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(278), + [2440] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(279), + [2443] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(279), + [2446] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 4), + [2448] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 4), + [2450] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 1), + [2452] = {.count = 1, .reusable = true}, SHIFT(1163), + [2454] = {.count = 1, .reusable = false}, SHIFT(1163), + [2456] = {.count = 1, .reusable = true}, SHIFT(686), + [2458] = {.count = 1, .reusable = true}, SHIFT(687), + [2460] = {.count = 1, .reusable = false}, SHIFT(1168), + [2462] = {.count = 1, .reusable = true}, SHIFT(1169), + [2464] = {.count = 1, .reusable = true}, SHIFT(1170), + [2466] = {.count = 1, .reusable = false}, SHIFT(1170), + [2468] = {.count = 1, .reusable = false}, SHIFT(1174), + [2470] = {.count = 1, .reusable = true}, SHIFT(1174), + [2472] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(283), + [2475] = {.count = 1, .reusable = false}, SHIFT(1175), + [2477] = {.count = 1, .reusable = false}, SHIFT(1176), + [2479] = {.count = 1, .reusable = false}, SHIFT(1179), + [2481] = {.count = 1, .reusable = true}, SHIFT(1179), + [2483] = {.count = 1, .reusable = true}, SHIFT(1180), + [2485] = {.count = 1, .reusable = false}, SHIFT(1181), + [2487] = {.count = 1, .reusable = true}, SHIFT(1182), + [2489] = {.count = 1, .reusable = true}, SHIFT(1184), + [2491] = {.count = 1, .reusable = true}, SHIFT(1185), + [2493] = {.count = 1, .reusable = false}, SHIFT(1187), + [2495] = {.count = 1, .reusable = true}, SHIFT(1187), + [2497] = {.count = 1, .reusable = true}, SHIFT(1186), + [2499] = {.count = 1, .reusable = false}, SHIFT(1189), + [2501] = {.count = 1, .reusable = true}, SHIFT(1189), + [2503] = {.count = 1, .reusable = true}, SHIFT(1188), + [2505] = {.count = 1, .reusable = true}, SHIFT(1190), + [2507] = {.count = 1, .reusable = true}, SHIFT(1191), + [2509] = {.count = 1, .reusable = false}, SHIFT(1192), + [2511] = {.count = 1, .reusable = true}, SHIFT(1192), + [2513] = {.count = 1, .reusable = true}, SHIFT(1193), + [2515] = {.count = 1, .reusable = true}, SHIFT(1194), [2517] = {.count = 1, .reusable = false}, SHIFT(1195), - [2519] = {.count = 1, .reusable = true}, SHIFT(715), - [2521] = {.count = 1, .reusable = true}, SHIFT(716), - [2523] = {.count = 1, .reusable = false}, SHIFT(1200), - [2525] = {.count = 1, .reusable = true}, SHIFT(1201), - [2527] = {.count = 1, .reusable = true}, SHIFT(1202), - [2529] = {.count = 1, .reusable = false}, SHIFT(1202), - [2531] = {.count = 1, .reusable = false}, SHIFT(1206), - [2533] = {.count = 1, .reusable = true}, SHIFT(1206), - [2535] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(299), - [2538] = {.count = 1, .reusable = false}, SHIFT(1207), - [2540] = {.count = 1, .reusable = false}, SHIFT(1208), - [2542] = {.count = 1, .reusable = false}, SHIFT(1211), - [2544] = {.count = 1, .reusable = true}, SHIFT(1211), - [2546] = {.count = 1, .reusable = true}, SHIFT(1212), - [2548] = {.count = 1, .reusable = false}, SHIFT(1213), - [2550] = {.count = 1, .reusable = true}, SHIFT(1214), - [2552] = {.count = 1, .reusable = true}, SHIFT(1216), - [2554] = {.count = 1, .reusable = true}, SHIFT(1217), - [2556] = {.count = 1, .reusable = false}, SHIFT(1219), - [2558] = {.count = 1, .reusable = true}, SHIFT(1219), - [2560] = {.count = 1, .reusable = true}, SHIFT(1218), - [2562] = {.count = 1, .reusable = false}, SHIFT(1221), - [2564] = {.count = 1, .reusable = true}, SHIFT(1221), - [2566] = {.count = 1, .reusable = true}, SHIFT(1220), - [2568] = {.count = 1, .reusable = true}, SHIFT(1222), - [2570] = {.count = 1, .reusable = true}, SHIFT(1223), - [2572] = {.count = 1, .reusable = false}, SHIFT(1224), - [2574] = {.count = 1, .reusable = true}, SHIFT(1224), - [2576] = {.count = 1, .reusable = true}, SHIFT(1225), - [2578] = {.count = 1, .reusable = true}, SHIFT(1226), - [2580] = {.count = 1, .reusable = false}, SHIFT(1227), - [2582] = {.count = 1, .reusable = true}, SHIFT(1227), - [2584] = {.count = 1, .reusable = false}, SHIFT(1228), - [2586] = {.count = 1, .reusable = true}, SHIFT(1228), - [2588] = {.count = 1, .reusable = true}, SHIFT(1229), - [2590] = {.count = 1, .reusable = false}, SHIFT(1230), - [2592] = {.count = 1, .reusable = true}, SHIFT(1230), - [2594] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), - [2596] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), - [2598] = {.count = 1, .reusable = false}, SHIFT(1232), - [2600] = {.count = 1, .reusable = true}, SHIFT(1232), - [2602] = {.count = 1, .reusable = true}, SHIFT(1233), - [2604] = {.count = 1, .reusable = false}, SHIFT(1235), - [2606] = {.count = 1, .reusable = true}, SHIFT(1235), - [2608] = {.count = 1, .reusable = true}, SHIFT(1236), - [2610] = {.count = 1, .reusable = true}, SHIFT(1237), - [2612] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), - [2614] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), - [2616] = {.count = 1, .reusable = true}, SHIFT(1240), - [2618] = {.count = 1, .reusable = false}, SHIFT(1241), - [2620] = {.count = 1, .reusable = true}, SHIFT(1241), - [2622] = {.count = 1, .reusable = true}, SHIFT(1242), - [2624] = {.count = 1, .reusable = true}, SHIFT(1245), - [2626] = {.count = 1, .reusable = true}, SHIFT(1246), - [2628] = {.count = 1, .reusable = false}, SHIFT(1247), - [2630] = {.count = 1, .reusable = true}, SHIFT(1247), - [2632] = {.count = 1, .reusable = true}, SHIFT(1248), - [2634] = {.count = 1, .reusable = true}, SHIFT(1249), - [2636] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(333), - [2639] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(334), - [2642] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(335), - [2645] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(765), - [2648] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(335), - [2651] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(338), - [2654] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(339), - [2657] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(767), - [2660] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(339), - [2663] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 4), - [2665] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 4), - [2667] = {.count = 1, .reusable = true}, SHIFT(1253), - [2669] = {.count = 1, .reusable = true}, SHIFT(1254), - [2671] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(347), - [2674] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(349), - [2677] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(349), - [2680] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(350), - [2683] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(348), - [2686] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(351), - [2689] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(352), - [2692] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(352), - [2695] = {.count = 1, .reusable = true}, SHIFT(1256), - [2697] = {.count = 1, .reusable = true}, SHIFT(1258), - [2699] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(361), - [2702] = {.count = 1, .reusable = false}, SHIFT(1260), - [2704] = {.count = 1, .reusable = true}, SHIFT(1261), - [2706] = {.count = 1, .reusable = false}, SHIFT(1262), - [2708] = {.count = 1, .reusable = true}, SHIFT(1263), - [2710] = {.count = 1, .reusable = true}, SHIFT(1265), - [2712] = {.count = 1, .reusable = true}, SHIFT(1266), - [2714] = {.count = 1, .reusable = false}, SHIFT(1268), - [2716] = {.count = 1, .reusable = true}, SHIFT(1268), - [2718] = {.count = 1, .reusable = true}, SHIFT(1267), - [2720] = {.count = 1, .reusable = false}, SHIFT(1270), - [2722] = {.count = 1, .reusable = true}, SHIFT(1270), - [2724] = {.count = 1, .reusable = true}, SHIFT(1269), - [2726] = {.count = 1, .reusable = true}, SHIFT(1271), - [2728] = {.count = 1, .reusable = true}, SHIFT(1272), - [2730] = {.count = 1, .reusable = false}, SHIFT(1273), - [2732] = {.count = 1, .reusable = true}, SHIFT(1273), - [2734] = {.count = 1, .reusable = true}, SHIFT(1274), - [2736] = {.count = 1, .reusable = true}, SHIFT(1275), - [2738] = {.count = 1, .reusable = false}, SHIFT(1276), - [2740] = {.count = 1, .reusable = true}, SHIFT(1276), - [2742] = {.count = 1, .reusable = false}, SHIFT(1277), - [2744] = {.count = 1, .reusable = true}, SHIFT(1277), - [2746] = {.count = 1, .reusable = true}, SHIFT(1278), - [2748] = {.count = 1, .reusable = false}, SHIFT(1279), - [2750] = {.count = 1, .reusable = true}, SHIFT(1279), - [2752] = {.count = 1, .reusable = true}, SHIFT(1280), - [2754] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(390), - [2757] = {.count = 1, .reusable = false}, SHIFT(1282), - [2759] = {.count = 1, .reusable = true}, SHIFT(1283), - [2761] = {.count = 1, .reusable = false}, SHIFT(1284), - [2763] = {.count = 1, .reusable = true}, SHIFT(1285), - [2765] = {.count = 1, .reusable = true}, SHIFT(1287), - [2767] = {.count = 1, .reusable = true}, SHIFT(1288), - [2769] = {.count = 1, .reusable = false}, SHIFT(1290), - [2771] = {.count = 1, .reusable = true}, SHIFT(1290), - [2773] = {.count = 1, .reusable = true}, SHIFT(1289), - [2775] = {.count = 1, .reusable = false}, SHIFT(1292), - [2777] = {.count = 1, .reusable = true}, SHIFT(1292), - [2779] = {.count = 1, .reusable = true}, SHIFT(1291), - [2781] = {.count = 1, .reusable = true}, SHIFT(1293), - [2783] = {.count = 1, .reusable = true}, SHIFT(1294), - [2785] = {.count = 1, .reusable = false}, SHIFT(1295), - [2787] = {.count = 1, .reusable = true}, SHIFT(1295), - [2789] = {.count = 1, .reusable = true}, SHIFT(1296), - [2791] = {.count = 1, .reusable = true}, SHIFT(1297), - [2793] = {.count = 1, .reusable = false}, SHIFT(1298), - [2795] = {.count = 1, .reusable = true}, SHIFT(1298), - [2797] = {.count = 1, .reusable = false}, SHIFT(1299), - [2799] = {.count = 1, .reusable = true}, SHIFT(1299), - [2801] = {.count = 1, .reusable = true}, SHIFT(1300), - [2803] = {.count = 1, .reusable = false}, SHIFT(1301), - [2805] = {.count = 1, .reusable = true}, SHIFT(1301), - [2807] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(412), - [2810] = {.count = 1, .reusable = false}, SHIFT(1302), - [2812] = {.count = 1, .reusable = true}, SHIFT(1303), - [2814] = {.count = 1, .reusable = false}, SHIFT(1304), - [2816] = {.count = 1, .reusable = true}, SHIFT(1305), - [2818] = {.count = 1, .reusable = true}, SHIFT(1307), - [2820] = {.count = 1, .reusable = true}, SHIFT(1308), - [2822] = {.count = 1, .reusable = false}, SHIFT(1310), - [2824] = {.count = 1, .reusable = true}, SHIFT(1310), - [2826] = {.count = 1, .reusable = true}, SHIFT(1309), - [2828] = {.count = 1, .reusable = false}, SHIFT(1312), - [2830] = {.count = 1, .reusable = true}, SHIFT(1312), - [2832] = {.count = 1, .reusable = true}, SHIFT(1311), - [2834] = {.count = 1, .reusable = true}, SHIFT(1313), - [2836] = {.count = 1, .reusable = true}, SHIFT(1314), - [2838] = {.count = 1, .reusable = false}, SHIFT(1315), - [2840] = {.count = 1, .reusable = true}, SHIFT(1315), - [2842] = {.count = 1, .reusable = true}, SHIFT(1316), - [2844] = {.count = 1, .reusable = true}, SHIFT(1317), - [2846] = {.count = 1, .reusable = false}, SHIFT(1318), - [2848] = {.count = 1, .reusable = true}, SHIFT(1318), - [2850] = {.count = 1, .reusable = false}, SHIFT(1319), - [2852] = {.count = 1, .reusable = true}, SHIFT(1319), - [2854] = {.count = 1, .reusable = true}, SHIFT(1320), - [2856] = {.count = 1, .reusable = false}, SHIFT(1321), - [2858] = {.count = 1, .reusable = true}, SHIFT(1321), - [2860] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(434), - [2863] = {.count = 1, .reusable = false}, SHIFT(1322), - [2865] = {.count = 1, .reusable = true}, SHIFT(1323), - [2867] = {.count = 1, .reusable = false}, SHIFT(1324), - [2869] = {.count = 1, .reusable = true}, SHIFT(1325), - [2871] = {.count = 1, .reusable = true}, SHIFT(1327), - [2873] = {.count = 1, .reusable = true}, SHIFT(1328), - [2875] = {.count = 1, .reusable = false}, SHIFT(1330), - [2877] = {.count = 1, .reusable = true}, SHIFT(1330), - [2879] = {.count = 1, .reusable = true}, SHIFT(1329), - [2881] = {.count = 1, .reusable = false}, SHIFT(1332), - [2883] = {.count = 1, .reusable = true}, SHIFT(1332), - [2885] = {.count = 1, .reusable = true}, SHIFT(1331), - [2887] = {.count = 1, .reusable = true}, SHIFT(1333), - [2889] = {.count = 1, .reusable = true}, SHIFT(1334), - [2891] = {.count = 1, .reusable = false}, SHIFT(1335), - [2893] = {.count = 1, .reusable = true}, SHIFT(1335), - [2895] = {.count = 1, .reusable = true}, SHIFT(1336), - [2897] = {.count = 1, .reusable = true}, SHIFT(1337), - [2899] = {.count = 1, .reusable = false}, SHIFT(1338), - [2901] = {.count = 1, .reusable = true}, SHIFT(1338), - [2903] = {.count = 1, .reusable = false}, SHIFT(1339), - [2905] = {.count = 1, .reusable = true}, SHIFT(1339), - [2907] = {.count = 1, .reusable = true}, SHIFT(1340), - [2909] = {.count = 1, .reusable = false}, SHIFT(1341), - [2911] = {.count = 1, .reusable = true}, SHIFT(1341), - [2913] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 3), - [2915] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 3), - [2917] = {.count = 1, .reusable = true}, SHIFT(1342), - [2919] = {.count = 1, .reusable = false}, SHIFT(1343), - [2921] = {.count = 1, .reusable = true}, SHIFT(1344), - [2923] = {.count = 1, .reusable = true}, SHIFT(1346), - [2925] = {.count = 1, .reusable = true}, SHIFT(1347), - [2927] = {.count = 1, .reusable = false}, SHIFT(1349), - [2929] = {.count = 1, .reusable = true}, SHIFT(1349), - [2931] = {.count = 1, .reusable = true}, SHIFT(1348), - [2933] = {.count = 1, .reusable = false}, SHIFT(1351), - [2935] = {.count = 1, .reusable = true}, SHIFT(1351), - [2937] = {.count = 1, .reusable = true}, SHIFT(1350), - [2939] = {.count = 1, .reusable = true}, SHIFT(1352), - [2941] = {.count = 1, .reusable = true}, SHIFT(1353), - [2943] = {.count = 1, .reusable = false}, SHIFT(1354), - [2945] = {.count = 1, .reusable = true}, SHIFT(1354), - [2947] = {.count = 1, .reusable = true}, SHIFT(1355), - [2949] = {.count = 1, .reusable = true}, SHIFT(1356), - [2951] = {.count = 1, .reusable = false}, SHIFT(1357), - [2953] = {.count = 1, .reusable = true}, SHIFT(1357), - [2955] = {.count = 1, .reusable = false}, SHIFT(1358), - [2957] = {.count = 1, .reusable = true}, SHIFT(1358), - [2959] = {.count = 1, .reusable = true}, REDUCE(sym_string, 4), - [2961] = {.count = 1, .reusable = false}, REDUCE(sym_string, 4), - [2963] = {.count = 1, .reusable = true}, SHIFT(1359), - [2965] = {.count = 1, .reusable = true}, SHIFT(1360), - [2967] = {.count = 1, .reusable = true}, SHIFT(1361), - [2969] = {.count = 1, .reusable = true}, SHIFT(1362), - [2971] = {.count = 1, .reusable = true}, SHIFT(1363), - [2973] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4), - [2975] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4), - [2977] = {.count = 1, .reusable = true}, SHIFT(1364), - [2979] = {.count = 1, .reusable = true}, SHIFT(1365), - [2981] = {.count = 1, .reusable = false}, SHIFT(1367), - [2983] = {.count = 1, .reusable = false}, SHIFT(1368), - [2985] = {.count = 1, .reusable = true}, SHIFT(1370), - [2987] = {.count = 1, .reusable = true}, SHIFT(1371), - [2989] = {.count = 1, .reusable = false}, SHIFT(1372), - [2991] = {.count = 1, .reusable = true}, SHIFT(1372), - [2993] = {.count = 1, .reusable = true}, SHIFT(1373), - [2995] = {.count = 1, .reusable = true}, SHIFT(1374), - [2997] = {.count = 1, .reusable = true}, SHIFT(1375), - [2999] = {.count = 1, .reusable = true}, SHIFT(1376), - [3001] = {.count = 1, .reusable = false}, SHIFT(1377), - [3003] = {.count = 1, .reusable = true}, SHIFT(1377), - [3005] = {.count = 1, .reusable = false}, SHIFT(1387), - [3007] = {.count = 1, .reusable = true}, SHIFT(1388), - [3009] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), - [3011] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), - [3013] = {.count = 1, .reusable = true}, SHIFT(1390), - [3015] = {.count = 1, .reusable = true}, SHIFT(1391), - [3017] = {.count = 1, .reusable = false}, SHIFT(1392), - [3019] = {.count = 1, .reusable = true}, SHIFT(1392), - [3021] = {.count = 1, .reusable = true}, SHIFT(1393), - [3023] = {.count = 1, .reusable = false}, SHIFT(1394), - [3025] = {.count = 1, .reusable = true}, SHIFT(1394), - [3027] = {.count = 1, .reusable = true}, SHIFT(1395), - [3029] = {.count = 1, .reusable = false}, SHIFT(1397), - [3031] = {.count = 1, .reusable = false}, SHIFT(1398), - [3033] = {.count = 1, .reusable = true}, SHIFT(1399), - [3035] = {.count = 1, .reusable = true}, SHIFT(1400), - [3037] = {.count = 1, .reusable = true}, SHIFT(1401), - [3039] = {.count = 1, .reusable = false}, SHIFT(1402), - [3041] = {.count = 1, .reusable = true}, SHIFT(1402), - [3043] = {.count = 1, .reusable = true}, SHIFT(1403), - [3045] = {.count = 1, .reusable = false}, SHIFT(1405), - [3047] = {.count = 1, .reusable = true}, SHIFT(1405), - [3049] = {.count = 1, .reusable = true}, SHIFT(1404), - [3051] = {.count = 1, .reusable = true}, SHIFT(1406), - [3053] = {.count = 1, .reusable = false}, SHIFT(1408), - [3055] = {.count = 1, .reusable = true}, SHIFT(1408), - [3057] = {.count = 1, .reusable = true}, SHIFT(1407), - [3059] = {.count = 1, .reusable = true}, SHIFT(1409), - [3061] = {.count = 1, .reusable = false}, SHIFT(1410), - [3063] = {.count = 1, .reusable = true}, SHIFT(1410), - [3065] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 3), - [3067] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 3), - [3069] = {.count = 1, .reusable = false}, SHIFT(1411), - [3071] = {.count = 1, .reusable = true}, SHIFT(1412), - [3073] = {.count = 1, .reusable = true}, SHIFT(1411), - [3075] = {.count = 1, .reusable = false}, SHIFT(1415), - [3077] = {.count = 1, .reusable = true}, SHIFT(1415), - [3079] = {.count = 1, .reusable = false}, SHIFT(1418), - [3081] = {.count = 1, .reusable = true}, SHIFT(1419), - [3083] = {.count = 1, .reusable = true}, SHIFT(1418), - [3085] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), - [3087] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(960), - [3090] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(480), - [3093] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(481), - [3096] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(482), - [3099] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(483), - [3102] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(960), - [3105] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(484), - [3108] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(486), - [3111] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(487), - [3114] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(488), - [3117] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(483), - [3120] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 4), - [3122] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 4), - [3124] = {.count = 1, .reusable = true}, SHIFT(1422), - [3126] = {.count = 1, .reusable = true}, SHIFT(1423), - [3128] = {.count = 1, .reusable = false}, SHIFT(1424), - [3130] = {.count = 1, .reusable = true}, SHIFT(1424), - [3132] = {.count = 1, .reusable = true}, SHIFT(1425), - [3134] = {.count = 1, .reusable = true}, SHIFT(1428), - [3136] = {.count = 1, .reusable = true}, SHIFT(1429), - [3138] = {.count = 1, .reusable = false}, SHIFT(1430), - [3140] = {.count = 1, .reusable = true}, SHIFT(1430), - [3142] = {.count = 1, .reusable = true}, SHIFT(1432), - [3144] = {.count = 1, .reusable = true}, SHIFT(1433), - [3146] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(508), - [3149] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(509), - [3152] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(509), - [3155] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(510), - [3158] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 4), - [3160] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 4), - [3162] = {.count = 1, .reusable = true}, SHIFT(1436), - [3164] = {.count = 1, .reusable = true}, SHIFT(1438), - [3166] = {.count = 1, .reusable = true}, SHIFT(1439), - [3168] = {.count = 1, .reusable = true}, SHIFT(1440), - [3170] = {.count = 1, .reusable = false}, SHIFT(1441), - [3172] = {.count = 1, .reusable = true}, SHIFT(1441), - [3174] = {.count = 1, .reusable = true}, SHIFT(1442), - [3176] = {.count = 1, .reusable = false}, SHIFT(1444), - [3178] = {.count = 1, .reusable = true}, SHIFT(1444), - [3180] = {.count = 1, .reusable = true}, SHIFT(1443), - [3182] = {.count = 1, .reusable = true}, SHIFT(1445), - [3184] = {.count = 1, .reusable = false}, SHIFT(1447), - [3186] = {.count = 1, .reusable = true}, SHIFT(1447), - [3188] = {.count = 1, .reusable = true}, SHIFT(1446), - [3190] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 3), - [3192] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 3), - [3194] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(991), - [3197] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [3199] = {.count = 2, .reusable = false}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(526), - [3202] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(527), - [3205] = {.count = 1, .reusable = true}, REDUCE(sym_command, 4), - [3207] = {.count = 1, .reusable = false}, REDUCE(sym_command, 4), - [3209] = {.count = 1, .reusable = true}, SHIFT(1450), - [3211] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5, .alias_sequence_id = 4), - [3213] = {.count = 1, .reusable = true}, SHIFT(1451), - [3215] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5), - [3217] = {.count = 1, .reusable = true}, SHIFT(1452), - [3219] = {.count = 1, .reusable = false}, SHIFT(1454), - [3221] = {.count = 1, .reusable = false}, SHIFT(1455), - [3223] = {.count = 1, .reusable = true}, SHIFT(1456), - [3225] = {.count = 1, .reusable = true}, SHIFT(1457), - [3227] = {.count = 1, .reusable = true}, SHIFT(1458), - [3229] = {.count = 1, .reusable = false}, SHIFT(1459), - [3231] = {.count = 1, .reusable = true}, SHIFT(1459), - [3233] = {.count = 1, .reusable = true}, SHIFT(1460), - [3235] = {.count = 1, .reusable = false}, SHIFT(1462), - [3237] = {.count = 1, .reusable = true}, SHIFT(1462), - [3239] = {.count = 1, .reusable = true}, SHIFT(1461), - [3241] = {.count = 1, .reusable = true}, SHIFT(1463), - [3243] = {.count = 1, .reusable = false}, SHIFT(1465), - [3245] = {.count = 1, .reusable = true}, SHIFT(1465), - [3247] = {.count = 1, .reusable = true}, SHIFT(1464), - [3249] = {.count = 1, .reusable = false}, SHIFT(1466), - [3251] = {.count = 1, .reusable = true}, SHIFT(1467), - [3253] = {.count = 1, .reusable = true}, SHIFT(1466), - [3255] = {.count = 1, .reusable = false}, SHIFT(1470), - [3257] = {.count = 1, .reusable = true}, SHIFT(1470), - [3259] = {.count = 1, .reusable = false}, SHIFT(1473), - [3261] = {.count = 1, .reusable = true}, SHIFT(1474), - [3263] = {.count = 1, .reusable = true}, SHIFT(1473), - [3265] = {.count = 1, .reusable = true}, REDUCE(sym_array, 3), - [3267] = {.count = 1, .reusable = false}, REDUCE(sym_array, 3), - [3269] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [3271] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(555), - [3274] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(556), - [3277] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(557), - [3280] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(558), - [3283] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(559), - [3286] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(560), - [3289] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(561), - [3292] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(562), - [3295] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(564), - [3298] = {.count = 1, .reusable = false}, SHIFT(1477), - [3300] = {.count = 1, .reusable = true}, SHIFT(1478), - [3302] = {.count = 1, .reusable = false}, SHIFT(1479), - [3304] = {.count = 1, .reusable = true}, SHIFT(1480), - [3306] = {.count = 1, .reusable = true}, SHIFT(1482), - [3308] = {.count = 1, .reusable = true}, SHIFT(1483), - [3310] = {.count = 1, .reusable = false}, SHIFT(1485), - [3312] = {.count = 1, .reusable = true}, SHIFT(1485), - [3314] = {.count = 1, .reusable = true}, SHIFT(1484), - [3316] = {.count = 1, .reusable = false}, SHIFT(1487), - [3318] = {.count = 1, .reusable = true}, SHIFT(1487), - [3320] = {.count = 1, .reusable = true}, SHIFT(1486), - [3322] = {.count = 1, .reusable = true}, SHIFT(1488), - [3324] = {.count = 1, .reusable = true}, SHIFT(1489), - [3326] = {.count = 1, .reusable = false}, SHIFT(1490), - [3328] = {.count = 1, .reusable = true}, SHIFT(1490), - [3330] = {.count = 1, .reusable = true}, SHIFT(1491), - [3332] = {.count = 1, .reusable = true}, SHIFT(1492), - [3334] = {.count = 1, .reusable = false}, SHIFT(1493), - [3336] = {.count = 1, .reusable = true}, SHIFT(1493), - [3338] = {.count = 1, .reusable = false}, SHIFT(1494), - [3340] = {.count = 1, .reusable = true}, SHIFT(1494), - [3342] = {.count = 1, .reusable = true}, SHIFT(1495), - [3344] = {.count = 1, .reusable = false}, SHIFT(1496), - [3346] = {.count = 1, .reusable = true}, SHIFT(1496), - [3348] = {.count = 1, .reusable = true}, SHIFT(1497), - [3350] = {.count = 1, .reusable = true}, SHIFT(1498), - [3352] = {.count = 1, .reusable = true}, SHIFT(1500), - [3354] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(589), - [3357] = {.count = 1, .reusable = false}, SHIFT(1502), - [3359] = {.count = 1, .reusable = true}, SHIFT(1503), - [3361] = {.count = 1, .reusable = false}, SHIFT(1504), - [3363] = {.count = 1, .reusable = true}, SHIFT(1505), - [3365] = {.count = 1, .reusable = true}, SHIFT(1507), - [3367] = {.count = 1, .reusable = true}, SHIFT(1508), - [3369] = {.count = 1, .reusable = false}, SHIFT(1510), - [3371] = {.count = 1, .reusable = true}, SHIFT(1510), - [3373] = {.count = 1, .reusable = true}, SHIFT(1509), - [3375] = {.count = 1, .reusable = false}, SHIFT(1512), - [3377] = {.count = 1, .reusable = true}, SHIFT(1512), - [3379] = {.count = 1, .reusable = true}, SHIFT(1511), - [3381] = {.count = 1, .reusable = true}, SHIFT(1513), - [3383] = {.count = 1, .reusable = true}, SHIFT(1514), - [3385] = {.count = 1, .reusable = false}, SHIFT(1515), - [3387] = {.count = 1, .reusable = true}, SHIFT(1515), - [3389] = {.count = 1, .reusable = true}, SHIFT(1516), - [3391] = {.count = 1, .reusable = true}, SHIFT(1517), - [3393] = {.count = 1, .reusable = false}, SHIFT(1518), - [3395] = {.count = 1, .reusable = true}, SHIFT(1518), - [3397] = {.count = 1, .reusable = false}, SHIFT(1519), - [3399] = {.count = 1, .reusable = true}, SHIFT(1519), - [3401] = {.count = 1, .reusable = true}, SHIFT(1520), - [3403] = {.count = 1, .reusable = false}, SHIFT(1521), - [3405] = {.count = 1, .reusable = true}, SHIFT(1521), - [3407] = {.count = 1, .reusable = false}, SHIFT(1522), - [3409] = {.count = 1, .reusable = true}, SHIFT(1522), - [3411] = {.count = 1, .reusable = true}, SHIFT(1523), - [3413] = {.count = 1, .reusable = false}, SHIFT(1525), - [3415] = {.count = 1, .reusable = false}, SHIFT(1526), - [3417] = {.count = 1, .reusable = true}, SHIFT(1527), - [3419] = {.count = 1, .reusable = true}, SHIFT(1528), - [3421] = {.count = 1, .reusable = true}, SHIFT(1529), - [3423] = {.count = 1, .reusable = false}, SHIFT(1530), - [3425] = {.count = 1, .reusable = true}, SHIFT(1530), - [3427] = {.count = 1, .reusable = true}, SHIFT(1531), - [3429] = {.count = 1, .reusable = false}, SHIFT(1533), - [3431] = {.count = 1, .reusable = true}, SHIFT(1533), - [3433] = {.count = 1, .reusable = true}, SHIFT(1532), - [3435] = {.count = 1, .reusable = true}, SHIFT(1534), - [3437] = {.count = 1, .reusable = false}, SHIFT(1536), - [3439] = {.count = 1, .reusable = true}, SHIFT(1536), - [3441] = {.count = 1, .reusable = true}, SHIFT(1535), - [3443] = {.count = 1, .reusable = false}, SHIFT(1537), - [3445] = {.count = 1, .reusable = true}, SHIFT(1538), - [3447] = {.count = 1, .reusable = true}, SHIFT(1537), - [3449] = {.count = 1, .reusable = false}, SHIFT(1541), - [3451] = {.count = 1, .reusable = true}, SHIFT(1541), - [3453] = {.count = 1, .reusable = false}, SHIFT(1544), - [3455] = {.count = 1, .reusable = true}, SHIFT(1545), - [3457] = {.count = 1, .reusable = true}, SHIFT(1544), - [3459] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [3461] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(614), - [3464] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(615), - [3467] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(616), - [3470] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(617), - [3473] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(618), - [3476] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(619), - [3479] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(620), - [3482] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(621), - [3485] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(617), - [3488] = {.count = 1, .reusable = false}, SHIFT(1549), - [3490] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(627), - [3493] = {.count = 1, .reusable = false}, SHIFT(1550), - [3495] = {.count = 1, .reusable = true}, SHIFT(1551), - [3497] = {.count = 1, .reusable = false}, SHIFT(1552), - [3499] = {.count = 1, .reusable = true}, SHIFT(1553), - [3501] = {.count = 1, .reusable = true}, SHIFT(1555), - [3503] = {.count = 1, .reusable = true}, SHIFT(1556), - [3505] = {.count = 1, .reusable = false}, SHIFT(1558), - [3507] = {.count = 1, .reusable = true}, SHIFT(1558), - [3509] = {.count = 1, .reusable = true}, SHIFT(1557), - [3511] = {.count = 1, .reusable = false}, SHIFT(1560), - [3513] = {.count = 1, .reusable = true}, SHIFT(1560), - [3515] = {.count = 1, .reusable = true}, SHIFT(1559), - [3517] = {.count = 1, .reusable = true}, SHIFT(1561), - [3519] = {.count = 1, .reusable = true}, SHIFT(1562), - [3521] = {.count = 1, .reusable = false}, SHIFT(1563), - [3523] = {.count = 1, .reusable = true}, SHIFT(1563), - [3525] = {.count = 1, .reusable = true}, SHIFT(1564), - [3527] = {.count = 1, .reusable = true}, SHIFT(1565), - [3529] = {.count = 1, .reusable = false}, SHIFT(1566), - [3531] = {.count = 1, .reusable = true}, SHIFT(1566), - [3533] = {.count = 1, .reusable = false}, SHIFT(1567), - [3535] = {.count = 1, .reusable = true}, SHIFT(1567), - [3537] = {.count = 1, .reusable = true}, SHIFT(1568), - [3539] = {.count = 1, .reusable = false}, SHIFT(1569), - [3541] = {.count = 1, .reusable = true}, SHIFT(1569), - [3543] = {.count = 1, .reusable = true}, SHIFT(1570), - [3545] = {.count = 1, .reusable = true}, SHIFT(1571), - [3547] = {.count = 1, .reusable = false}, SHIFT(1572), - [3549] = {.count = 1, .reusable = true}, SHIFT(1573), - [3551] = {.count = 1, .reusable = true}, SHIFT(1575), - [3553] = {.count = 1, .reusable = true}, SHIFT(1576), - [3555] = {.count = 1, .reusable = false}, SHIFT(1577), - [3557] = {.count = 1, .reusable = true}, SHIFT(1577), - [3559] = {.count = 1, .reusable = true}, SHIFT(1578), - [3561] = {.count = 1, .reusable = false}, SHIFT(1579), - [3563] = {.count = 1, .reusable = true}, SHIFT(1579), - [3565] = {.count = 1, .reusable = true}, SHIFT(1580), - [3567] = {.count = 1, .reusable = false}, SHIFT(1581), - [3569] = {.count = 1, .reusable = true}, SHIFT(1581), - [3571] = {.count = 1, .reusable = true}, SHIFT(1582), - [3573] = {.count = 1, .reusable = true}, SHIFT(1583), - [3575] = {.count = 1, .reusable = true}, SHIFT(1584), - [3577] = {.count = 1, .reusable = true}, SHIFT(1585), - [3579] = {.count = 1, .reusable = true}, SHIFT(1587), - [3581] = {.count = 1, .reusable = false}, SHIFT(1589), - [3583] = {.count = 1, .reusable = false}, SHIFT(1590), - [3585] = {.count = 1, .reusable = true}, SHIFT(1592), - [3587] = {.count = 1, .reusable = true}, SHIFT(1593), - [3589] = {.count = 1, .reusable = false}, SHIFT(1594), - [3591] = {.count = 1, .reusable = true}, SHIFT(1594), - [3593] = {.count = 1, .reusable = true}, SHIFT(1595), - [3595] = {.count = 1, .reusable = true}, SHIFT(1596), - [3597] = {.count = 1, .reusable = true}, SHIFT(1597), - [3599] = {.count = 1, .reusable = false}, SHIFT(1598), - [3601] = {.count = 1, .reusable = true}, SHIFT(1598), - [3603] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(677), - [3606] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(678), - [3609] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(678), - [3612] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(679), - [3615] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(679), - [3618] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(680), - [3621] = {.count = 1, .reusable = false}, SHIFT(1609), - [3623] = {.count = 1, .reusable = true}, SHIFT(1609), - [3625] = {.count = 1, .reusable = true}, SHIFT(1610), - [3627] = {.count = 1, .reusable = true}, SHIFT(1611), - [3629] = {.count = 1, .reusable = true}, SHIFT(1612), - [3631] = {.count = 1, .reusable = true}, SHIFT(1613), - [3633] = {.count = 1, .reusable = false}, SHIFT(1616), - [3635] = {.count = 1, .reusable = true}, SHIFT(1616), - [3637] = {.count = 1, .reusable = true}, SHIFT(1617), - [3639] = {.count = 1, .reusable = true}, SHIFT(1618), - [3641] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 3), - [3643] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 3), - [3645] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), - [3647] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 5), - [3649] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 5), - [3651] = {.count = 1, .reusable = true}, SHIFT(1620), - [3653] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 2), - [3655] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), - [3657] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), - [3659] = {.count = 1, .reusable = true}, SHIFT(1622), - [3661] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), - [3663] = {.count = 2, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(715), - [3666] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 2), - [3668] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 2), - [3670] = {.count = 1, .reusable = true}, SHIFT(1624), - [3672] = {.count = 1, .reusable = true}, SHIFT(1625), - [3674] = {.count = 1, .reusable = true}, SHIFT(1628), - [3676] = {.count = 1, .reusable = true}, SHIFT(1630), - [3678] = {.count = 1, .reusable = false}, SHIFT(1630), - [3680] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5), - [3682] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5), - [3684] = {.count = 1, .reusable = true}, SHIFT(1634), - [3686] = {.count = 1, .reusable = false}, SHIFT(1634), - [3688] = {.count = 1, .reusable = true}, SHIFT(1637), - [3690] = {.count = 1, .reusable = true}, SHIFT(1638), - [3692] = {.count = 1, .reusable = false}, SHIFT(1639), - [3694] = {.count = 1, .reusable = true}, SHIFT(1640), - [3696] = {.count = 1, .reusable = true}, SHIFT(1642), - [3698] = {.count = 1, .reusable = true}, SHIFT(1643), - [3700] = {.count = 1, .reusable = false}, SHIFT(1644), - [3702] = {.count = 1, .reusable = true}, SHIFT(1644), - [3704] = {.count = 1, .reusable = true}, SHIFT(1645), - [3706] = {.count = 1, .reusable = false}, SHIFT(1646), - [3708] = {.count = 1, .reusable = true}, SHIFT(1646), - [3710] = {.count = 1, .reusable = true}, SHIFT(1647), - [3712] = {.count = 1, .reusable = false}, SHIFT(1648), - [3714] = {.count = 1, .reusable = true}, SHIFT(1648), - [3716] = {.count = 1, .reusable = true}, SHIFT(1649), - [3718] = {.count = 1, .reusable = true}, SHIFT(1650), - [3720] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 5), - [3722] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 5), - [3724] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [3726] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [3728] = {.count = 1, .reusable = true}, REDUCE(aux_sym__statements_repeat1, 2), - [3730] = {.count = 1, .reusable = true}, SHIFT(1652), - [3732] = {.count = 1, .reusable = true}, SHIFT(1653), - [3734] = {.count = 1, .reusable = false}, SHIFT(1657), - [3736] = {.count = 1, .reusable = true}, SHIFT(1657), - [3738] = {.count = 1, .reusable = true}, SHIFT(1658), - [3740] = {.count = 1, .reusable = true}, SHIFT(1659), - [3742] = {.count = 1, .reusable = true}, SHIFT(1660), - [3744] = {.count = 1, .reusable = true}, SHIFT(1661), - [3746] = {.count = 1, .reusable = false}, SHIFT(1664), - [3748] = {.count = 1, .reusable = true}, SHIFT(1664), - [3750] = {.count = 1, .reusable = true}, SHIFT(1665), - [3752] = {.count = 1, .reusable = true}, SHIFT(1666), - [3754] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 5), - [3756] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 5), - [3758] = {.count = 1, .reusable = true}, SHIFT(1668), - [3760] = {.count = 1, .reusable = true}, SHIFT(1669), - [3762] = {.count = 1, .reusable = true}, SHIFT(1670), - [3764] = {.count = 1, .reusable = false}, SHIFT(1671), - [3766] = {.count = 1, .reusable = true}, SHIFT(1672), - [3768] = {.count = 1, .reusable = true}, SHIFT(1674), - [3770] = {.count = 1, .reusable = true}, SHIFT(1675), - [3772] = {.count = 1, .reusable = false}, SHIFT(1676), - [3774] = {.count = 1, .reusable = true}, SHIFT(1676), - [3776] = {.count = 1, .reusable = true}, SHIFT(1677), - [3778] = {.count = 1, .reusable = false}, SHIFT(1678), - [3780] = {.count = 1, .reusable = true}, SHIFT(1678), - [3782] = {.count = 1, .reusable = true}, SHIFT(1679), - [3784] = {.count = 1, .reusable = false}, SHIFT(1680), - [3786] = {.count = 1, .reusable = true}, SHIFT(1680), - [3788] = {.count = 1, .reusable = true}, SHIFT(1681), - [3790] = {.count = 1, .reusable = true}, SHIFT(1682), - [3792] = {.count = 1, .reusable = true}, SHIFT(1683), - [3794] = {.count = 1, .reusable = true}, SHIFT(1684), - [3796] = {.count = 1, .reusable = true}, SHIFT(1685), - [3798] = {.count = 1, .reusable = false}, SHIFT(1686), - [3800] = {.count = 1, .reusable = true}, SHIFT(1687), - [3802] = {.count = 1, .reusable = true}, SHIFT(1689), - [3804] = {.count = 1, .reusable = true}, SHIFT(1690), - [3806] = {.count = 1, .reusable = false}, SHIFT(1691), - [3808] = {.count = 1, .reusable = true}, SHIFT(1691), - [3810] = {.count = 1, .reusable = true}, SHIFT(1692), - [3812] = {.count = 1, .reusable = false}, SHIFT(1693), - [3814] = {.count = 1, .reusable = true}, SHIFT(1693), - [3816] = {.count = 1, .reusable = true}, SHIFT(1694), - [3818] = {.count = 1, .reusable = false}, SHIFT(1695), - [3820] = {.count = 1, .reusable = true}, SHIFT(1695), - [3822] = {.count = 1, .reusable = true}, SHIFT(1696), - [3824] = {.count = 1, .reusable = true}, SHIFT(1697), - [3826] = {.count = 1, .reusable = true}, SHIFT(1698), - [3828] = {.count = 1, .reusable = true}, SHIFT(1699), - [3830] = {.count = 1, .reusable = false}, SHIFT(1700), - [3832] = {.count = 1, .reusable = true}, SHIFT(1701), - [3834] = {.count = 1, .reusable = true}, SHIFT(1703), - [3836] = {.count = 1, .reusable = true}, SHIFT(1704), - [3838] = {.count = 1, .reusable = false}, SHIFT(1705), - [3840] = {.count = 1, .reusable = true}, SHIFT(1705), - [3842] = {.count = 1, .reusable = true}, SHIFT(1706), - [3844] = {.count = 1, .reusable = false}, SHIFT(1707), - [3846] = {.count = 1, .reusable = true}, SHIFT(1707), - [3848] = {.count = 1, .reusable = true}, SHIFT(1708), - [3850] = {.count = 1, .reusable = false}, SHIFT(1709), - [3852] = {.count = 1, .reusable = true}, SHIFT(1709), - [3854] = {.count = 1, .reusable = true}, SHIFT(1710), - [3856] = {.count = 1, .reusable = true}, SHIFT(1711), - [3858] = {.count = 1, .reusable = true}, SHIFT(1712), - [3860] = {.count = 1, .reusable = true}, SHIFT(1713), - [3862] = {.count = 1, .reusable = false}, SHIFT(1714), - [3864] = {.count = 1, .reusable = true}, SHIFT(1715), - [3866] = {.count = 1, .reusable = true}, SHIFT(1717), - [3868] = {.count = 1, .reusable = true}, SHIFT(1718), - [3870] = {.count = 1, .reusable = false}, SHIFT(1719), - [3872] = {.count = 1, .reusable = true}, SHIFT(1719), - [3874] = {.count = 1, .reusable = true}, SHIFT(1720), - [3876] = {.count = 1, .reusable = false}, SHIFT(1721), - [3878] = {.count = 1, .reusable = true}, SHIFT(1721), - [3880] = {.count = 1, .reusable = true}, SHIFT(1722), - [3882] = {.count = 1, .reusable = false}, SHIFT(1723), - [3884] = {.count = 1, .reusable = true}, SHIFT(1723), - [3886] = {.count = 1, .reusable = true}, SHIFT(1724), - [3888] = {.count = 1, .reusable = true}, SHIFT(1725), - [3890] = {.count = 1, .reusable = true}, SHIFT(1726), - [3892] = {.count = 1, .reusable = true}, SHIFT(1727), - [3894] = {.count = 1, .reusable = false}, SHIFT(1728), - [3896] = {.count = 1, .reusable = true}, SHIFT(1729), - [3898] = {.count = 1, .reusable = true}, SHIFT(1731), - [3900] = {.count = 1, .reusable = true}, SHIFT(1732), - [3902] = {.count = 1, .reusable = false}, SHIFT(1733), - [3904] = {.count = 1, .reusable = true}, SHIFT(1733), - [3906] = {.count = 1, .reusable = true}, SHIFT(1734), - [3908] = {.count = 1, .reusable = false}, SHIFT(1735), - [3910] = {.count = 1, .reusable = true}, SHIFT(1735), - [3912] = {.count = 1, .reusable = true}, SHIFT(1736), - [3914] = {.count = 1, .reusable = false}, SHIFT(1737), - [3916] = {.count = 1, .reusable = true}, SHIFT(1737), - [3918] = {.count = 1, .reusable = true}, SHIFT(1738), - [3920] = {.count = 1, .reusable = true}, SHIFT(1739), - [3922] = {.count = 1, .reusable = true}, SHIFT(1740), - [3924] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 4), - [3926] = {.count = 1, .reusable = true}, SHIFT(1741), - [3928] = {.count = 1, .reusable = true}, SHIFT(1742), - [3930] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4), - [3932] = {.count = 1, .reusable = true}, SHIFT(1743), - [3934] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 6), - [3936] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 6), - [3938] = {.count = 1, .reusable = false}, SHIFT(1745), - [3940] = {.count = 1, .reusable = false}, SHIFT(1746), - [3942] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5), - [3944] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), - [3946] = {.count = 1, .reusable = true}, SHIFT(1747), - [3948] = {.count = 1, .reusable = true}, SHIFT(1748), - [3950] = {.count = 1, .reusable = true}, SHIFT(1749), - [3952] = {.count = 1, .reusable = false}, SHIFT(1750), - [3954] = {.count = 1, .reusable = true}, SHIFT(1750), - [3956] = {.count = 1, .reusable = true}, SHIFT(1751), - [3958] = {.count = 1, .reusable = false}, SHIFT(1753), - [3960] = {.count = 1, .reusable = true}, SHIFT(1753), - [3962] = {.count = 1, .reusable = true}, SHIFT(1752), - [3964] = {.count = 1, .reusable = true}, SHIFT(1754), - [3966] = {.count = 1, .reusable = false}, SHIFT(1756), - [3968] = {.count = 1, .reusable = true}, SHIFT(1756), - [3970] = {.count = 1, .reusable = true}, SHIFT(1755), - [3972] = {.count = 1, .reusable = false}, SHIFT(1757), - [3974] = {.count = 1, .reusable = true}, SHIFT(1758), - [3976] = {.count = 1, .reusable = true}, SHIFT(1757), - [3978] = {.count = 1, .reusable = false}, SHIFT(1761), - [3980] = {.count = 1, .reusable = true}, SHIFT(1761), - [3982] = {.count = 1, .reusable = false}, SHIFT(1764), - [3984] = {.count = 1, .reusable = true}, SHIFT(1765), - [3986] = {.count = 1, .reusable = true}, SHIFT(1764), - [3988] = {.count = 1, .reusable = true}, SHIFT(1768), - [3990] = {.count = 1, .reusable = true}, SHIFT(1769), - [3992] = {.count = 1, .reusable = true}, SHIFT(1770), - [3994] = {.count = 1, .reusable = false}, SHIFT(1771), - [3996] = {.count = 1, .reusable = true}, SHIFT(1771), - [3998] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 5), - [4000] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 5), - [4002] = {.count = 1, .reusable = false}, SHIFT(1772), - [4004] = {.count = 1, .reusable = true}, SHIFT(1772), - [4006] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(936), - [4009] = {.count = 1, .reusable = false}, SHIFT(1773), - [4011] = {.count = 1, .reusable = true}, SHIFT(1774), - [4013] = {.count = 1, .reusable = false}, SHIFT(1775), - [4015] = {.count = 1, .reusable = true}, SHIFT(1776), - [4017] = {.count = 1, .reusable = true}, SHIFT(1778), - [4019] = {.count = 1, .reusable = true}, SHIFT(1779), - [4021] = {.count = 1, .reusable = false}, SHIFT(1781), - [4023] = {.count = 1, .reusable = true}, SHIFT(1781), - [4025] = {.count = 1, .reusable = true}, SHIFT(1780), - [4027] = {.count = 1, .reusable = false}, SHIFT(1783), - [4029] = {.count = 1, .reusable = true}, SHIFT(1783), - [4031] = {.count = 1, .reusable = true}, SHIFT(1782), - [4033] = {.count = 1, .reusable = true}, SHIFT(1784), - [4035] = {.count = 1, .reusable = true}, SHIFT(1785), - [4037] = {.count = 1, .reusable = false}, SHIFT(1786), - [4039] = {.count = 1, .reusable = true}, SHIFT(1786), - [4041] = {.count = 1, .reusable = true}, SHIFT(1787), - [4043] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 3), - [4045] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 3), - [4047] = {.count = 1, .reusable = true}, SHIFT(1788), - [4049] = {.count = 1, .reusable = true}, SHIFT(1789), - [4051] = {.count = 1, .reusable = false}, SHIFT(1790), - [4053] = {.count = 1, .reusable = true}, SHIFT(1790), - [4055] = {.count = 1, .reusable = false}, SHIFT(1791), - [4057] = {.count = 1, .reusable = true}, SHIFT(1791), - [4059] = {.count = 1, .reusable = true}, SHIFT(1792), - [4061] = {.count = 1, .reusable = false}, SHIFT(1793), - [4063] = {.count = 1, .reusable = true}, SHIFT(1793), - [4065] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 5), - [4067] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 5), - [4069] = {.count = 1, .reusable = false}, SHIFT(1794), - [4071] = {.count = 1, .reusable = true}, SHIFT(1794), - [4073] = {.count = 1, .reusable = true}, SHIFT(1795), - [4075] = {.count = 1, .reusable = true}, SHIFT(1796), - [4077] = {.count = 1, .reusable = true}, SHIFT(1797), - [4079] = {.count = 1, .reusable = true}, SHIFT(1798), - [4081] = {.count = 1, .reusable = false}, SHIFT(1801), - [4083] = {.count = 1, .reusable = true}, SHIFT(1801), - [4085] = {.count = 1, .reusable = true}, SHIFT(1802), - [4087] = {.count = 1, .reusable = true}, SHIFT(1803), - [4089] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 5), - [4091] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 5), - [4093] = {.count = 1, .reusable = true}, SHIFT(1805), - [4095] = {.count = 1, .reusable = false}, SHIFT(1806), - [4097] = {.count = 1, .reusable = true}, SHIFT(1807), - [4099] = {.count = 1, .reusable = true}, SHIFT(1809), - [4101] = {.count = 1, .reusable = true}, SHIFT(1810), - [4103] = {.count = 1, .reusable = false}, SHIFT(1812), - [4105] = {.count = 1, .reusable = true}, SHIFT(1812), - [4107] = {.count = 1, .reusable = true}, SHIFT(1811), - [4109] = {.count = 1, .reusable = false}, SHIFT(1814), - [4111] = {.count = 1, .reusable = true}, SHIFT(1814), - [4113] = {.count = 1, .reusable = true}, SHIFT(1813), - [4115] = {.count = 1, .reusable = true}, SHIFT(1815), - [4117] = {.count = 1, .reusable = true}, SHIFT(1816), - [4119] = {.count = 1, .reusable = false}, SHIFT(1817), - [4121] = {.count = 1, .reusable = true}, SHIFT(1817), - [4123] = {.count = 1, .reusable = true}, SHIFT(1818), - [4125] = {.count = 1, .reusable = true}, REDUCE(sym_command, 5), - [4127] = {.count = 1, .reusable = false}, REDUCE(sym_command, 5), - [4129] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6, .alias_sequence_id = 4), - [4131] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6), - [4133] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1004), - [4136] = {.count = 1, .reusable = false}, SHIFT(1819), - [4138] = {.count = 1, .reusable = true}, SHIFT(1820), - [4140] = {.count = 1, .reusable = false}, SHIFT(1821), - [4142] = {.count = 1, .reusable = true}, SHIFT(1822), - [4144] = {.count = 1, .reusable = true}, SHIFT(1824), - [4146] = {.count = 1, .reusable = true}, SHIFT(1825), - [4148] = {.count = 1, .reusable = false}, SHIFT(1827), - [4150] = {.count = 1, .reusable = true}, SHIFT(1827), - [4152] = {.count = 1, .reusable = true}, SHIFT(1826), - [4154] = {.count = 1, .reusable = false}, SHIFT(1829), - [4156] = {.count = 1, .reusable = true}, SHIFT(1829), - [4158] = {.count = 1, .reusable = true}, SHIFT(1828), - [4160] = {.count = 1, .reusable = true}, SHIFT(1830), - [4162] = {.count = 1, .reusable = true}, SHIFT(1831), - [4164] = {.count = 1, .reusable = false}, SHIFT(1832), - [4166] = {.count = 1, .reusable = true}, SHIFT(1832), - [4168] = {.count = 1, .reusable = true}, SHIFT(1833), - [4170] = {.count = 1, .reusable = true}, SHIFT(1834), - [4172] = {.count = 1, .reusable = false}, SHIFT(1835), - [4174] = {.count = 1, .reusable = true}, SHIFT(1835), - [4176] = {.count = 1, .reusable = false}, SHIFT(1836), - [4178] = {.count = 1, .reusable = true}, SHIFT(1836), - [4180] = {.count = 1, .reusable = true}, SHIFT(1837), - [4182] = {.count = 1, .reusable = false}, SHIFT(1838), - [4184] = {.count = 1, .reusable = true}, SHIFT(1838), - [4186] = {.count = 1, .reusable = true}, SHIFT(1839), - [4188] = {.count = 1, .reusable = true}, SHIFT(1840), - [4190] = {.count = 1, .reusable = false}, SHIFT(1841), - [4192] = {.count = 1, .reusable = true}, SHIFT(1842), - [4194] = {.count = 1, .reusable = true}, SHIFT(1844), - [4196] = {.count = 1, .reusable = true}, SHIFT(1845), - [4198] = {.count = 1, .reusable = false}, SHIFT(1846), - [4200] = {.count = 1, .reusable = true}, SHIFT(1846), - [4202] = {.count = 1, .reusable = true}, SHIFT(1847), - [4204] = {.count = 1, .reusable = false}, SHIFT(1848), - [4206] = {.count = 1, .reusable = true}, SHIFT(1848), - [4208] = {.count = 1, .reusable = true}, SHIFT(1849), - [4210] = {.count = 1, .reusable = false}, SHIFT(1850), - [4212] = {.count = 1, .reusable = true}, SHIFT(1850), - [4214] = {.count = 1, .reusable = true}, SHIFT(1851), - [4216] = {.count = 1, .reusable = true}, SHIFT(1852), - [4218] = {.count = 1, .reusable = true}, SHIFT(1854), - [4220] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 6), - [4222] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 6), - [4224] = {.count = 1, .reusable = true}, SHIFT(1856), - [4226] = {.count = 1, .reusable = true}, SHIFT(1857), - [4228] = {.count = 1, .reusable = true}, SHIFT(1858), - [4230] = {.count = 1, .reusable = true}, SHIFT(1859), - [4232] = {.count = 1, .reusable = false}, SHIFT(1860), - [4234] = {.count = 1, .reusable = true}, SHIFT(1861), - [4236] = {.count = 1, .reusable = true}, SHIFT(1863), - [4238] = {.count = 1, .reusable = true}, SHIFT(1864), - [4240] = {.count = 1, .reusable = false}, SHIFT(1865), - [4242] = {.count = 1, .reusable = true}, SHIFT(1865), - [4244] = {.count = 1, .reusable = true}, SHIFT(1866), - [4246] = {.count = 1, .reusable = false}, SHIFT(1867), - [4248] = {.count = 1, .reusable = true}, SHIFT(1867), - [4250] = {.count = 1, .reusable = true}, SHIFT(1868), - [4252] = {.count = 1, .reusable = false}, SHIFT(1869), - [4254] = {.count = 1, .reusable = true}, SHIFT(1869), - [4256] = {.count = 1, .reusable = true}, SHIFT(1870), - [4258] = {.count = 1, .reusable = true}, SHIFT(1871), - [4260] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1084), - [4263] = {.count = 1, .reusable = false}, SHIFT(1873), - [4265] = {.count = 1, .reusable = true}, SHIFT(1874), - [4267] = {.count = 1, .reusable = false}, SHIFT(1875), - [4269] = {.count = 1, .reusable = true}, SHIFT(1876), - [4271] = {.count = 1, .reusable = true}, SHIFT(1878), - [4273] = {.count = 1, .reusable = true}, SHIFT(1879), - [4275] = {.count = 1, .reusable = false}, SHIFT(1881), - [4277] = {.count = 1, .reusable = true}, SHIFT(1881), - [4279] = {.count = 1, .reusable = true}, SHIFT(1880), - [4281] = {.count = 1, .reusable = false}, SHIFT(1883), - [4283] = {.count = 1, .reusable = true}, SHIFT(1883), - [4285] = {.count = 1, .reusable = true}, SHIFT(1882), - [4287] = {.count = 1, .reusable = true}, SHIFT(1884), - [4289] = {.count = 1, .reusable = true}, SHIFT(1885), - [4291] = {.count = 1, .reusable = false}, SHIFT(1886), - [4293] = {.count = 1, .reusable = true}, SHIFT(1886), - [4295] = {.count = 1, .reusable = true}, SHIFT(1887), - [4297] = {.count = 1, .reusable = true}, SHIFT(1888), - [4299] = {.count = 1, .reusable = false}, SHIFT(1889), - [4301] = {.count = 1, .reusable = true}, SHIFT(1889), - [4303] = {.count = 1, .reusable = false}, SHIFT(1890), - [4305] = {.count = 1, .reusable = true}, SHIFT(1890), - [4307] = {.count = 1, .reusable = true}, SHIFT(1891), - [4309] = {.count = 1, .reusable = false}, SHIFT(1892), - [4311] = {.count = 1, .reusable = true}, SHIFT(1892), - [4313] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), - [4315] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), - [4317] = {.count = 1, .reusable = true}, SHIFT(1893), - [4319] = {.count = 1, .reusable = true}, SHIFT(1894), - [4321] = {.count = 1, .reusable = false}, SHIFT(1895), - [4323] = {.count = 1, .reusable = true}, SHIFT(1896), - [4325] = {.count = 1, .reusable = true}, SHIFT(1898), - [4327] = {.count = 1, .reusable = true}, SHIFT(1899), - [4329] = {.count = 1, .reusable = false}, SHIFT(1900), - [4331] = {.count = 1, .reusable = true}, SHIFT(1900), - [4333] = {.count = 1, .reusable = true}, SHIFT(1901), - [4335] = {.count = 1, .reusable = false}, SHIFT(1902), - [4337] = {.count = 1, .reusable = true}, SHIFT(1902), - [4339] = {.count = 1, .reusable = true}, SHIFT(1903), - [4341] = {.count = 1, .reusable = false}, SHIFT(1904), - [4343] = {.count = 1, .reusable = true}, SHIFT(1904), - [4345] = {.count = 1, .reusable = true}, SHIFT(1905), - [4347] = {.count = 1, .reusable = true}, SHIFT(1906), - [4349] = {.count = 1, .reusable = true}, SHIFT(1907), - [4351] = {.count = 1, .reusable = true}, SHIFT(1908), - [4353] = {.count = 1, .reusable = true}, SHIFT(1909), - [4355] = {.count = 1, .reusable = false}, SHIFT(1910), - [4357] = {.count = 1, .reusable = true}, SHIFT(1910), - [4359] = {.count = 1, .reusable = false}, SHIFT(1911), - [4361] = {.count = 1, .reusable = true}, SHIFT(1911), - [4363] = {.count = 1, .reusable = true}, SHIFT(1912), - [4365] = {.count = 1, .reusable = true}, SHIFT(1913), - [4367] = {.count = 1, .reusable = false}, SHIFT(1915), - [4369] = {.count = 1, .reusable = false}, SHIFT(1916), - [4371] = {.count = 1, .reusable = true}, SHIFT(1917), - [4373] = {.count = 1, .reusable = true}, SHIFT(1918), - [4375] = {.count = 1, .reusable = true}, SHIFT(1919), - [4377] = {.count = 1, .reusable = false}, SHIFT(1920), - [4379] = {.count = 1, .reusable = true}, SHIFT(1920), - [4381] = {.count = 1, .reusable = true}, SHIFT(1921), - [4383] = {.count = 1, .reusable = false}, SHIFT(1923), - [4385] = {.count = 1, .reusable = true}, SHIFT(1923), - [4387] = {.count = 1, .reusable = true}, SHIFT(1922), - [4389] = {.count = 1, .reusable = true}, SHIFT(1924), - [4391] = {.count = 1, .reusable = false}, SHIFT(1926), - [4393] = {.count = 1, .reusable = true}, SHIFT(1926), - [4395] = {.count = 1, .reusable = true}, SHIFT(1925), - [4397] = {.count = 1, .reusable = false}, SHIFT(1927), - [4399] = {.count = 1, .reusable = true}, SHIFT(1928), - [4401] = {.count = 1, .reusable = true}, SHIFT(1927), - [4403] = {.count = 1, .reusable = false}, SHIFT(1931), - [4405] = {.count = 1, .reusable = true}, SHIFT(1931), - [4407] = {.count = 1, .reusable = false}, SHIFT(1934), - [4409] = {.count = 1, .reusable = true}, SHIFT(1935), - [4411] = {.count = 1, .reusable = true}, SHIFT(1934), - [4413] = {.count = 1, .reusable = true}, SHIFT(1938), - [4415] = {.count = 1, .reusable = true}, SHIFT(1939), - [4417] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1173), - [4420] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1174), - [4423] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1174), - [4426] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1175), - [4429] = {.count = 1, .reusable = true}, SHIFT(1941), - [4431] = {.count = 1, .reusable = true}, SHIFT(1942), - [4433] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 3), - [4435] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), - [4437] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), - [4439] = {.count = 1, .reusable = true}, SHIFT(1945), - [4441] = {.count = 1, .reusable = true}, SHIFT(1946), - [4443] = {.count = 1, .reusable = true}, SHIFT(1947), - [4445] = {.count = 1, .reusable = true}, SHIFT(1949), - [4447] = {.count = 1, .reusable = true}, SHIFT(1950), - [4449] = {.count = 1, .reusable = false}, SHIFT(1951), - [4451] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2, .alias_sequence_id = 1), - [4453] = {.count = 1, .reusable = true}, SHIFT(1952), - [4455] = {.count = 1, .reusable = false}, SHIFT(1953), - [4457] = {.count = 1, .reusable = false}, SHIFT(1954), - [4459] = {.count = 1, .reusable = false}, SHIFT(1955), - [4461] = {.count = 1, .reusable = true}, SHIFT(1956), - [4463] = {.count = 1, .reusable = false}, SHIFT(1957), - [4465] = {.count = 1, .reusable = false}, SHIFT(1958), - [4467] = {.count = 1, .reusable = false}, SHIFT(1959), - [4469] = {.count = 1, .reusable = true}, SHIFT(1960), - [4471] = {.count = 1, .reusable = false}, SHIFT(1961), - [4473] = {.count = 1, .reusable = true}, SHIFT(1962), - [4475] = {.count = 1, .reusable = true}, SHIFT(1963), - [4477] = {.count = 1, .reusable = true}, SHIFT(1964), - [4479] = {.count = 1, .reusable = true}, SHIFT(1965), - [4481] = {.count = 1, .reusable = true}, SHIFT(1966), - [4483] = {.count = 1, .reusable = false}, SHIFT(1967), - [4485] = {.count = 1, .reusable = true}, SHIFT(1975), - [4487] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2), - [4489] = {.count = 1, .reusable = true}, SHIFT(1978), - [4491] = {.count = 1, .reusable = true}, SHIFT(1982), - [4493] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 2), - [4495] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 2), - [4497] = {.count = 1, .reusable = true}, SHIFT(1983), - [4499] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1984), - [4502] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(234), - [4505] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(235), - [4508] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1985), - [4511] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(237), - [4514] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(238), - [4517] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(239), - [4520] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(240), - [4523] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6), - [4525] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6), - [4527] = {.count = 1, .reusable = true}, SHIFT(1988), - [4529] = {.count = 1, .reusable = true}, SHIFT(1990), - [4531] = {.count = 1, .reusable = true}, SHIFT(1991), - [4533] = {.count = 1, .reusable = true}, SHIFT(1992), - [4535] = {.count = 1, .reusable = false}, SHIFT(1993), - [4537] = {.count = 1, .reusable = true}, SHIFT(1993), - [4539] = {.count = 1, .reusable = false}, SHIFT(1994), - [4541] = {.count = 1, .reusable = true}, SHIFT(1994), - [4543] = {.count = 1, .reusable = true}, SHIFT(1995), - [4545] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 6), - [4547] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 6), - [4549] = {.count = 1, .reusable = true}, SHIFT(1997), - [4551] = {.count = 1, .reusable = true}, SHIFT(1998), - [4553] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1240), - [4556] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1241), - [4559] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1241), - [4562] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1242), - [4565] = {.count = 1, .reusable = true}, SHIFT(2000), - [4567] = {.count = 1, .reusable = true}, SHIFT(2001), - [4569] = {.count = 1, .reusable = true}, SHIFT(2003), - [4571] = {.count = 1, .reusable = true}, SHIFT(2004), - [4573] = {.count = 1, .reusable = true}, SHIFT(2005), - [4575] = {.count = 1, .reusable = false}, SHIFT(2006), - [4577] = {.count = 1, .reusable = true}, SHIFT(2006), - [4579] = {.count = 1, .reusable = false}, SHIFT(2007), - [4581] = {.count = 1, .reusable = true}, SHIFT(2007), - [4583] = {.count = 1, .reusable = true}, SHIFT(2008), - [4585] = {.count = 1, .reusable = true}, SHIFT(2009), - [4587] = {.count = 1, .reusable = true}, SHIFT(2010), - [4589] = {.count = 1, .reusable = true}, SHIFT(2011), - [4591] = {.count = 1, .reusable = false}, SHIFT(2012), - [4593] = {.count = 1, .reusable = true}, SHIFT(2012), - [4595] = {.count = 1, .reusable = false}, SHIFT(2013), - [4597] = {.count = 1, .reusable = true}, SHIFT(2013), - [4599] = {.count = 1, .reusable = true}, SHIFT(2014), - [4601] = {.count = 1, .reusable = true}, SHIFT(2015), - [4603] = {.count = 1, .reusable = true}, SHIFT(2016), - [4605] = {.count = 1, .reusable = true}, SHIFT(2017), - [4607] = {.count = 1, .reusable = false}, SHIFT(2018), - [4609] = {.count = 1, .reusable = true}, SHIFT(2018), - [4611] = {.count = 1, .reusable = false}, SHIFT(2019), - [4613] = {.count = 1, .reusable = true}, SHIFT(2019), - [4615] = {.count = 1, .reusable = true}, SHIFT(2020), - [4617] = {.count = 1, .reusable = true}, SHIFT(2021), - [4619] = {.count = 1, .reusable = true}, SHIFT(2022), - [4621] = {.count = 1, .reusable = true}, SHIFT(2023), - [4623] = {.count = 1, .reusable = false}, SHIFT(2024), - [4625] = {.count = 1, .reusable = true}, SHIFT(2024), - [4627] = {.count = 1, .reusable = false}, SHIFT(2025), - [4629] = {.count = 1, .reusable = true}, SHIFT(2025), - [4631] = {.count = 1, .reusable = true}, SHIFT(2026), - [4633] = {.count = 1, .reusable = true}, SHIFT(2027), - [4635] = {.count = 1, .reusable = true}, SHIFT(2028), - [4637] = {.count = 1, .reusable = true}, SHIFT(2029), - [4639] = {.count = 1, .reusable = false}, SHIFT(2030), - [4641] = {.count = 1, .reusable = true}, SHIFT(2030), - [4643] = {.count = 1, .reusable = false}, SHIFT(2031), - [4645] = {.count = 1, .reusable = true}, SHIFT(2031), - [4647] = {.count = 1, .reusable = true}, SHIFT(2032), - [4649] = {.count = 1, .reusable = true}, SHIFT(2033), - [4651] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 4), - [4653] = {.count = 1, .reusable = true}, SHIFT(2034), - [4655] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5), - [4657] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1364), - [4660] = {.count = 1, .reusable = false}, SHIFT(2035), - [4662] = {.count = 1, .reusable = true}, SHIFT(2036), - [4664] = {.count = 1, .reusable = false}, SHIFT(2037), - [4666] = {.count = 1, .reusable = true}, SHIFT(2038), - [4668] = {.count = 1, .reusable = true}, SHIFT(2040), - [4670] = {.count = 1, .reusable = true}, SHIFT(2041), - [4672] = {.count = 1, .reusable = false}, SHIFT(2043), - [4674] = {.count = 1, .reusable = true}, SHIFT(2043), - [4676] = {.count = 1, .reusable = true}, SHIFT(2042), - [4678] = {.count = 1, .reusable = false}, SHIFT(2045), - [4680] = {.count = 1, .reusable = true}, SHIFT(2045), - [4682] = {.count = 1, .reusable = true}, SHIFT(2044), - [4684] = {.count = 1, .reusable = true}, SHIFT(2046), - [4686] = {.count = 1, .reusable = true}, SHIFT(2047), - [4688] = {.count = 1, .reusable = false}, SHIFT(2048), - [4690] = {.count = 1, .reusable = true}, SHIFT(2048), - [4692] = {.count = 1, .reusable = true}, SHIFT(2049), - [4694] = {.count = 1, .reusable = true}, SHIFT(2050), - [4696] = {.count = 1, .reusable = false}, SHIFT(2051), - [4698] = {.count = 1, .reusable = true}, SHIFT(2051), - [4700] = {.count = 1, .reusable = false}, SHIFT(2052), - [4702] = {.count = 1, .reusable = true}, SHIFT(2052), - [4704] = {.count = 1, .reusable = true}, SHIFT(2053), - [4706] = {.count = 1, .reusable = false}, SHIFT(2054), - [4708] = {.count = 1, .reusable = true}, SHIFT(2054), - [4710] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), - [4712] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), - [4714] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), - [4716] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), - [4718] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 5), - [4720] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 5), - [4722] = {.count = 1, .reusable = true}, SHIFT(2055), - [4724] = {.count = 1, .reusable = true}, SHIFT(2056), - [4726] = {.count = 1, .reusable = true}, SHIFT(2057), - [4728] = {.count = 1, .reusable = true}, SHIFT(2058), - [4730] = {.count = 1, .reusable = false}, SHIFT(2059), - [4732] = {.count = 1, .reusable = true}, SHIFT(2060), - [4734] = {.count = 1, .reusable = true}, SHIFT(2062), - [4736] = {.count = 1, .reusable = true}, SHIFT(2063), - [4738] = {.count = 1, .reusable = false}, SHIFT(2064), - [4740] = {.count = 1, .reusable = true}, SHIFT(2064), - [4742] = {.count = 1, .reusable = true}, SHIFT(2065), - [4744] = {.count = 1, .reusable = false}, SHIFT(2066), - [4746] = {.count = 1, .reusable = true}, SHIFT(2066), - [4748] = {.count = 1, .reusable = true}, SHIFT(2067), - [4750] = {.count = 1, .reusable = false}, SHIFT(2068), - [4752] = {.count = 1, .reusable = true}, SHIFT(2068), - [4754] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 3), - [4756] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 3), - [4758] = {.count = 1, .reusable = true}, SHIFT(2069), - [4760] = {.count = 1, .reusable = true}, SHIFT(2070), - [4762] = {.count = 1, .reusable = true}, SHIFT(2071), - [4764] = {.count = 1, .reusable = true}, SHIFT(2072), - [4766] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1423), - [4769] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1424), - [4772] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1424), - [4775] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1425), - [4778] = {.count = 1, .reusable = true}, SHIFT(2074), - [4780] = {.count = 1, .reusable = true}, SHIFT(2075), - [4782] = {.count = 1, .reusable = true}, SHIFT(2077), - [4784] = {.count = 1, .reusable = true}, SHIFT(2078), - [4786] = {.count = 1, .reusable = false}, SHIFT(2079), - [4788] = {.count = 1, .reusable = true}, SHIFT(2080), - [4790] = {.count = 1, .reusable = true}, SHIFT(2082), - [4792] = {.count = 1, .reusable = true}, SHIFT(2083), - [4794] = {.count = 1, .reusable = false}, SHIFT(2084), - [4796] = {.count = 1, .reusable = true}, SHIFT(2084), - [4798] = {.count = 1, .reusable = true}, SHIFT(2085), - [4800] = {.count = 1, .reusable = false}, SHIFT(2086), - [4802] = {.count = 1, .reusable = true}, SHIFT(2086), - [4804] = {.count = 1, .reusable = true}, SHIFT(2087), - [4806] = {.count = 1, .reusable = false}, SHIFT(2088), - [4808] = {.count = 1, .reusable = true}, SHIFT(2088), - [4810] = {.count = 1, .reusable = true}, SHIFT(2089), - [4812] = {.count = 1, .reusable = true}, SHIFT(2090), - [4814] = {.count = 1, .reusable = false}, SHIFT(2091), - [4816] = {.count = 1, .reusable = true}, SHIFT(2092), - [4818] = {.count = 1, .reusable = true}, SHIFT(2094), - [4820] = {.count = 1, .reusable = true}, SHIFT(2095), - [4822] = {.count = 1, .reusable = false}, SHIFT(2096), - [4824] = {.count = 1, .reusable = true}, SHIFT(2096), - [4826] = {.count = 1, .reusable = true}, SHIFT(2097), - [4828] = {.count = 1, .reusable = false}, SHIFT(2098), - [4830] = {.count = 1, .reusable = true}, SHIFT(2098), - [4832] = {.count = 1, .reusable = true}, SHIFT(2099), - [4834] = {.count = 1, .reusable = false}, SHIFT(2100), - [4836] = {.count = 1, .reusable = true}, SHIFT(2100), - [4838] = {.count = 1, .reusable = true}, SHIFT(2101), - [4840] = {.count = 1, .reusable = true}, SHIFT(2102), - [4842] = {.count = 1, .reusable = true}, SHIFT(2103), - [4844] = {.count = 1, .reusable = true}, SHIFT(2104), - [4846] = {.count = 1, .reusable = true}, SHIFT(2105), - [4848] = {.count = 1, .reusable = false}, SHIFT(2106), - [4850] = {.count = 1, .reusable = true}, SHIFT(2106), - [4852] = {.count = 1, .reusable = false}, SHIFT(2107), - [4854] = {.count = 1, .reusable = true}, SHIFT(2107), - [4856] = {.count = 1, .reusable = true}, SHIFT(2108), - [4858] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 7), - [4860] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 7), - [4862] = {.count = 1, .reusable = true}, SHIFT(2109), - [4864] = {.count = 1, .reusable = true}, SHIFT(2111), - [4866] = {.count = 1, .reusable = true}, SHIFT(2112), - [4868] = {.count = 1, .reusable = true}, SHIFT(2113), - [4870] = {.count = 1, .reusable = true}, SHIFT(2114), - [4872] = {.count = 1, .reusable = false}, SHIFT(2115), - [4874] = {.count = 1, .reusable = true}, SHIFT(2115), - [4876] = {.count = 1, .reusable = false}, SHIFT(2116), - [4878] = {.count = 1, .reusable = true}, SHIFT(2116), - [4880] = {.count = 1, .reusable = true}, SHIFT(2117), - [4882] = {.count = 1, .reusable = true}, SHIFT(2118), - [4884] = {.count = 1, .reusable = true}, SHIFT(2119), - [4886] = {.count = 1, .reusable = true}, SHIFT(2120), - [4888] = {.count = 1, .reusable = false}, SHIFT(2121), - [4890] = {.count = 1, .reusable = true}, SHIFT(2122), - [4892] = {.count = 1, .reusable = true}, SHIFT(2124), - [4894] = {.count = 1, .reusable = true}, SHIFT(2125), - [4896] = {.count = 1, .reusable = false}, SHIFT(2126), - [4898] = {.count = 1, .reusable = true}, SHIFT(2126), - [4900] = {.count = 1, .reusable = true}, SHIFT(2127), - [4902] = {.count = 1, .reusable = false}, SHIFT(2128), - [4904] = {.count = 1, .reusable = true}, SHIFT(2128), - [4906] = {.count = 1, .reusable = true}, SHIFT(2129), - [4908] = {.count = 1, .reusable = false}, SHIFT(2130), - [4910] = {.count = 1, .reusable = true}, SHIFT(2130), - [4912] = {.count = 1, .reusable = true}, SHIFT(2131), - [4914] = {.count = 1, .reusable = true}, SHIFT(2132), - [4916] = {.count = 1, .reusable = true}, SHIFT(2133), - [4918] = {.count = 1, .reusable = true}, SHIFT(2134), - [4920] = {.count = 1, .reusable = true}, SHIFT(2135), - [4922] = {.count = 1, .reusable = false}, SHIFT(2136), - [4924] = {.count = 1, .reusable = true}, SHIFT(2136), - [4926] = {.count = 1, .reusable = false}, SHIFT(2137), - [4928] = {.count = 1, .reusable = true}, SHIFT(2137), - [4930] = {.count = 1, .reusable = true}, SHIFT(2138), - [4932] = {.count = 1, .reusable = true}, SHIFT(2139), - [4934] = {.count = 1, .reusable = true}, SHIFT(2140), - [4936] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1587), - [4939] = {.count = 1, .reusable = false}, SHIFT(2141), - [4941] = {.count = 1, .reusable = true}, SHIFT(2142), - [4943] = {.count = 1, .reusable = false}, SHIFT(2143), - [4945] = {.count = 1, .reusable = true}, SHIFT(2144), - [4947] = {.count = 1, .reusable = true}, SHIFT(2146), - [4949] = {.count = 1, .reusable = true}, SHIFT(2147), - [4951] = {.count = 1, .reusable = false}, SHIFT(2149), - [4953] = {.count = 1, .reusable = true}, SHIFT(2149), - [4955] = {.count = 1, .reusable = true}, SHIFT(2148), - [4957] = {.count = 1, .reusable = false}, SHIFT(2151), - [4959] = {.count = 1, .reusable = true}, SHIFT(2151), - [4961] = {.count = 1, .reusable = true}, SHIFT(2150), - [4963] = {.count = 1, .reusable = true}, SHIFT(2152), - [4965] = {.count = 1, .reusable = true}, SHIFT(2153), - [4967] = {.count = 1, .reusable = false}, SHIFT(2154), - [4969] = {.count = 1, .reusable = true}, SHIFT(2154), - [4971] = {.count = 1, .reusable = true}, SHIFT(2155), - [4973] = {.count = 1, .reusable = true}, SHIFT(2156), - [4975] = {.count = 1, .reusable = false}, SHIFT(2157), - [4977] = {.count = 1, .reusable = true}, SHIFT(2157), - [4979] = {.count = 1, .reusable = false}, SHIFT(2158), - [4981] = {.count = 1, .reusable = true}, SHIFT(2158), - [4983] = {.count = 1, .reusable = true}, SHIFT(2159), - [4985] = {.count = 1, .reusable = false}, SHIFT(2160), - [4987] = {.count = 1, .reusable = true}, SHIFT(2160), - [4989] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 4), - [4991] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), - [4993] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), - [4995] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 2), - [4997] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), - [4999] = {.count = 1, .reusable = true}, SHIFT(2163), - [5001] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), - [5003] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [5005] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [5007] = {.count = 1, .reusable = true}, SHIFT(2166), - [5009] = {.count = 1, .reusable = true}, SHIFT(2169), - [5011] = {.count = 1, .reusable = true}, SHIFT(2170), - [5013] = {.count = 1, .reusable = true}, SHIFT(2171), - [5015] = {.count = 1, .reusable = false}, SHIFT(2172), - [5017] = {.count = 1, .reusable = true}, SHIFT(2173), - [5019] = {.count = 1, .reusable = true}, SHIFT(2174), - [5021] = {.count = 1, .reusable = true}, SHIFT(2175), - [5023] = {.count = 1, .reusable = true}, SHIFT(2176), - [5025] = {.count = 1, .reusable = true}, SHIFT(2177), - [5027] = {.count = 1, .reusable = false}, SHIFT(2179), - [5029] = {.count = 1, .reusable = false}, SHIFT(2173), - [5031] = {.count = 1, .reusable = true}, SHIFT(2180), - [5033] = {.count = 1, .reusable = true}, SHIFT(2181), - [5035] = {.count = 1, .reusable = false}, SHIFT(2182), - [5037] = {.count = 1, .reusable = true}, SHIFT(2183), - [5039] = {.count = 1, .reusable = true}, SHIFT(2184), - [5041] = {.count = 1, .reusable = true}, SHIFT(2185), - [5043] = {.count = 1, .reusable = true}, SHIFT(2186), - [5045] = {.count = 1, .reusable = true}, SHIFT(2187), - [5047] = {.count = 1, .reusable = false}, SHIFT(2188), - [5049] = {.count = 1, .reusable = false}, SHIFT(2183), - [5051] = {.count = 1, .reusable = true}, SHIFT(2189), - [5053] = {.count = 1, .reusable = false}, SHIFT(2191), - [5055] = {.count = 1, .reusable = false}, SHIFT(2192), - [5057] = {.count = 1, .reusable = true}, SHIFT(2194), - [5059] = {.count = 1, .reusable = true}, SHIFT(2195), - [5061] = {.count = 1, .reusable = false}, SHIFT(2196), - [5063] = {.count = 1, .reusable = true}, SHIFT(2196), - [5065] = {.count = 1, .reusable = true}, SHIFT(2197), - [5067] = {.count = 1, .reusable = true}, SHIFT(2198), - [5069] = {.count = 1, .reusable = true}, SHIFT(2199), - [5071] = {.count = 1, .reusable = false}, SHIFT(2200), - [5073] = {.count = 1, .reusable = true}, SHIFT(2200), - [5075] = {.count = 1, .reusable = true}, SHIFT(2210), - [5077] = {.count = 1, .reusable = false}, SHIFT(2211), - [5079] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), - [5081] = {.count = 1, .reusable = false}, SHIFT(2212), - [5083] = {.count = 1, .reusable = true}, SHIFT(2213), - [5085] = {.count = 1, .reusable = true}, SHIFT(2212), - [5087] = {.count = 1, .reusable = true}, SHIFT(2214), - [5089] = {.count = 1, .reusable = true}, SHIFT(2211), - [5091] = {.count = 1, .reusable = true}, SHIFT(2215), - [5093] = {.count = 1, .reusable = false}, SHIFT(2216), - [5095] = {.count = 1, .reusable = false}, SHIFT(2217), - [5097] = {.count = 1, .reusable = true}, SHIFT(2217), - [5099] = {.count = 1, .reusable = true}, SHIFT(2218), - [5101] = {.count = 1, .reusable = true}, SHIFT(2219), - [5103] = {.count = 1, .reusable = true}, SHIFT(2220), - [5105] = {.count = 1, .reusable = false}, SHIFT(2220), - [5107] = {.count = 1, .reusable = true}, SHIFT(2223), - [5109] = {.count = 1, .reusable = true}, SHIFT(1959), - [5111] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1624), - [5114] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3), - [5116] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3), - [5118] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3), - [5120] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3), - [5122] = {.count = 1, .reusable = true}, SHIFT(2229), - [5124] = {.count = 1, .reusable = true}, SHIFT(2230), - [5126] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 2), - [5128] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 2), - [5130] = {.count = 1, .reusable = true}, SHIFT(2234), - [5132] = {.count = 1, .reusable = true}, SHIFT(2236), - [5134] = {.count = 1, .reusable = true}, SHIFT(2238), - [5136] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7), - [5138] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7), - [5140] = {.count = 1, .reusable = true}, SHIFT(2239), - [5142] = {.count = 1, .reusable = true}, SHIFT(2240), - [5144] = {.count = 1, .reusable = true}, SHIFT(2241), - [5146] = {.count = 1, .reusable = true}, SHIFT(2244), - [5148] = {.count = 1, .reusable = true}, SHIFT(2245), - [5150] = {.count = 1, .reusable = true}, SHIFT(2246), - [5152] = {.count = 1, .reusable = true}, SHIFT(2247), - [5154] = {.count = 1, .reusable = true}, SHIFT(2248), - [5156] = {.count = 1, .reusable = true}, SHIFT(2249), - [5158] = {.count = 1, .reusable = true}, SHIFT(2250), - [5160] = {.count = 1, .reusable = true}, SHIFT(2251), - [5162] = {.count = 1, .reusable = true}, SHIFT(2252), - [5164] = {.count = 1, .reusable = true}, SHIFT(2253), - [5166] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 4), - [5168] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), - [5170] = {.count = 1, .reusable = true}, SHIFT(2254), - [5172] = {.count = 1, .reusable = true}, SHIFT(2255), - [5174] = {.count = 1, .reusable = false}, SHIFT(2256), - [5176] = {.count = 1, .reusable = true}, SHIFT(2257), - [5178] = {.count = 1, .reusable = true}, SHIFT(2259), - [5180] = {.count = 1, .reusable = true}, SHIFT(2260), - [5182] = {.count = 1, .reusable = false}, SHIFT(2261), - [5184] = {.count = 1, .reusable = true}, SHIFT(2261), - [5186] = {.count = 1, .reusable = true}, SHIFT(2262), - [5188] = {.count = 1, .reusable = false}, SHIFT(2263), - [5190] = {.count = 1, .reusable = true}, SHIFT(2263), - [5192] = {.count = 1, .reusable = true}, SHIFT(2264), - [5194] = {.count = 1, .reusable = false}, SHIFT(2265), - [5196] = {.count = 1, .reusable = true}, SHIFT(2265), - [5198] = {.count = 1, .reusable = true}, SHIFT(2266), - [5200] = {.count = 1, .reusable = true}, SHIFT(2267), - [5202] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 5), - [5204] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 5), - [5206] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7), - [5208] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7), - [5210] = {.count = 1, .reusable = true}, SHIFT(2268), - [5212] = {.count = 1, .reusable = true}, SHIFT(2269), - [5214] = {.count = 1, .reusable = true}, SHIFT(2270), - [5216] = {.count = 1, .reusable = false}, SHIFT(2271), - [5218] = {.count = 1, .reusable = true}, SHIFT(2271), - [5220] = {.count = 1, .reusable = false}, SHIFT(2272), - [5222] = {.count = 1, .reusable = true}, SHIFT(2272), - [5224] = {.count = 1, .reusable = true}, SHIFT(2273), - [5226] = {.count = 1, .reusable = true}, SHIFT(2276), - [5228] = {.count = 1, .reusable = true}, SHIFT(2277), - [5230] = {.count = 1, .reusable = true}, SHIFT(2278), - [5232] = {.count = 1, .reusable = false}, SHIFT(2279), - [5234] = {.count = 1, .reusable = true}, SHIFT(2279), - [5236] = {.count = 1, .reusable = false}, SHIFT(2280), - [5238] = {.count = 1, .reusable = true}, SHIFT(2280), - [5240] = {.count = 1, .reusable = true}, SHIFT(2281), - [5242] = {.count = 1, .reusable = true}, SHIFT(2282), - [5244] = {.count = 1, .reusable = true}, SHIFT(2283), - [5246] = {.count = 1, .reusable = true}, SHIFT(2284), - [5248] = {.count = 1, .reusable = false}, SHIFT(2285), - [5250] = {.count = 1, .reusable = true}, SHIFT(2285), - [5252] = {.count = 1, .reusable = false}, SHIFT(2286), - [5254] = {.count = 1, .reusable = true}, SHIFT(2286), - [5256] = {.count = 1, .reusable = true}, SHIFT(2287), - [5258] = {.count = 1, .reusable = true}, SHIFT(2288), - [5260] = {.count = 1, .reusable = true}, SHIFT(2289), - [5262] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 8), - [5264] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 8), - [5266] = {.count = 1, .reusable = true}, SHIFT(2291), - [5268] = {.count = 1, .reusable = true}, SHIFT(2292), - [5270] = {.count = 1, .reusable = true}, SHIFT(2293), - [5272] = {.count = 1, .reusable = true}, SHIFT(2294), - [5274] = {.count = 1, .reusable = true}, SHIFT(2295), - [5276] = {.count = 1, .reusable = true}, SHIFT(2296), - [5278] = {.count = 1, .reusable = false}, SHIFT(2297), - [5280] = {.count = 1, .reusable = true}, SHIFT(2297), - [5282] = {.count = 1, .reusable = false}, SHIFT(2298), - [5284] = {.count = 1, .reusable = true}, SHIFT(2298), - [5286] = {.count = 1, .reusable = true}, SHIFT(2299), - [5288] = {.count = 1, .reusable = true}, SHIFT(2300), - [5290] = {.count = 1, .reusable = true}, SHIFT(2301), - [5292] = {.count = 1, .reusable = true}, SHIFT(2302), - [5294] = {.count = 1, .reusable = true}, SHIFT(2303), - [5296] = {.count = 1, .reusable = false}, SHIFT(2304), - [5298] = {.count = 1, .reusable = true}, SHIFT(2305), - [5300] = {.count = 1, .reusable = true}, SHIFT(2307), - [5302] = {.count = 1, .reusable = true}, SHIFT(2308), - [5304] = {.count = 1, .reusable = false}, SHIFT(2309), - [5306] = {.count = 1, .reusable = true}, SHIFT(2309), - [5308] = {.count = 1, .reusable = true}, SHIFT(2310), - [5310] = {.count = 1, .reusable = false}, SHIFT(2311), - [5312] = {.count = 1, .reusable = true}, SHIFT(2311), - [5314] = {.count = 1, .reusable = true}, SHIFT(2312), - [5316] = {.count = 1, .reusable = false}, SHIFT(2313), - [5318] = {.count = 1, .reusable = true}, SHIFT(2313), - [5320] = {.count = 1, .reusable = true}, SHIFT(2314), - [5322] = {.count = 1, .reusable = true}, SHIFT(2315), - [5324] = {.count = 1, .reusable = true}, SHIFT(2316), - [5326] = {.count = 1, .reusable = true}, SHIFT(2317), - [5328] = {.count = 1, .reusable = true}, SHIFT(2318), - [5330] = {.count = 1, .reusable = true}, SHIFT(2319), - [5332] = {.count = 1, .reusable = false}, SHIFT(2320), - [5334] = {.count = 1, .reusable = true}, SHIFT(2321), - [5336] = {.count = 1, .reusable = true}, SHIFT(2322), - [5338] = {.count = 1, .reusable = true}, SHIFT(2323), - [5340] = {.count = 1, .reusable = true}, SHIFT(2324), - [5342] = {.count = 1, .reusable = true}, SHIFT(2325), - [5344] = {.count = 1, .reusable = true}, SHIFT(2326), - [5346] = {.count = 1, .reusable = true}, SHIFT(2328), - [5348] = {.count = 1, .reusable = true}, SHIFT(2330), - [5350] = {.count = 1, .reusable = true}, SHIFT(2331), - [5352] = {.count = 1, .reusable = false}, SHIFT(2333), - [5354] = {.count = 1, .reusable = false}, SHIFT(2334), - [5356] = {.count = 1, .reusable = true}, SHIFT(2336), - [5358] = {.count = 1, .reusable = true}, SHIFT(2337), - [5360] = {.count = 1, .reusable = false}, SHIFT(2338), - [5362] = {.count = 1, .reusable = true}, SHIFT(2338), - [5364] = {.count = 1, .reusable = true}, SHIFT(2339), - [5366] = {.count = 1, .reusable = true}, SHIFT(2340), - [5368] = {.count = 1, .reusable = true}, SHIFT(2341), - [5370] = {.count = 1, .reusable = false}, SHIFT(2342), - [5372] = {.count = 1, .reusable = true}, SHIFT(2342), - [5374] = {.count = 1, .reusable = false}, SHIFT(2352), - [5376] = {.count = 1, .reusable = true}, SHIFT(2353), - [5378] = {.count = 1, .reusable = false}, SHIFT(2355), - [5380] = {.count = 1, .reusable = false}, SHIFT(2356), - [5382] = {.count = 1, .reusable = true}, SHIFT(2358), - [5384] = {.count = 1, .reusable = true}, SHIFT(2359), - [5386] = {.count = 1, .reusable = false}, SHIFT(2360), - [5388] = {.count = 1, .reusable = true}, SHIFT(2360), - [5390] = {.count = 1, .reusable = true}, SHIFT(2361), - [5392] = {.count = 1, .reusable = true}, SHIFT(2362), - [5394] = {.count = 1, .reusable = true}, SHIFT(2363), - [5396] = {.count = 1, .reusable = false}, SHIFT(2364), - [5398] = {.count = 1, .reusable = true}, SHIFT(2364), - [5400] = {.count = 1, .reusable = false}, SHIFT(2374), - [5402] = {.count = 1, .reusable = true}, SHIFT(2375), - [5404] = {.count = 1, .reusable = false}, SHIFT(2377), - [5406] = {.count = 1, .reusable = false}, SHIFT(2378), - [5408] = {.count = 1, .reusable = true}, SHIFT(2379), - [5410] = {.count = 1, .reusable = true}, SHIFT(2380), - [5412] = {.count = 1, .reusable = true}, SHIFT(2381), - [5414] = {.count = 1, .reusable = false}, SHIFT(2382), - [5416] = {.count = 1, .reusable = true}, SHIFT(2382), - [5418] = {.count = 1, .reusable = true}, SHIFT(2383), - [5420] = {.count = 1, .reusable = false}, SHIFT(2385), - [5422] = {.count = 1, .reusable = true}, SHIFT(2385), - [5424] = {.count = 1, .reusable = true}, SHIFT(2384), - [5426] = {.count = 1, .reusable = true}, SHIFT(2386), - [5428] = {.count = 1, .reusable = false}, SHIFT(2388), - [5430] = {.count = 1, .reusable = true}, SHIFT(2388), - [5432] = {.count = 1, .reusable = true}, SHIFT(2387), - [5434] = {.count = 1, .reusable = false}, SHIFT(2389), - [5436] = {.count = 1, .reusable = true}, SHIFT(2390), - [5438] = {.count = 1, .reusable = true}, SHIFT(2389), - [5440] = {.count = 1, .reusable = false}, SHIFT(2393), - [5442] = {.count = 1, .reusable = true}, SHIFT(2393), - [5444] = {.count = 1, .reusable = false}, SHIFT(2396), - [5446] = {.count = 1, .reusable = true}, SHIFT(2397), - [5448] = {.count = 1, .reusable = true}, SHIFT(2396), - [5450] = {.count = 1, .reusable = true}, SHIFT(2400), - [5452] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), - [5454] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [5456] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [5458] = {.count = 1, .reusable = false}, SHIFT(2404), - [5460] = {.count = 1, .reusable = true}, SHIFT(2404), - [5462] = {.count = 1, .reusable = true}, SHIFT(2405), - [5464] = {.count = 1, .reusable = true}, SHIFT(2406), - [5466] = {.count = 1, .reusable = true}, SHIFT(2407), - [5468] = {.count = 1, .reusable = true}, SHIFT(2408), - [5470] = {.count = 1, .reusable = true}, SHIFT(2409), - [5472] = {.count = 1, .reusable = false}, SHIFT(2410), - [5474] = {.count = 1, .reusable = true}, SHIFT(2411), - [5476] = {.count = 1, .reusable = true}, SHIFT(2412), - [5478] = {.count = 1, .reusable = true}, SHIFT(2413), - [5480] = {.count = 1, .reusable = true}, SHIFT(2414), - [5482] = {.count = 1, .reusable = true}, SHIFT(2415), - [5484] = {.count = 1, .reusable = true}, SHIFT(2416), - [5486] = {.count = 1, .reusable = true}, SHIFT(2417), - [5488] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), - [5490] = {.count = 1, .reusable = true}, SHIFT(2421), - [5492] = {.count = 1, .reusable = true}, SHIFT(2425), - [5494] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4), - [5496] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4), - [5498] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4), - [5500] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4), - [5502] = {.count = 1, .reusable = true}, SHIFT(2428), - [5504] = {.count = 1, .reusable = true}, SHIFT(2429), - [5506] = {.count = 1, .reusable = true}, SHIFT(2432), - [5508] = {.count = 1, .reusable = true}, SHIFT(2436), - [5510] = {.count = 1, .reusable = true}, SHIFT(2437), - [5512] = {.count = 1, .reusable = true}, SHIFT(2441), - [5514] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 2), - [5516] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 2), - [5518] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8), - [5520] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8), - [5522] = {.count = 1, .reusable = true}, SHIFT(2442), - [5524] = {.count = 1, .reusable = true}, SHIFT(2443), - [5526] = {.count = 1, .reusable = true}, SHIFT(2444), - [5528] = {.count = 1, .reusable = false}, SHIFT(2445), - [5530] = {.count = 1, .reusable = true}, SHIFT(2445), - [5532] = {.count = 1, .reusable = false}, SHIFT(2446), - [5534] = {.count = 1, .reusable = true}, SHIFT(2446), - [5536] = {.count = 1, .reusable = true}, SHIFT(2447), - [5538] = {.count = 1, .reusable = true}, SHIFT(2448), - [5540] = {.count = 1, .reusable = true}, SHIFT(2449), - [5542] = {.count = 1, .reusable = true}, SHIFT(2450), - [5544] = {.count = 1, .reusable = true}, SHIFT(2451), - [5546] = {.count = 1, .reusable = true}, SHIFT(2452), - [5548] = {.count = 1, .reusable = true}, SHIFT(2453), - [5550] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 9), - [5552] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 9), - [5554] = {.count = 1, .reusable = true}, SHIFT(2455), - [5556] = {.count = 1, .reusable = true}, SHIFT(2456), - [5558] = {.count = 1, .reusable = true}, SHIFT(2457), - [5560] = {.count = 1, .reusable = true}, SHIFT(2458), - [5562] = {.count = 1, .reusable = true}, SHIFT(2459), - [5564] = {.count = 1, .reusable = false}, SHIFT(2460), - [5566] = {.count = 1, .reusable = true}, SHIFT(2460), - [5568] = {.count = 1, .reusable = false}, SHIFT(2461), - [5570] = {.count = 1, .reusable = true}, SHIFT(2461), - [5572] = {.count = 1, .reusable = true}, SHIFT(2462), - [5574] = {.count = 1, .reusable = true}, SHIFT(2463), - [5576] = {.count = 1, .reusable = true}, SHIFT(2465), - [5578] = {.count = 1, .reusable = false}, SHIFT(2467), - [5580] = {.count = 1, .reusable = false}, SHIFT(2468), - [5582] = {.count = 1, .reusable = true}, SHIFT(2470), - [5584] = {.count = 1, .reusable = true}, SHIFT(2471), - [5586] = {.count = 1, .reusable = false}, SHIFT(2472), - [5588] = {.count = 1, .reusable = true}, SHIFT(2472), - [5590] = {.count = 1, .reusable = true}, SHIFT(2473), - [5592] = {.count = 1, .reusable = true}, SHIFT(2474), - [5594] = {.count = 1, .reusable = true}, SHIFT(2475), - [5596] = {.count = 1, .reusable = false}, SHIFT(2476), - [5598] = {.count = 1, .reusable = true}, SHIFT(2476), - [5600] = {.count = 1, .reusable = true}, SHIFT(2486), - [5602] = {.count = 1, .reusable = false}, SHIFT(2487), - [5604] = {.count = 1, .reusable = true}, SHIFT(2487), - [5606] = {.count = 1, .reusable = true}, SHIFT(2488), - [5608] = {.count = 1, .reusable = true}, SHIFT(2491), - [5610] = {.count = 1, .reusable = true}, SHIFT(2492), - [5612] = {.count = 1, .reusable = false}, SHIFT(2493), - [5614] = {.count = 1, .reusable = true}, SHIFT(2493), - [5616] = {.count = 1, .reusable = true}, SHIFT(2494), - [5618] = {.count = 1, .reusable = true}, SHIFT(2495), - [5620] = {.count = 1, .reusable = true}, SHIFT(2496), - [5622] = {.count = 1, .reusable = true}, SHIFT(2497), - [5624] = {.count = 1, .reusable = true}, SHIFT(2498), - [5626] = {.count = 1, .reusable = false}, SHIFT(2500), - [5628] = {.count = 1, .reusable = false}, SHIFT(2501), - [5630] = {.count = 1, .reusable = true}, SHIFT(2502), - [5632] = {.count = 1, .reusable = true}, SHIFT(2503), - [5634] = {.count = 1, .reusable = true}, SHIFT(2504), - [5636] = {.count = 1, .reusable = false}, SHIFT(2505), - [5638] = {.count = 1, .reusable = true}, SHIFT(2505), - [5640] = {.count = 1, .reusable = true}, SHIFT(2506), - [5642] = {.count = 1, .reusable = false}, SHIFT(2508), - [5644] = {.count = 1, .reusable = true}, SHIFT(2508), - [5646] = {.count = 1, .reusable = true}, SHIFT(2507), - [5648] = {.count = 1, .reusable = true}, SHIFT(2509), - [5650] = {.count = 1, .reusable = false}, SHIFT(2511), - [5652] = {.count = 1, .reusable = true}, SHIFT(2511), - [5654] = {.count = 1, .reusable = true}, SHIFT(2510), - [5656] = {.count = 1, .reusable = false}, SHIFT(2512), - [5658] = {.count = 1, .reusable = true}, SHIFT(2513), - [5660] = {.count = 1, .reusable = true}, SHIFT(2512), - [5662] = {.count = 1, .reusable = false}, SHIFT(2516), - [5664] = {.count = 1, .reusable = true}, SHIFT(2516), - [5666] = {.count = 1, .reusable = false}, SHIFT(2519), - [5668] = {.count = 1, .reusable = true}, SHIFT(2520), - [5670] = {.count = 1, .reusable = true}, SHIFT(2519), - [5672] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2169), - [5675] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2170), - [5678] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2171), - [5681] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2172), - [5684] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2173), - [5687] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2174), - [5690] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2175), - [5693] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2176), - [5696] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2177), - [5699] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2352), - [5702] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2173), - [5705] = {.count = 1, .reusable = true}, SHIFT(2523), - [5707] = {.count = 1, .reusable = false}, SHIFT(2525), - [5709] = {.count = 1, .reusable = false}, SHIFT(2526), - [5711] = {.count = 1, .reusable = true}, SHIFT(2527), - [5713] = {.count = 1, .reusable = true}, SHIFT(2528), - [5715] = {.count = 1, .reusable = true}, SHIFT(2529), - [5717] = {.count = 1, .reusable = false}, SHIFT(2530), - [5719] = {.count = 1, .reusable = true}, SHIFT(2530), - [5721] = {.count = 1, .reusable = true}, SHIFT(2531), - [5723] = {.count = 1, .reusable = false}, SHIFT(2533), - [5725] = {.count = 1, .reusable = true}, SHIFT(2533), - [5727] = {.count = 1, .reusable = true}, SHIFT(2532), - [5729] = {.count = 1, .reusable = true}, SHIFT(2534), - [5731] = {.count = 1, .reusable = false}, SHIFT(2536), - [5733] = {.count = 1, .reusable = true}, SHIFT(2536), - [5735] = {.count = 1, .reusable = true}, SHIFT(2535), - [5737] = {.count = 1, .reusable = false}, SHIFT(2537), - [5739] = {.count = 1, .reusable = true}, SHIFT(2538), - [5741] = {.count = 1, .reusable = true}, SHIFT(2537), - [5743] = {.count = 1, .reusable = false}, SHIFT(2541), - [5745] = {.count = 1, .reusable = true}, SHIFT(2541), - [5747] = {.count = 1, .reusable = false}, SHIFT(2544), - [5749] = {.count = 1, .reusable = true}, SHIFT(2545), - [5751] = {.count = 1, .reusable = true}, SHIFT(2544), - [5753] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2180), - [5756] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2181), - [5759] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2182), - [5762] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2183), - [5765] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2184), - [5768] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2185), - [5771] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2186), - [5774] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2187), - [5777] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2374), - [5780] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2183), - [5783] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2189), - [5786] = {.count = 1, .reusable = false}, SHIFT(2548), - [5788] = {.count = 1, .reusable = true}, SHIFT(2549), - [5790] = {.count = 1, .reusable = false}, SHIFT(2550), - [5792] = {.count = 1, .reusable = true}, SHIFT(2551), - [5794] = {.count = 1, .reusable = true}, SHIFT(2553), - [5796] = {.count = 1, .reusable = true}, SHIFT(2554), - [5798] = {.count = 1, .reusable = false}, SHIFT(2556), - [5800] = {.count = 1, .reusable = true}, SHIFT(2556), - [5802] = {.count = 1, .reusable = true}, SHIFT(2555), - [5804] = {.count = 1, .reusable = false}, SHIFT(2558), - [5806] = {.count = 1, .reusable = true}, SHIFT(2558), - [5808] = {.count = 1, .reusable = true}, SHIFT(2557), - [5810] = {.count = 1, .reusable = true}, SHIFT(2559), - [5812] = {.count = 1, .reusable = true}, SHIFT(2560), - [5814] = {.count = 1, .reusable = false}, SHIFT(2561), - [5816] = {.count = 1, .reusable = true}, SHIFT(2561), - [5818] = {.count = 1, .reusable = true}, SHIFT(2562), - [5820] = {.count = 1, .reusable = true}, SHIFT(2563), - [5822] = {.count = 1, .reusable = false}, SHIFT(2564), - [5824] = {.count = 1, .reusable = true}, SHIFT(2564), - [5826] = {.count = 1, .reusable = false}, SHIFT(2565), - [5828] = {.count = 1, .reusable = true}, SHIFT(2565), - [5830] = {.count = 1, .reusable = true}, SHIFT(2566), - [5832] = {.count = 1, .reusable = false}, SHIFT(2567), - [5834] = {.count = 1, .reusable = true}, SHIFT(2567), - [5836] = {.count = 1, .reusable = true}, SHIFT(2569), - [5838] = {.count = 1, .reusable = true}, SHIFT(2570), - [5840] = {.count = 1, .reusable = true}, SHIFT(2571), - [5842] = {.count = 1, .reusable = false}, SHIFT(2573), - [5844] = {.count = 1, .reusable = false}, SHIFT(2574), - [5846] = {.count = 1, .reusable = true}, SHIFT(2576), - [5848] = {.count = 1, .reusable = true}, SHIFT(2577), - [5850] = {.count = 1, .reusable = false}, SHIFT(2578), - [5852] = {.count = 1, .reusable = true}, SHIFT(2578), - [5854] = {.count = 1, .reusable = true}, SHIFT(2579), - [5856] = {.count = 1, .reusable = true}, SHIFT(2580), - [5858] = {.count = 1, .reusable = true}, SHIFT(2581), - [5860] = {.count = 1, .reusable = false}, SHIFT(2582), - [5862] = {.count = 1, .reusable = true}, SHIFT(2582), - [5864] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2215), - [5867] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2217), - [5870] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2217), - [5873] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2218), - [5876] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2216), - [5879] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2219), - [5882] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1960), - [5885] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1961), - [5888] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2220), - [5891] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1963), - [5894] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1964), - [5897] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1965), - [5900] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1966), - [5903] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2220), - [5906] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), - [5908] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [5910] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [5912] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), - [5914] = {.count = 1, .reusable = true}, SHIFT(2593), - [5916] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5), - [5918] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5), - [5920] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5), - [5922] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 5), - [5924] = {.count = 1, .reusable = true}, SHIFT(2594), - [5926] = {.count = 1, .reusable = true}, SHIFT(2595), - [5928] = {.count = 1, .reusable = true}, SHIFT(2596), - [5930] = {.count = 1, .reusable = true}, SHIFT(2601), - [5932] = {.count = 1, .reusable = true}, SHIFT(2602), - [5934] = {.count = 1, .reusable = true}, SHIFT(2606), - [5936] = {.count = 1, .reusable = true}, SHIFT(2607), - [5938] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 10), - [5940] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 10), - [5942] = {.count = 1, .reusable = true}, SHIFT(2608), - [5944] = {.count = 1, .reusable = true}, SHIFT(2609), - [5946] = {.count = 1, .reusable = true}, SHIFT(2610), - [5948] = {.count = 1, .reusable = true}, SHIFT(2611), - [5950] = {.count = 1, .reusable = false}, SHIFT(2613), - [5952] = {.count = 1, .reusable = false}, SHIFT(2614), - [5954] = {.count = 1, .reusable = true}, SHIFT(2615), - [5956] = {.count = 1, .reusable = true}, SHIFT(2616), - [5958] = {.count = 1, .reusable = true}, SHIFT(2617), - [5960] = {.count = 1, .reusable = false}, SHIFT(2618), - [5962] = {.count = 1, .reusable = true}, SHIFT(2618), - [5964] = {.count = 1, .reusable = true}, SHIFT(2619), - [5966] = {.count = 1, .reusable = false}, SHIFT(2621), - [5968] = {.count = 1, .reusable = true}, SHIFT(2621), - [5970] = {.count = 1, .reusable = true}, SHIFT(2620), - [5972] = {.count = 1, .reusable = true}, SHIFT(2622), - [5974] = {.count = 1, .reusable = false}, SHIFT(2624), - [5976] = {.count = 1, .reusable = true}, SHIFT(2624), - [5978] = {.count = 1, .reusable = true}, SHIFT(2623), - [5980] = {.count = 1, .reusable = false}, SHIFT(2625), - [5982] = {.count = 1, .reusable = true}, SHIFT(2626), - [5984] = {.count = 1, .reusable = true}, SHIFT(2625), - [5986] = {.count = 1, .reusable = false}, SHIFT(2629), - [5988] = {.count = 1, .reusable = true}, SHIFT(2629), - [5990] = {.count = 1, .reusable = false}, SHIFT(2632), - [5992] = {.count = 1, .reusable = true}, SHIFT(2633), - [5994] = {.count = 1, .reusable = true}, SHIFT(2632), - [5996] = {.count = 1, .reusable = false}, SHIFT(2636), - [5998] = {.count = 1, .reusable = true}, SHIFT(2636), - [6000] = {.count = 1, .reusable = true}, SHIFT(2637), - [6002] = {.count = 1, .reusable = true}, SHIFT(2638), - [6004] = {.count = 1, .reusable = true}, SHIFT(2639), - [6006] = {.count = 1, .reusable = true}, SHIFT(2640), - [6008] = {.count = 1, .reusable = false}, SHIFT(2643), - [6010] = {.count = 1, .reusable = true}, SHIFT(2643), - [6012] = {.count = 1, .reusable = true}, SHIFT(2644), - [6014] = {.count = 1, .reusable = true}, SHIFT(2645), - [6016] = {.count = 1, .reusable = true}, SHIFT(2646), - [6018] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2331), - [6021] = {.count = 1, .reusable = false}, SHIFT(2648), - [6023] = {.count = 1, .reusable = true}, SHIFT(2649), - [6025] = {.count = 1, .reusable = false}, SHIFT(2650), - [6027] = {.count = 1, .reusable = true}, SHIFT(2651), - [6029] = {.count = 1, .reusable = true}, SHIFT(2653), - [6031] = {.count = 1, .reusable = true}, SHIFT(2654), - [6033] = {.count = 1, .reusable = false}, SHIFT(2656), - [6035] = {.count = 1, .reusable = true}, SHIFT(2656), - [6037] = {.count = 1, .reusable = true}, SHIFT(2655), - [6039] = {.count = 1, .reusable = false}, SHIFT(2658), - [6041] = {.count = 1, .reusable = true}, SHIFT(2658), - [6043] = {.count = 1, .reusable = true}, SHIFT(2657), - [6045] = {.count = 1, .reusable = true}, SHIFT(2659), - [6047] = {.count = 1, .reusable = true}, SHIFT(2660), - [6049] = {.count = 1, .reusable = false}, SHIFT(2661), - [6051] = {.count = 1, .reusable = true}, SHIFT(2661), - [6053] = {.count = 1, .reusable = true}, SHIFT(2662), - [6055] = {.count = 1, .reusable = true}, SHIFT(2663), - [6057] = {.count = 1, .reusable = false}, SHIFT(2664), - [6059] = {.count = 1, .reusable = true}, SHIFT(2664), - [6061] = {.count = 1, .reusable = false}, SHIFT(2665), - [6063] = {.count = 1, .reusable = true}, SHIFT(2665), - [6065] = {.count = 1, .reusable = true}, SHIFT(2666), - [6067] = {.count = 1, .reusable = false}, SHIFT(2667), - [6069] = {.count = 1, .reusable = true}, SHIFT(2667), - [6071] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2353), - [6074] = {.count = 1, .reusable = false}, SHIFT(2668), - [6076] = {.count = 1, .reusable = true}, SHIFT(2669), - [6078] = {.count = 1, .reusable = false}, SHIFT(2670), - [6080] = {.count = 1, .reusable = true}, SHIFT(2671), - [6082] = {.count = 1, .reusable = true}, SHIFT(2673), - [6084] = {.count = 1, .reusable = true}, SHIFT(2674), - [6086] = {.count = 1, .reusable = false}, SHIFT(2676), - [6088] = {.count = 1, .reusable = true}, SHIFT(2676), - [6090] = {.count = 1, .reusable = true}, SHIFT(2675), - [6092] = {.count = 1, .reusable = false}, SHIFT(2678), - [6094] = {.count = 1, .reusable = true}, SHIFT(2678), - [6096] = {.count = 1, .reusable = true}, SHIFT(2677), - [6098] = {.count = 1, .reusable = true}, SHIFT(2679), - [6100] = {.count = 1, .reusable = true}, SHIFT(2680), - [6102] = {.count = 1, .reusable = false}, SHIFT(2681), - [6104] = {.count = 1, .reusable = true}, SHIFT(2681), - [6106] = {.count = 1, .reusable = true}, SHIFT(2682), - [6108] = {.count = 1, .reusable = true}, SHIFT(2683), - [6110] = {.count = 1, .reusable = false}, SHIFT(2684), - [6112] = {.count = 1, .reusable = true}, SHIFT(2684), - [6114] = {.count = 1, .reusable = false}, SHIFT(2685), - [6116] = {.count = 1, .reusable = true}, SHIFT(2685), - [6118] = {.count = 1, .reusable = true}, SHIFT(2686), - [6120] = {.count = 1, .reusable = false}, SHIFT(2687), - [6122] = {.count = 1, .reusable = true}, SHIFT(2687), - [6124] = {.count = 1, .reusable = true}, SHIFT(2688), - [6126] = {.count = 1, .reusable = true}, SHIFT(2689), - [6128] = {.count = 1, .reusable = false}, SHIFT(2690), - [6130] = {.count = 1, .reusable = true}, SHIFT(2691), - [6132] = {.count = 1, .reusable = true}, SHIFT(2693), - [6134] = {.count = 1, .reusable = true}, SHIFT(2694), - [6136] = {.count = 1, .reusable = false}, SHIFT(2695), - [6138] = {.count = 1, .reusable = true}, SHIFT(2695), - [6140] = {.count = 1, .reusable = true}, SHIFT(2696), - [6142] = {.count = 1, .reusable = false}, SHIFT(2697), - [6144] = {.count = 1, .reusable = true}, SHIFT(2697), - [6146] = {.count = 1, .reusable = true}, SHIFT(2698), - [6148] = {.count = 1, .reusable = false}, SHIFT(2699), - [6150] = {.count = 1, .reusable = true}, SHIFT(2699), - [6152] = {.count = 1, .reusable = true}, SHIFT(2700), - [6154] = {.count = 1, .reusable = true}, SHIFT(2701), - [6156] = {.count = 1, .reusable = true}, SHIFT(2702), - [6158] = {.count = 1, .reusable = false}, SHIFT(2704), - [6160] = {.count = 1, .reusable = false}, SHIFT(2705), - [6162] = {.count = 1, .reusable = true}, SHIFT(2706), - [6164] = {.count = 1, .reusable = true}, SHIFT(2707), - [6166] = {.count = 1, .reusable = true}, SHIFT(2708), - [6168] = {.count = 1, .reusable = false}, SHIFT(2709), - [6170] = {.count = 1, .reusable = true}, SHIFT(2709), - [6172] = {.count = 1, .reusable = true}, SHIFT(2710), - [6174] = {.count = 1, .reusable = false}, SHIFT(2712), - [6176] = {.count = 1, .reusable = true}, SHIFT(2712), - [6178] = {.count = 1, .reusable = true}, SHIFT(2711), - [6180] = {.count = 1, .reusable = true}, SHIFT(2713), - [6182] = {.count = 1, .reusable = false}, SHIFT(2715), - [6184] = {.count = 1, .reusable = true}, SHIFT(2715), - [6186] = {.count = 1, .reusable = true}, SHIFT(2714), - [6188] = {.count = 1, .reusable = false}, SHIFT(2716), - [6190] = {.count = 1, .reusable = true}, SHIFT(2717), - [6192] = {.count = 1, .reusable = true}, SHIFT(2716), - [6194] = {.count = 1, .reusable = false}, SHIFT(2720), - [6196] = {.count = 1, .reusable = true}, SHIFT(2720), - [6198] = {.count = 1, .reusable = false}, SHIFT(2723), - [6200] = {.count = 1, .reusable = true}, SHIFT(2724), - [6202] = {.count = 1, .reusable = true}, SHIFT(2723), - [6204] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6, .alias_sequence_id = 1), - [6206] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), - [6208] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), - [6210] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6), - [6212] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6), - [6214] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6), - [6216] = {.count = 1, .reusable = true}, SHIFT(2727), - [6218] = {.count = 1, .reusable = true}, SHIFT(2728), - [6220] = {.count = 1, .reusable = true}, SHIFT(2731), - [6222] = {.count = 1, .reusable = true}, SHIFT(2732), - [6224] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2465), - [6227] = {.count = 1, .reusable = false}, SHIFT(2735), - [6229] = {.count = 1, .reusable = true}, SHIFT(2736), - [6231] = {.count = 1, .reusable = false}, SHIFT(2737), - [6233] = {.count = 1, .reusable = true}, SHIFT(2738), - [6235] = {.count = 1, .reusable = true}, SHIFT(2740), - [6237] = {.count = 1, .reusable = true}, SHIFT(2741), - [6239] = {.count = 1, .reusable = false}, SHIFT(2743), - [6241] = {.count = 1, .reusable = true}, SHIFT(2743), - [6243] = {.count = 1, .reusable = true}, SHIFT(2742), - [6245] = {.count = 1, .reusable = false}, SHIFT(2745), - [6247] = {.count = 1, .reusable = true}, SHIFT(2745), - [6249] = {.count = 1, .reusable = true}, SHIFT(2744), - [6251] = {.count = 1, .reusable = true}, SHIFT(2746), - [6253] = {.count = 1, .reusable = true}, SHIFT(2747), - [6255] = {.count = 1, .reusable = false}, SHIFT(2748), - [6257] = {.count = 1, .reusable = true}, SHIFT(2748), - [6259] = {.count = 1, .reusable = true}, SHIFT(2749), - [6261] = {.count = 1, .reusable = true}, SHIFT(2750), - [6263] = {.count = 1, .reusable = false}, SHIFT(2751), - [6265] = {.count = 1, .reusable = true}, SHIFT(2751), - [6267] = {.count = 1, .reusable = false}, SHIFT(2752), - [6269] = {.count = 1, .reusable = true}, SHIFT(2752), - [6271] = {.count = 1, .reusable = true}, SHIFT(2753), - [6273] = {.count = 1, .reusable = false}, SHIFT(2754), - [6275] = {.count = 1, .reusable = true}, SHIFT(2754), - [6277] = {.count = 1, .reusable = true}, SHIFT(2755), - [6279] = {.count = 1, .reusable = true}, SHIFT(2756), - [6281] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2486), - [6284] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2487), - [6287] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2487), - [6290] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(2488), - [6293] = {.count = 1, .reusable = true}, SHIFT(2758), - [6295] = {.count = 1, .reusable = true}, SHIFT(2759), - [6297] = {.count = 1, .reusable = true}, SHIFT(2761), - [6299] = {.count = 1, .reusable = true}, SHIFT(2762), - [6301] = {.count = 1, .reusable = true}, SHIFT(2763), - [6303] = {.count = 1, .reusable = false}, SHIFT(2764), - [6305] = {.count = 1, .reusable = true}, SHIFT(2765), - [6307] = {.count = 1, .reusable = true}, SHIFT(2767), - [6309] = {.count = 1, .reusable = true}, SHIFT(2768), - [6311] = {.count = 1, .reusable = false}, SHIFT(2769), - [6313] = {.count = 1, .reusable = true}, SHIFT(2769), - [6315] = {.count = 1, .reusable = true}, SHIFT(2770), - [6317] = {.count = 1, .reusable = false}, SHIFT(2771), - [6319] = {.count = 1, .reusable = true}, SHIFT(2771), - [6321] = {.count = 1, .reusable = true}, SHIFT(2772), - [6323] = {.count = 1, .reusable = false}, SHIFT(2773), - [6325] = {.count = 1, .reusable = true}, SHIFT(2773), - [6327] = {.count = 1, .reusable = true}, SHIFT(2774), - [6329] = {.count = 1, .reusable = true}, SHIFT(2775), - [6331] = {.count = 1, .reusable = true}, SHIFT(2776), - [6333] = {.count = 1, .reusable = true}, SHIFT(2777), - [6335] = {.count = 1, .reusable = false}, SHIFT(2778), - [6337] = {.count = 1, .reusable = true}, SHIFT(2779), - [6339] = {.count = 1, .reusable = true}, SHIFT(2781), - [6341] = {.count = 1, .reusable = true}, SHIFT(2782), - [6343] = {.count = 1, .reusable = false}, SHIFT(2783), - [6345] = {.count = 1, .reusable = true}, SHIFT(2783), - [6347] = {.count = 1, .reusable = true}, SHIFT(2784), - [6349] = {.count = 1, .reusable = false}, SHIFT(2785), - [6351] = {.count = 1, .reusable = true}, SHIFT(2785), - [6353] = {.count = 1, .reusable = true}, SHIFT(2786), - [6355] = {.count = 1, .reusable = false}, SHIFT(2787), - [6357] = {.count = 1, .reusable = true}, SHIFT(2787), - [6359] = {.count = 1, .reusable = true}, SHIFT(2788), - [6361] = {.count = 1, .reusable = true}, SHIFT(2789), - [6363] = {.count = 1, .reusable = true}, SHIFT(2790), - [6365] = {.count = 1, .reusable = true}, SHIFT(2791), - [6367] = {.count = 1, .reusable = true}, SHIFT(2792), - [6369] = {.count = 1, .reusable = false}, SHIFT(2793), - [6371] = {.count = 1, .reusable = true}, SHIFT(2793), - [6373] = {.count = 1, .reusable = false}, SHIFT(2794), - [6375] = {.count = 1, .reusable = true}, SHIFT(2794), - [6377] = {.count = 1, .reusable = true}, SHIFT(2795), - [6379] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2571), - [6382] = {.count = 1, .reusable = false}, SHIFT(2796), - [6384] = {.count = 1, .reusable = true}, SHIFT(2797), - [6386] = {.count = 1, .reusable = false}, SHIFT(2798), - [6388] = {.count = 1, .reusable = true}, SHIFT(2799), - [6390] = {.count = 1, .reusable = true}, SHIFT(2801), - [6392] = {.count = 1, .reusable = true}, SHIFT(2802), - [6394] = {.count = 1, .reusable = false}, SHIFT(2804), - [6396] = {.count = 1, .reusable = true}, SHIFT(2804), - [6398] = {.count = 1, .reusable = true}, SHIFT(2803), - [6400] = {.count = 1, .reusable = false}, SHIFT(2806), - [6402] = {.count = 1, .reusable = true}, SHIFT(2806), - [6404] = {.count = 1, .reusable = true}, SHIFT(2805), - [6406] = {.count = 1, .reusable = true}, SHIFT(2807), - [6408] = {.count = 1, .reusable = true}, SHIFT(2808), - [6410] = {.count = 1, .reusable = false}, SHIFT(2809), - [6412] = {.count = 1, .reusable = true}, SHIFT(2809), - [6414] = {.count = 1, .reusable = true}, SHIFT(2810), - [6416] = {.count = 1, .reusable = true}, SHIFT(2811), - [6418] = {.count = 1, .reusable = false}, SHIFT(2812), - [6420] = {.count = 1, .reusable = true}, SHIFT(2812), - [6422] = {.count = 1, .reusable = false}, SHIFT(2813), - [6424] = {.count = 1, .reusable = true}, SHIFT(2813), - [6426] = {.count = 1, .reusable = true}, SHIFT(2814), - [6428] = {.count = 1, .reusable = false}, SHIFT(2815), - [6430] = {.count = 1, .reusable = true}, SHIFT(2815), - [6432] = {.count = 1, .reusable = true}, SHIFT(2816), - [6434] = {.count = 1, .reusable = true}, SHIFT(2817), - [6436] = {.count = 1, .reusable = true}, SHIFT(2818), - [6438] = {.count = 1, .reusable = true}, SHIFT(2819), - [6440] = {.count = 1, .reusable = false}, SHIFT(2820), - [6442] = {.count = 1, .reusable = true}, SHIFT(2821), - [6444] = {.count = 1, .reusable = true}, SHIFT(2823), - [6446] = {.count = 1, .reusable = true}, SHIFT(2824), - [6448] = {.count = 1, .reusable = false}, SHIFT(2825), - [6450] = {.count = 1, .reusable = true}, SHIFT(2825), - [6452] = {.count = 1, .reusable = true}, SHIFT(2826), - [6454] = {.count = 1, .reusable = false}, SHIFT(2827), - [6456] = {.count = 1, .reusable = true}, SHIFT(2827), - [6458] = {.count = 1, .reusable = true}, SHIFT(2828), - [6460] = {.count = 1, .reusable = false}, SHIFT(2829), - [6462] = {.count = 1, .reusable = true}, SHIFT(2829), - [6464] = {.count = 1, .reusable = true}, SHIFT(2830), - [6466] = {.count = 1, .reusable = true}, SHIFT(2831), - [6468] = {.count = 1, .reusable = true}, SHIFT(2834), - [6470] = {.count = 1, .reusable = true}, SHIFT(2835), - [6472] = {.count = 1, .reusable = true}, SHIFT(2836), - [6474] = {.count = 1, .reusable = false}, SHIFT(2837), - [6476] = {.count = 1, .reusable = true}, SHIFT(2837), - [6478] = {.count = 1, .reusable = false}, SHIFT(2838), - [6480] = {.count = 1, .reusable = true}, SHIFT(2838), - [6482] = {.count = 1, .reusable = true}, SHIFT(2839), - [6484] = {.count = 1, .reusable = true}, SHIFT(2840), - [6486] = {.count = 1, .reusable = true}, SHIFT(2841), - [6488] = {.count = 1, .reusable = true}, SHIFT(2842), - [6490] = {.count = 1, .reusable = false}, SHIFT(2843), - [6492] = {.count = 1, .reusable = true}, SHIFT(2843), - [6494] = {.count = 1, .reusable = false}, SHIFT(2844), - [6496] = {.count = 1, .reusable = true}, SHIFT(2844), - [6498] = {.count = 1, .reusable = true}, SHIFT(2845), - [6500] = {.count = 1, .reusable = true}, SHIFT(2846), - [6502] = {.count = 1, .reusable = true}, SHIFT(2847), - [6504] = {.count = 1, .reusable = true}, SHIFT(2848), - [6506] = {.count = 1, .reusable = true}, SHIFT(2849), - [6508] = {.count = 1, .reusable = false}, SHIFT(2850), - [6510] = {.count = 1, .reusable = true}, SHIFT(2851), - [6512] = {.count = 1, .reusable = true}, SHIFT(2853), - [6514] = {.count = 1, .reusable = true}, SHIFT(2854), - [6516] = {.count = 1, .reusable = false}, SHIFT(2855), - [6518] = {.count = 1, .reusable = true}, SHIFT(2855), - [6520] = {.count = 1, .reusable = true}, SHIFT(2856), - [6522] = {.count = 1, .reusable = false}, SHIFT(2857), - [6524] = {.count = 1, .reusable = true}, SHIFT(2857), - [6526] = {.count = 1, .reusable = true}, SHIFT(2858), - [6528] = {.count = 1, .reusable = false}, SHIFT(2859), - [6530] = {.count = 1, .reusable = true}, SHIFT(2859), - [6532] = {.count = 1, .reusable = true}, SHIFT(2860), - [6534] = {.count = 1, .reusable = true}, SHIFT(2861), - [6536] = {.count = 1, .reusable = true}, SHIFT(2862), - [6538] = {.count = 1, .reusable = true}, SHIFT(2863), - [6540] = {.count = 1, .reusable = true}, SHIFT(2864), - [6542] = {.count = 1, .reusable = false}, SHIFT(2865), - [6544] = {.count = 1, .reusable = true}, SHIFT(2865), - [6546] = {.count = 1, .reusable = false}, SHIFT(2866), - [6548] = {.count = 1, .reusable = true}, SHIFT(2866), - [6550] = {.count = 1, .reusable = true}, SHIFT(2867), - [6552] = {.count = 1, .reusable = true}, SHIFT(2868), - [6554] = {.count = 1, .reusable = true}, SHIFT(2869), - [6556] = {.count = 1, .reusable = true}, SHIFT(2870), - [6558] = {.count = 1, .reusable = true}, SHIFT(2871), - [6560] = {.count = 1, .reusable = true}, SHIFT(2872), - [6562] = {.count = 1, .reusable = true}, SHIFT(2873), - [6564] = {.count = 1, .reusable = true}, SHIFT(2874), - [6566] = {.count = 1, .reusable = false}, SHIFT(2875), - [6568] = {.count = 1, .reusable = true}, SHIFT(2875), - [6570] = {.count = 1, .reusable = false}, SHIFT(2876), - [6572] = {.count = 1, .reusable = true}, SHIFT(2876), - [6574] = {.count = 1, .reusable = true}, SHIFT(2877), - [6576] = {.count = 1, .reusable = true}, SHIFT(2878), - [6578] = {.count = 1, .reusable = true}, SHIFT(2879), - [6580] = {.count = 1, .reusable = true}, SHIFT(2880), - [6582] = {.count = 1, .reusable = true}, SHIFT(2881), + [2519] = {.count = 1, .reusable = true}, SHIFT(1195), + [2521] = {.count = 1, .reusable = false}, SHIFT(1196), + [2523] = {.count = 1, .reusable = true}, SHIFT(1196), + [2525] = {.count = 1, .reusable = false}, SHIFT(1198), + [2527] = {.count = 1, .reusable = true}, SHIFT(1198), + [2529] = {.count = 1, .reusable = false}, SHIFT(1199), + [2531] = {.count = 1, .reusable = true}, SHIFT(1199), + [2533] = {.count = 1, .reusable = true}, SHIFT(1201), + [2535] = {.count = 1, .reusable = false}, SHIFT(1202), + [2537] = {.count = 1, .reusable = true}, SHIFT(1202), + [2539] = {.count = 1, .reusable = false}, SHIFT(1203), + [2541] = {.count = 1, .reusable = true}, SHIFT(1203), + [2543] = {.count = 1, .reusable = true}, SHIFT(1207), + [2545] = {.count = 1, .reusable = true}, SHIFT(1208), + [2547] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(311), + [2550] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(312), + [2553] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(313), + [2556] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(728), + [2559] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(313), + [2562] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(316), + [2565] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(317), + [2568] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(730), + [2571] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(317), + [2574] = {.count = 1, .reusable = true}, SHIFT(1211), + [2576] = {.count = 1, .reusable = true}, SHIFT(1212), + [2578] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 4), + [2580] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 4), + [2582] = {.count = 1, .reusable = true}, SHIFT(1214), + [2584] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(320), + [2587] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(325), + [2590] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(325), + [2593] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(326), + [2596] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(329), + [2599] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(330), + [2602] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(331), + [2605] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(331), + [2608] = {.count = 1, .reusable = false}, SHIFT(1215), + [2610] = {.count = 1, .reusable = true}, SHIFT(1215), + [2612] = {.count = 1, .reusable = true}, SHIFT(1216), + [2614] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(343), + [2617] = {.count = 1, .reusable = false}, SHIFT(1218), + [2619] = {.count = 1, .reusable = true}, SHIFT(1219), + [2621] = {.count = 1, .reusable = false}, SHIFT(1220), + [2623] = {.count = 1, .reusable = true}, SHIFT(1221), + [2625] = {.count = 1, .reusable = true}, SHIFT(1223), + [2627] = {.count = 1, .reusable = true}, SHIFT(1224), + [2629] = {.count = 1, .reusable = false}, SHIFT(1226), + [2631] = {.count = 1, .reusable = true}, SHIFT(1226), + [2633] = {.count = 1, .reusable = true}, SHIFT(1225), + [2635] = {.count = 1, .reusable = false}, SHIFT(1228), + [2637] = {.count = 1, .reusable = true}, SHIFT(1228), + [2639] = {.count = 1, .reusable = true}, SHIFT(1227), + [2641] = {.count = 1, .reusable = true}, SHIFT(1229), + [2643] = {.count = 1, .reusable = true}, SHIFT(1230), + [2645] = {.count = 1, .reusable = false}, SHIFT(1231), + [2647] = {.count = 1, .reusable = true}, SHIFT(1231), + [2649] = {.count = 1, .reusable = true}, SHIFT(1232), + [2651] = {.count = 1, .reusable = true}, SHIFT(1233), + [2653] = {.count = 1, .reusable = false}, SHIFT(1234), + [2655] = {.count = 1, .reusable = true}, SHIFT(1234), + [2657] = {.count = 1, .reusable = false}, SHIFT(1235), + [2659] = {.count = 1, .reusable = true}, SHIFT(1235), + [2661] = {.count = 1, .reusable = false}, SHIFT(1237), + [2663] = {.count = 1, .reusable = true}, SHIFT(1237), + [2665] = {.count = 1, .reusable = false}, SHIFT(1238), + [2667] = {.count = 1, .reusable = true}, SHIFT(1238), + [2669] = {.count = 1, .reusable = true}, SHIFT(1240), + [2671] = {.count = 1, .reusable = false}, SHIFT(1241), + [2673] = {.count = 1, .reusable = true}, SHIFT(1241), + [2675] = {.count = 1, .reusable = false}, SHIFT(1242), + [2677] = {.count = 1, .reusable = true}, SHIFT(1242), + [2679] = {.count = 1, .reusable = true}, SHIFT(1244), + [2681] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(372), + [2684] = {.count = 1, .reusable = false}, SHIFT(1246), + [2686] = {.count = 1, .reusable = true}, SHIFT(1247), + [2688] = {.count = 1, .reusable = false}, SHIFT(1248), + [2690] = {.count = 1, .reusable = true}, SHIFT(1249), + [2692] = {.count = 1, .reusable = true}, SHIFT(1251), + [2694] = {.count = 1, .reusable = true}, SHIFT(1252), + [2696] = {.count = 1, .reusable = false}, SHIFT(1254), + [2698] = {.count = 1, .reusable = true}, SHIFT(1254), + [2700] = {.count = 1, .reusable = true}, SHIFT(1253), + [2702] = {.count = 1, .reusable = false}, SHIFT(1256), + [2704] = {.count = 1, .reusable = true}, SHIFT(1256), + [2706] = {.count = 1, .reusable = true}, SHIFT(1255), + [2708] = {.count = 1, .reusable = true}, SHIFT(1257), + [2710] = {.count = 1, .reusable = true}, SHIFT(1258), + [2712] = {.count = 1, .reusable = false}, SHIFT(1259), + [2714] = {.count = 1, .reusable = true}, SHIFT(1259), + [2716] = {.count = 1, .reusable = true}, SHIFT(1260), + [2718] = {.count = 1, .reusable = true}, SHIFT(1261), + [2720] = {.count = 1, .reusable = false}, SHIFT(1262), + [2722] = {.count = 1, .reusable = true}, SHIFT(1262), + [2724] = {.count = 1, .reusable = false}, SHIFT(1263), + [2726] = {.count = 1, .reusable = true}, SHIFT(1263), + [2728] = {.count = 1, .reusable = false}, SHIFT(1265), + [2730] = {.count = 1, .reusable = true}, SHIFT(1265), + [2732] = {.count = 1, .reusable = false}, SHIFT(1266), + [2734] = {.count = 1, .reusable = true}, SHIFT(1266), + [2736] = {.count = 1, .reusable = true}, SHIFT(1268), + [2738] = {.count = 1, .reusable = false}, SHIFT(1269), + [2740] = {.count = 1, .reusable = true}, SHIFT(1269), + [2742] = {.count = 1, .reusable = false}, SHIFT(1270), + [2744] = {.count = 1, .reusable = true}, SHIFT(1270), + [2746] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(394), + [2749] = {.count = 1, .reusable = false}, SHIFT(1272), + [2751] = {.count = 1, .reusable = true}, SHIFT(1273), + [2753] = {.count = 1, .reusable = false}, SHIFT(1274), + [2755] = {.count = 1, .reusable = true}, SHIFT(1275), + [2757] = {.count = 1, .reusable = true}, SHIFT(1277), + [2759] = {.count = 1, .reusable = true}, SHIFT(1278), + [2761] = {.count = 1, .reusable = false}, SHIFT(1280), + [2763] = {.count = 1, .reusable = true}, SHIFT(1280), + [2765] = {.count = 1, .reusable = true}, SHIFT(1279), + [2767] = {.count = 1, .reusable = false}, SHIFT(1282), + [2769] = {.count = 1, .reusable = true}, SHIFT(1282), + [2771] = {.count = 1, .reusable = true}, SHIFT(1281), + [2773] = {.count = 1, .reusable = true}, SHIFT(1283), + [2775] = {.count = 1, .reusable = true}, SHIFT(1284), + [2777] = {.count = 1, .reusable = false}, SHIFT(1285), + [2779] = {.count = 1, .reusable = true}, SHIFT(1285), + [2781] = {.count = 1, .reusable = true}, SHIFT(1286), + [2783] = {.count = 1, .reusable = true}, SHIFT(1287), + [2785] = {.count = 1, .reusable = false}, SHIFT(1288), + [2787] = {.count = 1, .reusable = true}, SHIFT(1288), + [2789] = {.count = 1, .reusable = false}, SHIFT(1289), + [2791] = {.count = 1, .reusable = true}, SHIFT(1289), + [2793] = {.count = 1, .reusable = false}, SHIFT(1291), + [2795] = {.count = 1, .reusable = true}, SHIFT(1291), + [2797] = {.count = 1, .reusable = false}, SHIFT(1292), + [2799] = {.count = 1, .reusable = true}, SHIFT(1292), + [2801] = {.count = 1, .reusable = true}, SHIFT(1294), + [2803] = {.count = 1, .reusable = false}, SHIFT(1295), + [2805] = {.count = 1, .reusable = true}, SHIFT(1295), + [2807] = {.count = 1, .reusable = false}, SHIFT(1296), + [2809] = {.count = 1, .reusable = true}, SHIFT(1296), + [2811] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(416), + [2814] = {.count = 1, .reusable = false}, SHIFT(1298), + [2816] = {.count = 1, .reusable = true}, SHIFT(1299), + [2818] = {.count = 1, .reusable = false}, SHIFT(1300), + [2820] = {.count = 1, .reusable = true}, SHIFT(1301), + [2822] = {.count = 1, .reusable = true}, SHIFT(1303), + [2824] = {.count = 1, .reusable = true}, SHIFT(1304), + [2826] = {.count = 1, .reusable = false}, SHIFT(1306), + [2828] = {.count = 1, .reusable = true}, SHIFT(1306), + [2830] = {.count = 1, .reusable = true}, SHIFT(1305), + [2832] = {.count = 1, .reusable = false}, SHIFT(1308), + [2834] = {.count = 1, .reusable = true}, SHIFT(1308), + [2836] = {.count = 1, .reusable = true}, SHIFT(1307), + [2838] = {.count = 1, .reusable = true}, SHIFT(1309), + [2840] = {.count = 1, .reusable = true}, SHIFT(1310), + [2842] = {.count = 1, .reusable = false}, SHIFT(1311), + [2844] = {.count = 1, .reusable = true}, SHIFT(1311), + [2846] = {.count = 1, .reusable = true}, SHIFT(1312), + [2848] = {.count = 1, .reusable = true}, SHIFT(1313), + [2850] = {.count = 1, .reusable = false}, SHIFT(1314), + [2852] = {.count = 1, .reusable = true}, SHIFT(1314), + [2854] = {.count = 1, .reusable = false}, SHIFT(1315), + [2856] = {.count = 1, .reusable = true}, SHIFT(1315), + [2858] = {.count = 1, .reusable = false}, SHIFT(1317), + [2860] = {.count = 1, .reusable = true}, SHIFT(1317), + [2862] = {.count = 1, .reusable = false}, SHIFT(1318), + [2864] = {.count = 1, .reusable = true}, SHIFT(1318), + [2866] = {.count = 1, .reusable = true}, SHIFT(1320), + [2868] = {.count = 1, .reusable = false}, SHIFT(1321), + [2870] = {.count = 1, .reusable = true}, SHIFT(1321), + [2872] = {.count = 1, .reusable = false}, SHIFT(1322), + [2874] = {.count = 1, .reusable = true}, SHIFT(1322), + [2876] = {.count = 1, .reusable = false}, REDUCE(aux_sym_string_repeat1, 3), + [2878] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 3), + [2880] = {.count = 1, .reusable = true}, SHIFT(1324), + [2882] = {.count = 1, .reusable = false}, SHIFT(1325), + [2884] = {.count = 1, .reusable = true}, SHIFT(1326), + [2886] = {.count = 1, .reusable = true}, SHIFT(1328), + [2888] = {.count = 1, .reusable = true}, SHIFT(1329), + [2890] = {.count = 1, .reusable = false}, SHIFT(1331), + [2892] = {.count = 1, .reusable = true}, SHIFT(1331), + [2894] = {.count = 1, .reusable = true}, SHIFT(1330), + [2896] = {.count = 1, .reusable = false}, SHIFT(1333), + [2898] = {.count = 1, .reusable = true}, SHIFT(1333), + [2900] = {.count = 1, .reusable = true}, SHIFT(1332), + [2902] = {.count = 1, .reusable = true}, SHIFT(1334), + [2904] = {.count = 1, .reusable = true}, SHIFT(1335), + [2906] = {.count = 1, .reusable = false}, SHIFT(1336), + [2908] = {.count = 1, .reusable = true}, SHIFT(1336), + [2910] = {.count = 1, .reusable = true}, SHIFT(1337), + [2912] = {.count = 1, .reusable = true}, SHIFT(1338), + [2914] = {.count = 1, .reusable = false}, SHIFT(1339), + [2916] = {.count = 1, .reusable = true}, SHIFT(1339), + [2918] = {.count = 1, .reusable = false}, SHIFT(1340), + [2920] = {.count = 1, .reusable = true}, SHIFT(1340), + [2922] = {.count = 1, .reusable = false}, SHIFT(1342), + [2924] = {.count = 1, .reusable = true}, SHIFT(1342), + [2926] = {.count = 1, .reusable = false}, SHIFT(1343), + [2928] = {.count = 1, .reusable = true}, SHIFT(1343), + [2930] = {.count = 1, .reusable = true}, REDUCE(sym_string, 4), + [2932] = {.count = 1, .reusable = false}, REDUCE(sym_string, 4), + [2934] = {.count = 1, .reusable = true}, SHIFT(1345), + [2936] = {.count = 1, .reusable = true}, SHIFT(1346), + [2938] = {.count = 1, .reusable = true}, SHIFT(1347), + [2940] = {.count = 1, .reusable = true}, SHIFT(1348), + [2942] = {.count = 1, .reusable = true}, SHIFT(1349), + [2944] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4), + [2946] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4), + [2948] = {.count = 1, .reusable = true}, SHIFT(1350), + [2950] = {.count = 1, .reusable = true}, SHIFT(1351), + [2952] = {.count = 1, .reusable = false}, SHIFT(1353), + [2954] = {.count = 1, .reusable = false}, SHIFT(1354), + [2956] = {.count = 1, .reusable = true}, SHIFT(1356), + [2958] = {.count = 1, .reusable = true}, SHIFT(1357), + [2960] = {.count = 1, .reusable = false}, SHIFT(1358), + [2962] = {.count = 1, .reusable = true}, SHIFT(1358), + [2964] = {.count = 1, .reusable = true}, SHIFT(1359), + [2966] = {.count = 1, .reusable = true}, SHIFT(1360), + [2968] = {.count = 1, .reusable = true}, SHIFT(1361), + [2970] = {.count = 1, .reusable = true}, SHIFT(1362), + [2972] = {.count = 1, .reusable = false}, SHIFT(1363), + [2974] = {.count = 1, .reusable = true}, SHIFT(1363), + [2976] = {.count = 1, .reusable = false}, SHIFT(1373), + [2978] = {.count = 1, .reusable = true}, SHIFT(1374), + [2980] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [2982] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [2984] = {.count = 1, .reusable = true}, SHIFT(1376), + [2986] = {.count = 1, .reusable = true}, SHIFT(1377), + [2988] = {.count = 1, .reusable = false}, SHIFT(1378), + [2990] = {.count = 1, .reusable = true}, SHIFT(1378), + [2992] = {.count = 1, .reusable = true}, SHIFT(1379), + [2994] = {.count = 1, .reusable = false}, SHIFT(1380), + [2996] = {.count = 1, .reusable = true}, SHIFT(1380), + [2998] = {.count = 1, .reusable = true}, SHIFT(1381), + [3000] = {.count = 1, .reusable = false}, SHIFT(1383), + [3002] = {.count = 1, .reusable = false}, SHIFT(1384), + [3004] = {.count = 1, .reusable = true}, SHIFT(1385), + [3006] = {.count = 1, .reusable = true}, SHIFT(1386), + [3008] = {.count = 1, .reusable = true}, SHIFT(1387), + [3010] = {.count = 1, .reusable = false}, SHIFT(1388), + [3012] = {.count = 1, .reusable = true}, SHIFT(1388), + [3014] = {.count = 1, .reusable = true}, SHIFT(1389), + [3016] = {.count = 1, .reusable = false}, SHIFT(1391), + [3018] = {.count = 1, .reusable = true}, SHIFT(1391), + [3020] = {.count = 1, .reusable = true}, SHIFT(1390), + [3022] = {.count = 1, .reusable = true}, SHIFT(1392), + [3024] = {.count = 1, .reusable = false}, SHIFT(1394), + [3026] = {.count = 1, .reusable = true}, SHIFT(1394), + [3028] = {.count = 1, .reusable = true}, SHIFT(1393), + [3030] = {.count = 1, .reusable = true}, SHIFT(1395), + [3032] = {.count = 1, .reusable = false}, SHIFT(1396), + [3034] = {.count = 1, .reusable = true}, SHIFT(1396), + [3036] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 3), + [3038] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 3), + [3040] = {.count = 1, .reusable = false}, SHIFT(1397), + [3042] = {.count = 1, .reusable = true}, SHIFT(1398), + [3044] = {.count = 1, .reusable = true}, SHIFT(1397), + [3046] = {.count = 1, .reusable = false}, SHIFT(1402), + [3048] = {.count = 1, .reusable = true}, SHIFT(1402), + [3050] = {.count = 1, .reusable = false}, SHIFT(1406), + [3052] = {.count = 1, .reusable = true}, SHIFT(1407), + [3054] = {.count = 1, .reusable = true}, SHIFT(1406), + [3056] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), + [3058] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(940), + [3061] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(462), + [3064] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(463), + [3067] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(464), + [3070] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(465), + [3073] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(940), + [3076] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(466), + [3079] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(468), + [3082] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(469), + [3085] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(470), + [3088] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(465), + [3091] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 4), + [3093] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 4), + [3095] = {.count = 1, .reusable = true}, SHIFT(1411), + [3097] = {.count = 1, .reusable = false}, SHIFT(1412), + [3099] = {.count = 1, .reusable = true}, SHIFT(1412), + [3101] = {.count = 1, .reusable = true}, SHIFT(1413), + [3103] = {.count = 1, .reusable = true}, SHIFT(1414), + [3105] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(482), + [3108] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(486), + [3111] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(486), + [3114] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(487), + [3117] = {.count = 1, .reusable = false}, SHIFT(1416), + [3119] = {.count = 1, .reusable = true}, SHIFT(1416), + [3121] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 4), + [3123] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 4), + [3125] = {.count = 1, .reusable = true}, SHIFT(1417), + [3127] = {.count = 1, .reusable = false}, SHIFT(1418), + [3129] = {.count = 1, .reusable = true}, SHIFT(1418), + [3131] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 4), + [3133] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 4), + [3135] = {.count = 1, .reusable = true}, SHIFT(1419), + [3137] = {.count = 1, .reusable = true}, SHIFT(1420), + [3139] = {.count = 1, .reusable = true}, SHIFT(1421), + [3141] = {.count = 1, .reusable = false}, SHIFT(1422), + [3143] = {.count = 1, .reusable = true}, SHIFT(1422), + [3145] = {.count = 1, .reusable = true}, SHIFT(1423), + [3147] = {.count = 1, .reusable = false}, SHIFT(1425), + [3149] = {.count = 1, .reusable = true}, SHIFT(1425), + [3151] = {.count = 1, .reusable = true}, SHIFT(1424), + [3153] = {.count = 1, .reusable = true}, SHIFT(1426), + [3155] = {.count = 1, .reusable = false}, SHIFT(1428), + [3157] = {.count = 1, .reusable = true}, SHIFT(1428), + [3159] = {.count = 1, .reusable = true}, SHIFT(1427), + [3161] = {.count = 1, .reusable = true}, REDUCE(sym_heredoc_body, 3), + [3163] = {.count = 1, .reusable = false}, REDUCE(sym_heredoc_body, 3), + [3165] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(972), + [3168] = {.count = 1, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [3170] = {.count = 2, .reusable = false}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(501), + [3173] = {.count = 2, .reusable = true}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(502), + [3176] = {.count = 1, .reusable = true}, REDUCE(sym_program, 4), + [3178] = {.count = 1, .reusable = false}, SHIFT(1430), + [3180] = {.count = 1, .reusable = true}, SHIFT(1430), + [3182] = {.count = 1, .reusable = true}, SHIFT(1431), + [3184] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5, .alias_sequence_id = 4), + [3186] = {.count = 1, .reusable = true}, SHIFT(1432), + [3188] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 5), + [3190] = {.count = 1, .reusable = true}, SHIFT(1433), + [3192] = {.count = 1, .reusable = false}, SHIFT(1435), + [3194] = {.count = 1, .reusable = false}, SHIFT(1436), + [3196] = {.count = 1, .reusable = true}, SHIFT(1437), + [3198] = {.count = 1, .reusable = true}, SHIFT(1438), + [3200] = {.count = 1, .reusable = true}, SHIFT(1439), + [3202] = {.count = 1, .reusable = false}, SHIFT(1440), + [3204] = {.count = 1, .reusable = true}, SHIFT(1440), + [3206] = {.count = 1, .reusable = true}, SHIFT(1441), + [3208] = {.count = 1, .reusable = false}, SHIFT(1443), + [3210] = {.count = 1, .reusable = true}, SHIFT(1443), + [3212] = {.count = 1, .reusable = true}, SHIFT(1442), + [3214] = {.count = 1, .reusable = true}, SHIFT(1444), + [3216] = {.count = 1, .reusable = false}, SHIFT(1446), + [3218] = {.count = 1, .reusable = true}, SHIFT(1446), + [3220] = {.count = 1, .reusable = true}, SHIFT(1445), + [3222] = {.count = 1, .reusable = false}, SHIFT(1447), + [3224] = {.count = 1, .reusable = true}, SHIFT(1448), + [3226] = {.count = 1, .reusable = true}, SHIFT(1447), + [3228] = {.count = 1, .reusable = false}, SHIFT(1452), + [3230] = {.count = 1, .reusable = true}, SHIFT(1452), + [3232] = {.count = 1, .reusable = false}, SHIFT(1456), + [3234] = {.count = 1, .reusable = true}, SHIFT(1457), + [3236] = {.count = 1, .reusable = true}, SHIFT(1456), + [3238] = {.count = 1, .reusable = true}, REDUCE(sym_array, 3), + [3240] = {.count = 1, .reusable = false}, REDUCE(sym_array, 3), + [3242] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [3244] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(534), + [3247] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(535), + [3250] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(536), + [3253] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(537), + [3256] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(538), + [3259] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(539), + [3262] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(540), + [3265] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(541), + [3268] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(543), + [3271] = {.count = 1, .reusable = false}, SHIFT(1461), + [3273] = {.count = 1, .reusable = true}, SHIFT(1462), + [3275] = {.count = 1, .reusable = false}, SHIFT(1463), + [3277] = {.count = 1, .reusable = true}, SHIFT(1464), + [3279] = {.count = 1, .reusable = true}, SHIFT(1466), + [3281] = {.count = 1, .reusable = true}, SHIFT(1467), + [3283] = {.count = 1, .reusable = false}, SHIFT(1469), + [3285] = {.count = 1, .reusable = true}, SHIFT(1469), + [3287] = {.count = 1, .reusable = true}, SHIFT(1468), + [3289] = {.count = 1, .reusable = false}, SHIFT(1471), + [3291] = {.count = 1, .reusable = true}, SHIFT(1471), + [3293] = {.count = 1, .reusable = true}, SHIFT(1470), + [3295] = {.count = 1, .reusable = true}, SHIFT(1472), + [3297] = {.count = 1, .reusable = true}, SHIFT(1473), + [3299] = {.count = 1, .reusable = false}, SHIFT(1474), + [3301] = {.count = 1, .reusable = true}, SHIFT(1474), + [3303] = {.count = 1, .reusable = true}, SHIFT(1475), + [3305] = {.count = 1, .reusable = true}, SHIFT(1476), + [3307] = {.count = 1, .reusable = false}, SHIFT(1477), + [3309] = {.count = 1, .reusable = true}, SHIFT(1477), + [3311] = {.count = 1, .reusable = false}, SHIFT(1478), + [3313] = {.count = 1, .reusable = true}, SHIFT(1478), + [3315] = {.count = 1, .reusable = false}, SHIFT(1480), + [3317] = {.count = 1, .reusable = true}, SHIFT(1480), + [3319] = {.count = 1, .reusable = false}, SHIFT(1481), + [3321] = {.count = 1, .reusable = true}, SHIFT(1481), + [3323] = {.count = 1, .reusable = true}, SHIFT(1483), + [3325] = {.count = 1, .reusable = false}, SHIFT(1484), + [3327] = {.count = 1, .reusable = true}, SHIFT(1484), + [3329] = {.count = 1, .reusable = false}, SHIFT(1485), + [3331] = {.count = 1, .reusable = true}, SHIFT(1485), + [3333] = {.count = 1, .reusable = true}, SHIFT(1487), + [3335] = {.count = 1, .reusable = true}, SHIFT(1489), + [3337] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(568), + [3340] = {.count = 1, .reusable = false}, SHIFT(1491), + [3342] = {.count = 1, .reusable = true}, SHIFT(1492), + [3344] = {.count = 1, .reusable = false}, SHIFT(1493), + [3346] = {.count = 1, .reusable = true}, SHIFT(1494), + [3348] = {.count = 1, .reusable = true}, SHIFT(1496), + [3350] = {.count = 1, .reusable = true}, SHIFT(1497), + [3352] = {.count = 1, .reusable = false}, SHIFT(1499), + [3354] = {.count = 1, .reusable = true}, SHIFT(1499), + [3356] = {.count = 1, .reusable = true}, SHIFT(1498), + [3358] = {.count = 1, .reusable = false}, SHIFT(1501), + [3360] = {.count = 1, .reusable = true}, SHIFT(1501), + [3362] = {.count = 1, .reusable = true}, SHIFT(1500), + [3364] = {.count = 1, .reusable = true}, SHIFT(1502), + [3366] = {.count = 1, .reusable = true}, SHIFT(1503), + [3368] = {.count = 1, .reusable = false}, SHIFT(1504), + [3370] = {.count = 1, .reusable = true}, SHIFT(1504), + [3372] = {.count = 1, .reusable = true}, SHIFT(1505), + [3374] = {.count = 1, .reusable = true}, SHIFT(1506), + [3376] = {.count = 1, .reusable = false}, SHIFT(1507), + [3378] = {.count = 1, .reusable = true}, SHIFT(1507), + [3380] = {.count = 1, .reusable = false}, SHIFT(1508), + [3382] = {.count = 1, .reusable = true}, SHIFT(1508), + [3384] = {.count = 1, .reusable = false}, SHIFT(1510), + [3386] = {.count = 1, .reusable = true}, SHIFT(1510), + [3388] = {.count = 1, .reusable = false}, SHIFT(1511), + [3390] = {.count = 1, .reusable = true}, SHIFT(1511), + [3392] = {.count = 1, .reusable = true}, SHIFT(1513), + [3394] = {.count = 1, .reusable = false}, SHIFT(1514), + [3396] = {.count = 1, .reusable = true}, SHIFT(1514), + [3398] = {.count = 1, .reusable = false}, SHIFT(1515), + [3400] = {.count = 1, .reusable = true}, SHIFT(1515), + [3402] = {.count = 1, .reusable = false}, SHIFT(1517), + [3404] = {.count = 1, .reusable = true}, SHIFT(1517), + [3406] = {.count = 1, .reusable = true}, SHIFT(1518), + [3408] = {.count = 1, .reusable = false}, SHIFT(1520), + [3410] = {.count = 1, .reusable = false}, SHIFT(1521), + [3412] = {.count = 1, .reusable = true}, SHIFT(1522), + [3414] = {.count = 1, .reusable = true}, SHIFT(1523), + [3416] = {.count = 1, .reusable = true}, SHIFT(1524), + [3418] = {.count = 1, .reusable = false}, SHIFT(1525), + [3420] = {.count = 1, .reusable = true}, SHIFT(1525), + [3422] = {.count = 1, .reusable = true}, SHIFT(1526), + [3424] = {.count = 1, .reusable = false}, SHIFT(1528), + [3426] = {.count = 1, .reusable = true}, SHIFT(1528), + [3428] = {.count = 1, .reusable = true}, SHIFT(1527), + [3430] = {.count = 1, .reusable = true}, SHIFT(1529), + [3432] = {.count = 1, .reusable = false}, SHIFT(1531), + [3434] = {.count = 1, .reusable = true}, SHIFT(1531), + [3436] = {.count = 1, .reusable = true}, SHIFT(1530), + [3438] = {.count = 1, .reusable = false}, SHIFT(1532), + [3440] = {.count = 1, .reusable = true}, SHIFT(1533), + [3442] = {.count = 1, .reusable = true}, SHIFT(1532), + [3444] = {.count = 1, .reusable = false}, SHIFT(1537), + [3446] = {.count = 1, .reusable = true}, SHIFT(1537), + [3448] = {.count = 1, .reusable = false}, SHIFT(1541), + [3450] = {.count = 1, .reusable = true}, SHIFT(1542), + [3452] = {.count = 1, .reusable = true}, SHIFT(1541), + [3454] = {.count = 1, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [3456] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(593), + [3459] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(594), + [3462] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(595), + [3465] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(596), + [3468] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(597), + [3471] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(598), + [3474] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(599), + [3477] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(600), + [3480] = {.count = 2, .reusable = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(596), + [3483] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(605), + [3486] = {.count = 1, .reusable = false}, SHIFT(1547), + [3488] = {.count = 1, .reusable = true}, SHIFT(1548), + [3490] = {.count = 1, .reusable = false}, SHIFT(1549), + [3492] = {.count = 1, .reusable = true}, SHIFT(1550), + [3494] = {.count = 1, .reusable = true}, SHIFT(1552), + [3496] = {.count = 1, .reusable = true}, SHIFT(1553), + [3498] = {.count = 1, .reusable = false}, SHIFT(1555), + [3500] = {.count = 1, .reusable = true}, SHIFT(1555), + [3502] = {.count = 1, .reusable = true}, SHIFT(1554), + [3504] = {.count = 1, .reusable = false}, SHIFT(1557), + [3506] = {.count = 1, .reusable = true}, SHIFT(1557), + [3508] = {.count = 1, .reusable = true}, SHIFT(1556), + [3510] = {.count = 1, .reusable = true}, SHIFT(1558), + [3512] = {.count = 1, .reusable = true}, SHIFT(1559), + [3514] = {.count = 1, .reusable = false}, SHIFT(1560), + [3516] = {.count = 1, .reusable = true}, SHIFT(1560), + [3518] = {.count = 1, .reusable = true}, SHIFT(1561), + [3520] = {.count = 1, .reusable = true}, SHIFT(1562), + [3522] = {.count = 1, .reusable = false}, SHIFT(1563), + [3524] = {.count = 1, .reusable = true}, SHIFT(1563), + [3526] = {.count = 1, .reusable = false}, SHIFT(1564), + [3528] = {.count = 1, .reusable = true}, SHIFT(1564), + [3530] = {.count = 1, .reusable = false}, SHIFT(1566), + [3532] = {.count = 1, .reusable = true}, SHIFT(1566), + [3534] = {.count = 1, .reusable = false}, SHIFT(1567), + [3536] = {.count = 1, .reusable = true}, SHIFT(1567), + [3538] = {.count = 1, .reusable = true}, SHIFT(1569), + [3540] = {.count = 1, .reusable = false}, SHIFT(1570), + [3542] = {.count = 1, .reusable = true}, SHIFT(1570), + [3544] = {.count = 1, .reusable = false}, SHIFT(1571), + [3546] = {.count = 1, .reusable = true}, SHIFT(1571), + [3548] = {.count = 1, .reusable = true}, SHIFT(1573), + [3550] = {.count = 1, .reusable = true}, SHIFT(1574), + [3552] = {.count = 1, .reusable = false}, SHIFT(1575), + [3554] = {.count = 1, .reusable = true}, SHIFT(1576), + [3556] = {.count = 1, .reusable = true}, SHIFT(1578), + [3558] = {.count = 1, .reusable = true}, SHIFT(1579), + [3560] = {.count = 1, .reusable = false}, SHIFT(1580), + [3562] = {.count = 1, .reusable = true}, SHIFT(1580), + [3564] = {.count = 1, .reusable = true}, SHIFT(1581), + [3566] = {.count = 1, .reusable = false}, SHIFT(1582), + [3568] = {.count = 1, .reusable = true}, SHIFT(1582), + [3570] = {.count = 1, .reusable = true}, SHIFT(1583), + [3572] = {.count = 1, .reusable = false}, SHIFT(1584), + [3574] = {.count = 1, .reusable = true}, SHIFT(1584), + [3576] = {.count = 1, .reusable = true}, SHIFT(1585), + [3578] = {.count = 1, .reusable = false}, SHIFT(1586), + [3580] = {.count = 1, .reusable = true}, SHIFT(1586), + [3582] = {.count = 1, .reusable = false}, SHIFT(1587), + [3584] = {.count = 1, .reusable = true}, SHIFT(1587), + [3586] = {.count = 1, .reusable = true}, SHIFT(1588), + [3588] = {.count = 1, .reusable = false}, SHIFT(1589), + [3590] = {.count = 1, .reusable = true}, SHIFT(1589), + [3592] = {.count = 1, .reusable = true}, REDUCE(sym_do_group, 3), + [3594] = {.count = 1, .reusable = false}, REDUCE(sym_do_group, 3), + [3596] = {.count = 1, .reusable = false}, REDUCE(aux_sym__statements_repeat1, 2), + [3598] = {.count = 1, .reusable = true}, SHIFT(1592), + [3600] = {.count = 1, .reusable = false}, REDUCE(sym_else_clause, 2), + [3602] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), + [3604] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), + [3606] = {.count = 1, .reusable = true}, SHIFT(1594), + [3608] = {.count = 1, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), + [3610] = {.count = 2, .reusable = true}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(686), + [3613] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 2), + [3615] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 2), + [3617] = {.count = 1, .reusable = true}, SHIFT(1596), + [3619] = {.count = 1, .reusable = true}, SHIFT(1597), + [3621] = {.count = 1, .reusable = true}, SHIFT(1600), + [3623] = {.count = 1, .reusable = true}, SHIFT(1602), + [3625] = {.count = 1, .reusable = false}, SHIFT(1602), + [3627] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 5), + [3629] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 5), + [3631] = {.count = 1, .reusable = true}, SHIFT(1606), + [3633] = {.count = 1, .reusable = false}, SHIFT(1606), + [3635] = {.count = 1, .reusable = true}, SHIFT(1609), + [3637] = {.count = 1, .reusable = true}, SHIFT(1610), + [3639] = {.count = 1, .reusable = false}, SHIFT(1611), + [3641] = {.count = 1, .reusable = true}, SHIFT(1612), + [3643] = {.count = 1, .reusable = true}, SHIFT(1614), + [3645] = {.count = 1, .reusable = true}, SHIFT(1615), + [3647] = {.count = 1, .reusable = false}, SHIFT(1616), + [3649] = {.count = 1, .reusable = true}, SHIFT(1616), + [3651] = {.count = 1, .reusable = true}, SHIFT(1617), + [3653] = {.count = 1, .reusable = false}, SHIFT(1618), + [3655] = {.count = 1, .reusable = true}, SHIFT(1618), + [3657] = {.count = 1, .reusable = true}, SHIFT(1619), + [3659] = {.count = 1, .reusable = false}, SHIFT(1620), + [3661] = {.count = 1, .reusable = true}, SHIFT(1620), + [3663] = {.count = 1, .reusable = true}, SHIFT(1621), + [3665] = {.count = 1, .reusable = false}, SHIFT(1622), + [3667] = {.count = 1, .reusable = true}, SHIFT(1622), + [3669] = {.count = 1, .reusable = false}, SHIFT(1623), + [3671] = {.count = 1, .reusable = true}, SHIFT(1623), + [3673] = {.count = 1, .reusable = true}, SHIFT(1624), + [3675] = {.count = 1, .reusable = false}, SHIFT(1625), + [3677] = {.count = 1, .reusable = true}, SHIFT(1625), + [3679] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 5), + [3681] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 5), + [3683] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 5), + [3685] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 5), + [3687] = {.count = 1, .reusable = true}, SHIFT(1628), + [3689] = {.count = 1, .reusable = true}, SHIFT(1629), + [3691] = {.count = 1, .reusable = true}, SHIFT(1630), + [3693] = {.count = 1, .reusable = true}, SHIFT(1631), + [3695] = {.count = 1, .reusable = false}, SHIFT(1632), + [3697] = {.count = 1, .reusable = true}, SHIFT(1633), + [3699] = {.count = 1, .reusable = true}, SHIFT(1635), + [3701] = {.count = 1, .reusable = true}, SHIFT(1636), + [3703] = {.count = 1, .reusable = false}, SHIFT(1637), + [3705] = {.count = 1, .reusable = true}, SHIFT(1637), + [3707] = {.count = 1, .reusable = true}, SHIFT(1638), + [3709] = {.count = 1, .reusable = false}, SHIFT(1639), + [3711] = {.count = 1, .reusable = true}, SHIFT(1639), + [3713] = {.count = 1, .reusable = true}, SHIFT(1640), + [3715] = {.count = 1, .reusable = false}, SHIFT(1641), + [3717] = {.count = 1, .reusable = true}, SHIFT(1641), + [3719] = {.count = 1, .reusable = true}, SHIFT(1642), + [3721] = {.count = 1, .reusable = false}, SHIFT(1643), + [3723] = {.count = 1, .reusable = true}, SHIFT(1643), + [3725] = {.count = 1, .reusable = false}, SHIFT(1644), + [3727] = {.count = 1, .reusable = true}, SHIFT(1644), + [3729] = {.count = 1, .reusable = true}, SHIFT(1645), + [3731] = {.count = 1, .reusable = false}, SHIFT(1646), + [3733] = {.count = 1, .reusable = true}, SHIFT(1646), + [3735] = {.count = 1, .reusable = true}, SHIFT(1647), + [3737] = {.count = 1, .reusable = true}, SHIFT(1648), + [3739] = {.count = 1, .reusable = true}, SHIFT(1649), + [3741] = {.count = 1, .reusable = false}, SHIFT(1650), + [3743] = {.count = 1, .reusable = true}, SHIFT(1651), + [3745] = {.count = 1, .reusable = true}, SHIFT(1653), + [3747] = {.count = 1, .reusable = true}, SHIFT(1654), + [3749] = {.count = 1, .reusable = false}, SHIFT(1655), + [3751] = {.count = 1, .reusable = true}, SHIFT(1655), + [3753] = {.count = 1, .reusable = true}, SHIFT(1656), + [3755] = {.count = 1, .reusable = false}, SHIFT(1657), + [3757] = {.count = 1, .reusable = true}, SHIFT(1657), + [3759] = {.count = 1, .reusable = true}, SHIFT(1658), + [3761] = {.count = 1, .reusable = false}, SHIFT(1659), + [3763] = {.count = 1, .reusable = true}, SHIFT(1659), + [3765] = {.count = 1, .reusable = true}, SHIFT(1660), + [3767] = {.count = 1, .reusable = false}, SHIFT(1661), + [3769] = {.count = 1, .reusable = true}, SHIFT(1661), + [3771] = {.count = 1, .reusable = false}, SHIFT(1662), + [3773] = {.count = 1, .reusable = true}, SHIFT(1662), + [3775] = {.count = 1, .reusable = true}, SHIFT(1663), + [3777] = {.count = 1, .reusable = false}, SHIFT(1664), + [3779] = {.count = 1, .reusable = true}, SHIFT(1664), + [3781] = {.count = 1, .reusable = true}, SHIFT(1665), + [3783] = {.count = 1, .reusable = true}, SHIFT(1666), + [3785] = {.count = 1, .reusable = false}, SHIFT(1667), + [3787] = {.count = 1, .reusable = true}, SHIFT(1668), + [3789] = {.count = 1, .reusable = true}, SHIFT(1670), + [3791] = {.count = 1, .reusable = true}, SHIFT(1671), + [3793] = {.count = 1, .reusable = false}, SHIFT(1672), + [3795] = {.count = 1, .reusable = true}, SHIFT(1672), + [3797] = {.count = 1, .reusable = true}, SHIFT(1673), + [3799] = {.count = 1, .reusable = false}, SHIFT(1674), + [3801] = {.count = 1, .reusable = true}, SHIFT(1674), + [3803] = {.count = 1, .reusable = true}, SHIFT(1675), + [3805] = {.count = 1, .reusable = false}, SHIFT(1676), + [3807] = {.count = 1, .reusable = true}, SHIFT(1676), + [3809] = {.count = 1, .reusable = true}, SHIFT(1677), + [3811] = {.count = 1, .reusable = false}, SHIFT(1678), + [3813] = {.count = 1, .reusable = true}, SHIFT(1678), + [3815] = {.count = 1, .reusable = false}, SHIFT(1679), + [3817] = {.count = 1, .reusable = true}, SHIFT(1679), + [3819] = {.count = 1, .reusable = true}, SHIFT(1680), + [3821] = {.count = 1, .reusable = false}, SHIFT(1681), + [3823] = {.count = 1, .reusable = true}, SHIFT(1681), + [3825] = {.count = 1, .reusable = true}, SHIFT(1682), + [3827] = {.count = 1, .reusable = true}, SHIFT(1683), + [3829] = {.count = 1, .reusable = false}, SHIFT(1684), + [3831] = {.count = 1, .reusable = true}, SHIFT(1685), + [3833] = {.count = 1, .reusable = true}, SHIFT(1687), + [3835] = {.count = 1, .reusable = true}, SHIFT(1688), + [3837] = {.count = 1, .reusable = false}, SHIFT(1689), + [3839] = {.count = 1, .reusable = true}, SHIFT(1689), + [3841] = {.count = 1, .reusable = true}, SHIFT(1690), + [3843] = {.count = 1, .reusable = false}, SHIFT(1691), + [3845] = {.count = 1, .reusable = true}, SHIFT(1691), + [3847] = {.count = 1, .reusable = true}, SHIFT(1692), + [3849] = {.count = 1, .reusable = false}, SHIFT(1693), + [3851] = {.count = 1, .reusable = true}, SHIFT(1693), + [3853] = {.count = 1, .reusable = true}, SHIFT(1694), + [3855] = {.count = 1, .reusable = false}, SHIFT(1695), + [3857] = {.count = 1, .reusable = true}, SHIFT(1695), + [3859] = {.count = 1, .reusable = false}, SHIFT(1696), + [3861] = {.count = 1, .reusable = true}, SHIFT(1696), + [3863] = {.count = 1, .reusable = true}, SHIFT(1697), + [3865] = {.count = 1, .reusable = false}, SHIFT(1698), + [3867] = {.count = 1, .reusable = true}, SHIFT(1698), + [3869] = {.count = 1, .reusable = true}, SHIFT(1699), + [3871] = {.count = 1, .reusable = true}, SHIFT(1700), + [3873] = {.count = 1, .reusable = false}, SHIFT(1701), + [3875] = {.count = 1, .reusable = true}, SHIFT(1702), + [3877] = {.count = 1, .reusable = true}, SHIFT(1704), + [3879] = {.count = 1, .reusable = true}, SHIFT(1705), + [3881] = {.count = 1, .reusable = false}, SHIFT(1706), + [3883] = {.count = 1, .reusable = true}, SHIFT(1706), + [3885] = {.count = 1, .reusable = true}, SHIFT(1707), + [3887] = {.count = 1, .reusable = false}, SHIFT(1708), + [3889] = {.count = 1, .reusable = true}, SHIFT(1708), + [3891] = {.count = 1, .reusable = true}, SHIFT(1709), + [3893] = {.count = 1, .reusable = false}, SHIFT(1710), + [3895] = {.count = 1, .reusable = true}, SHIFT(1710), + [3897] = {.count = 1, .reusable = true}, SHIFT(1711), + [3899] = {.count = 1, .reusable = false}, SHIFT(1712), + [3901] = {.count = 1, .reusable = true}, SHIFT(1712), + [3903] = {.count = 1, .reusable = false}, SHIFT(1713), + [3905] = {.count = 1, .reusable = true}, SHIFT(1713), + [3907] = {.count = 1, .reusable = true}, SHIFT(1714), + [3909] = {.count = 1, .reusable = true}, SHIFT(1715), + [3911] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 4), + [3913] = {.count = 1, .reusable = true}, SHIFT(1716), + [3915] = {.count = 1, .reusable = true}, SHIFT(1717), + [3917] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 4), + [3919] = {.count = 1, .reusable = true}, SHIFT(1718), + [3921] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 6), + [3923] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 6), + [3925] = {.count = 1, .reusable = false}, SHIFT(1720), + [3927] = {.count = 1, .reusable = false}, SHIFT(1721), + [3929] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5), + [3931] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), + [3933] = {.count = 1, .reusable = true}, SHIFT(1722), + [3935] = {.count = 1, .reusable = true}, SHIFT(1723), + [3937] = {.count = 1, .reusable = true}, SHIFT(1724), + [3939] = {.count = 1, .reusable = false}, SHIFT(1725), + [3941] = {.count = 1, .reusable = true}, SHIFT(1725), + [3943] = {.count = 1, .reusable = true}, SHIFT(1726), + [3945] = {.count = 1, .reusable = false}, SHIFT(1728), + [3947] = {.count = 1, .reusable = true}, SHIFT(1728), + [3949] = {.count = 1, .reusable = true}, SHIFT(1727), + [3951] = {.count = 1, .reusable = true}, SHIFT(1729), + [3953] = {.count = 1, .reusable = false}, SHIFT(1731), + [3955] = {.count = 1, .reusable = true}, SHIFT(1731), + [3957] = {.count = 1, .reusable = true}, SHIFT(1730), + [3959] = {.count = 1, .reusable = false}, SHIFT(1732), + [3961] = {.count = 1, .reusable = true}, SHIFT(1733), + [3963] = {.count = 1, .reusable = true}, SHIFT(1732), + [3965] = {.count = 1, .reusable = false}, SHIFT(1737), + [3967] = {.count = 1, .reusable = true}, SHIFT(1737), + [3969] = {.count = 1, .reusable = false}, SHIFT(1741), + [3971] = {.count = 1, .reusable = true}, SHIFT(1742), + [3973] = {.count = 1, .reusable = true}, SHIFT(1741), + [3975] = {.count = 1, .reusable = true}, SHIFT(1746), + [3977] = {.count = 1, .reusable = true}, SHIFT(1747), + [3979] = {.count = 1, .reusable = true}, SHIFT(1748), + [3981] = {.count = 1, .reusable = false}, SHIFT(1749), + [3983] = {.count = 1, .reusable = true}, SHIFT(1749), + [3985] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 5), + [3987] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 5), + [3989] = {.count = 1, .reusable = false}, SHIFT(1750), + [3991] = {.count = 1, .reusable = true}, SHIFT(1750), + [3993] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(916), + [3996] = {.count = 1, .reusable = false}, SHIFT(1751), + [3998] = {.count = 1, .reusable = true}, SHIFT(1752), + [4000] = {.count = 1, .reusable = false}, SHIFT(1753), + [4002] = {.count = 1, .reusable = true}, SHIFT(1754), + [4004] = {.count = 1, .reusable = true}, SHIFT(1756), + [4006] = {.count = 1, .reusable = true}, SHIFT(1757), + [4008] = {.count = 1, .reusable = false}, SHIFT(1759), + [4010] = {.count = 1, .reusable = true}, SHIFT(1759), + [4012] = {.count = 1, .reusable = true}, SHIFT(1758), + [4014] = {.count = 1, .reusable = false}, SHIFT(1761), + [4016] = {.count = 1, .reusable = true}, SHIFT(1761), + [4018] = {.count = 1, .reusable = true}, SHIFT(1760), + [4020] = {.count = 1, .reusable = true}, SHIFT(1762), + [4022] = {.count = 1, .reusable = true}, SHIFT(1763), + [4024] = {.count = 1, .reusable = false}, SHIFT(1764), + [4026] = {.count = 1, .reusable = true}, SHIFT(1764), + [4028] = {.count = 1, .reusable = true}, SHIFT(1765), + [4030] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 3), + [4032] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 3), + [4034] = {.count = 1, .reusable = true}, SHIFT(1766), + [4036] = {.count = 1, .reusable = true}, SHIFT(1767), + [4038] = {.count = 1, .reusable = false}, SHIFT(1768), + [4040] = {.count = 1, .reusable = true}, SHIFT(1768), + [4042] = {.count = 1, .reusable = false}, SHIFT(1769), + [4044] = {.count = 1, .reusable = true}, SHIFT(1769), + [4046] = {.count = 1, .reusable = false}, SHIFT(1771), + [4048] = {.count = 1, .reusable = true}, SHIFT(1771), + [4050] = {.count = 1, .reusable = false}, SHIFT(1772), + [4052] = {.count = 1, .reusable = true}, SHIFT(1772), + [4054] = {.count = 1, .reusable = true}, SHIFT(1774), + [4056] = {.count = 1, .reusable = false}, SHIFT(1775), + [4058] = {.count = 1, .reusable = true}, SHIFT(1775), + [4060] = {.count = 1, .reusable = false}, SHIFT(1776), + [4062] = {.count = 1, .reusable = true}, SHIFT(1776), + [4064] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 5), + [4066] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 5), + [4068] = {.count = 1, .reusable = true}, SHIFT(1778), + [4070] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 5), + [4072] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 5), + [4074] = {.count = 1, .reusable = true}, SHIFT(1780), + [4076] = {.count = 1, .reusable = true}, SHIFT(1781), + [4078] = {.count = 1, .reusable = false}, SHIFT(1782), + [4080] = {.count = 1, .reusable = true}, SHIFT(1783), + [4082] = {.count = 1, .reusable = true}, SHIFT(1785), + [4084] = {.count = 1, .reusable = true}, SHIFT(1786), + [4086] = {.count = 1, .reusable = false}, SHIFT(1788), + [4088] = {.count = 1, .reusable = true}, SHIFT(1788), + [4090] = {.count = 1, .reusable = true}, SHIFT(1787), + [4092] = {.count = 1, .reusable = false}, SHIFT(1790), + [4094] = {.count = 1, .reusable = true}, SHIFT(1790), + [4096] = {.count = 1, .reusable = true}, SHIFT(1789), + [4098] = {.count = 1, .reusable = true}, SHIFT(1791), + [4100] = {.count = 1, .reusable = true}, SHIFT(1792), + [4102] = {.count = 1, .reusable = false}, SHIFT(1793), + [4104] = {.count = 1, .reusable = true}, SHIFT(1793), + [4106] = {.count = 1, .reusable = true}, SHIFT(1794), + [4108] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6, .alias_sequence_id = 4), + [4110] = {.count = 1, .reusable = true}, REDUCE(sym_subscript, 6), + [4112] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(985), + [4115] = {.count = 1, .reusable = false}, SHIFT(1795), + [4117] = {.count = 1, .reusable = true}, SHIFT(1796), + [4119] = {.count = 1, .reusable = false}, SHIFT(1797), + [4121] = {.count = 1, .reusable = true}, SHIFT(1798), + [4123] = {.count = 1, .reusable = true}, SHIFT(1800), + [4125] = {.count = 1, .reusable = true}, SHIFT(1801), + [4127] = {.count = 1, .reusable = false}, SHIFT(1803), + [4129] = {.count = 1, .reusable = true}, SHIFT(1803), + [4131] = {.count = 1, .reusable = true}, SHIFT(1802), + [4133] = {.count = 1, .reusable = false}, SHIFT(1805), + [4135] = {.count = 1, .reusable = true}, SHIFT(1805), + [4137] = {.count = 1, .reusable = true}, SHIFT(1804), + [4139] = {.count = 1, .reusable = true}, SHIFT(1806), + [4141] = {.count = 1, .reusable = true}, SHIFT(1807), + [4143] = {.count = 1, .reusable = false}, SHIFT(1808), + [4145] = {.count = 1, .reusable = true}, SHIFT(1808), + [4147] = {.count = 1, .reusable = true}, SHIFT(1809), + [4149] = {.count = 1, .reusable = true}, SHIFT(1810), + [4151] = {.count = 1, .reusable = false}, SHIFT(1811), + [4153] = {.count = 1, .reusable = true}, SHIFT(1811), + [4155] = {.count = 1, .reusable = false}, SHIFT(1812), + [4157] = {.count = 1, .reusable = true}, SHIFT(1812), + [4159] = {.count = 1, .reusable = false}, SHIFT(1814), + [4161] = {.count = 1, .reusable = true}, SHIFT(1814), + [4163] = {.count = 1, .reusable = false}, SHIFT(1815), + [4165] = {.count = 1, .reusable = true}, SHIFT(1815), + [4167] = {.count = 1, .reusable = true}, SHIFT(1817), + [4169] = {.count = 1, .reusable = false}, SHIFT(1818), + [4171] = {.count = 1, .reusable = true}, SHIFT(1818), + [4173] = {.count = 1, .reusable = false}, SHIFT(1819), + [4175] = {.count = 1, .reusable = true}, SHIFT(1819), + [4177] = {.count = 1, .reusable = true}, SHIFT(1821), + [4179] = {.count = 1, .reusable = true}, SHIFT(1822), + [4181] = {.count = 1, .reusable = false}, SHIFT(1823), + [4183] = {.count = 1, .reusable = true}, SHIFT(1824), + [4185] = {.count = 1, .reusable = true}, SHIFT(1826), + [4187] = {.count = 1, .reusable = true}, SHIFT(1827), + [4189] = {.count = 1, .reusable = false}, SHIFT(1828), + [4191] = {.count = 1, .reusable = true}, SHIFT(1828), + [4193] = {.count = 1, .reusable = true}, SHIFT(1829), + [4195] = {.count = 1, .reusable = false}, SHIFT(1830), + [4197] = {.count = 1, .reusable = true}, SHIFT(1830), + [4199] = {.count = 1, .reusable = true}, SHIFT(1831), + [4201] = {.count = 1, .reusable = false}, SHIFT(1832), + [4203] = {.count = 1, .reusable = true}, SHIFT(1832), + [4205] = {.count = 1, .reusable = true}, SHIFT(1833), + [4207] = {.count = 1, .reusable = false}, SHIFT(1834), + [4209] = {.count = 1, .reusable = true}, SHIFT(1834), + [4211] = {.count = 1, .reusable = false}, SHIFT(1835), + [4213] = {.count = 1, .reusable = true}, SHIFT(1835), + [4215] = {.count = 1, .reusable = true}, SHIFT(1836), + [4217] = {.count = 1, .reusable = false}, SHIFT(1837), + [4219] = {.count = 1, .reusable = true}, SHIFT(1837), + [4221] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 6), + [4223] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 6), + [4225] = {.count = 1, .reusable = true}, SHIFT(1839), + [4227] = {.count = 1, .reusable = true}, SHIFT(1840), + [4229] = {.count = 1, .reusable = true}, SHIFT(1841), + [4231] = {.count = 1, .reusable = true}, SHIFT(1842), + [4233] = {.count = 1, .reusable = false}, SHIFT(1843), + [4235] = {.count = 1, .reusable = true}, SHIFT(1844), + [4237] = {.count = 1, .reusable = true}, SHIFT(1846), + [4239] = {.count = 1, .reusable = true}, SHIFT(1847), + [4241] = {.count = 1, .reusable = false}, SHIFT(1848), + [4243] = {.count = 1, .reusable = true}, SHIFT(1848), + [4245] = {.count = 1, .reusable = true}, SHIFT(1849), + [4247] = {.count = 1, .reusable = false}, SHIFT(1850), + [4249] = {.count = 1, .reusable = true}, SHIFT(1850), + [4251] = {.count = 1, .reusable = true}, SHIFT(1851), + [4253] = {.count = 1, .reusable = false}, SHIFT(1852), + [4255] = {.count = 1, .reusable = true}, SHIFT(1852), + [4257] = {.count = 1, .reusable = true}, SHIFT(1853), + [4259] = {.count = 1, .reusable = false}, SHIFT(1854), + [4261] = {.count = 1, .reusable = true}, SHIFT(1854), + [4263] = {.count = 1, .reusable = false}, SHIFT(1855), + [4265] = {.count = 1, .reusable = true}, SHIFT(1855), + [4267] = {.count = 1, .reusable = true}, SHIFT(1856), + [4269] = {.count = 1, .reusable = false}, SHIFT(1857), + [4271] = {.count = 1, .reusable = true}, SHIFT(1857), + [4273] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1071), + [4276] = {.count = 1, .reusable = false}, SHIFT(1859), + [4278] = {.count = 1, .reusable = true}, SHIFT(1860), + [4280] = {.count = 1, .reusable = false}, SHIFT(1861), + [4282] = {.count = 1, .reusable = true}, SHIFT(1862), + [4284] = {.count = 1, .reusable = true}, SHIFT(1864), + [4286] = {.count = 1, .reusable = true}, SHIFT(1865), + [4288] = {.count = 1, .reusable = false}, SHIFT(1867), + [4290] = {.count = 1, .reusable = true}, SHIFT(1867), + [4292] = {.count = 1, .reusable = true}, SHIFT(1866), + [4294] = {.count = 1, .reusable = false}, SHIFT(1869), + [4296] = {.count = 1, .reusable = true}, SHIFT(1869), + [4298] = {.count = 1, .reusable = true}, SHIFT(1868), + [4300] = {.count = 1, .reusable = true}, SHIFT(1870), + [4302] = {.count = 1, .reusable = true}, SHIFT(1871), + [4304] = {.count = 1, .reusable = false}, SHIFT(1872), + [4306] = {.count = 1, .reusable = true}, SHIFT(1872), + [4308] = {.count = 1, .reusable = true}, SHIFT(1873), + [4310] = {.count = 1, .reusable = true}, SHIFT(1874), + [4312] = {.count = 1, .reusable = false}, SHIFT(1875), + [4314] = {.count = 1, .reusable = true}, SHIFT(1875), + [4316] = {.count = 1, .reusable = false}, SHIFT(1876), + [4318] = {.count = 1, .reusable = true}, SHIFT(1876), + [4320] = {.count = 1, .reusable = false}, SHIFT(1878), + [4322] = {.count = 1, .reusable = true}, SHIFT(1878), + [4324] = {.count = 1, .reusable = false}, SHIFT(1879), + [4326] = {.count = 1, .reusable = true}, SHIFT(1879), + [4328] = {.count = 1, .reusable = true}, SHIFT(1881), + [4330] = {.count = 1, .reusable = false}, SHIFT(1882), + [4332] = {.count = 1, .reusable = true}, SHIFT(1882), + [4334] = {.count = 1, .reusable = false}, SHIFT(1883), + [4336] = {.count = 1, .reusable = true}, SHIFT(1883), + [4338] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), + [4340] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), + [4342] = {.count = 1, .reusable = true}, SHIFT(1885), + [4344] = {.count = 1, .reusable = true}, SHIFT(1886), + [4346] = {.count = 1, .reusable = false}, SHIFT(1887), + [4348] = {.count = 1, .reusable = true}, SHIFT(1888), + [4350] = {.count = 1, .reusable = true}, SHIFT(1890), + [4352] = {.count = 1, .reusable = true}, SHIFT(1891), + [4354] = {.count = 1, .reusable = false}, SHIFT(1892), + [4356] = {.count = 1, .reusable = true}, SHIFT(1892), + [4358] = {.count = 1, .reusable = true}, SHIFT(1893), + [4360] = {.count = 1, .reusable = false}, SHIFT(1894), + [4362] = {.count = 1, .reusable = true}, SHIFT(1894), + [4364] = {.count = 1, .reusable = true}, SHIFT(1895), + [4366] = {.count = 1, .reusable = false}, SHIFT(1896), + [4368] = {.count = 1, .reusable = true}, SHIFT(1896), + [4370] = {.count = 1, .reusable = true}, SHIFT(1897), + [4372] = {.count = 1, .reusable = false}, SHIFT(1898), + [4374] = {.count = 1, .reusable = true}, SHIFT(1898), + [4376] = {.count = 1, .reusable = false}, SHIFT(1899), + [4378] = {.count = 1, .reusable = true}, SHIFT(1899), + [4380] = {.count = 1, .reusable = true}, SHIFT(1900), + [4382] = {.count = 1, .reusable = false}, SHIFT(1901), + [4384] = {.count = 1, .reusable = true}, SHIFT(1901), + [4386] = {.count = 1, .reusable = true}, SHIFT(1902), + [4388] = {.count = 1, .reusable = true}, SHIFT(1903), + [4390] = {.count = 1, .reusable = true}, SHIFT(1904), + [4392] = {.count = 1, .reusable = false}, SHIFT(1905), + [4394] = {.count = 1, .reusable = true}, SHIFT(1905), + [4396] = {.count = 1, .reusable = false}, SHIFT(1906), + [4398] = {.count = 1, .reusable = true}, SHIFT(1906), + [4400] = {.count = 1, .reusable = true}, SHIFT(1907), + [4402] = {.count = 1, .reusable = true}, SHIFT(1908), + [4404] = {.count = 1, .reusable = true}, SHIFT(1909), + [4406] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 3), + [4408] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), + [4410] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), + [4412] = {.count = 1, .reusable = true}, SHIFT(1911), + [4414] = {.count = 1, .reusable = true}, SHIFT(1912), + [4416] = {.count = 1, .reusable = true}, SHIFT(1913), + [4418] = {.count = 1, .reusable = true}, SHIFT(1915), + [4420] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2, .alias_sequence_id = 1), + [4422] = {.count = 1, .reusable = true}, SHIFT(1916), + [4424] = {.count = 1, .reusable = false}, SHIFT(1917), + [4426] = {.count = 1, .reusable = false}, SHIFT(1918), + [4428] = {.count = 1, .reusable = false}, SHIFT(1919), + [4430] = {.count = 1, .reusable = false}, SHIFT(1920), + [4432] = {.count = 1, .reusable = true}, SHIFT(1921), + [4434] = {.count = 1, .reusable = false}, SHIFT(1922), + [4436] = {.count = 1, .reusable = true}, SHIFT(1923), + [4438] = {.count = 1, .reusable = true}, SHIFT(1924), + [4440] = {.count = 1, .reusable = true}, SHIFT(1925), + [4442] = {.count = 1, .reusable = true}, SHIFT(1926), + [4444] = {.count = 1, .reusable = true}, SHIFT(1927), + [4446] = {.count = 1, .reusable = false}, SHIFT(1928), + [4448] = {.count = 1, .reusable = true}, SHIFT(1936), + [4450] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 2), + [4452] = {.count = 1, .reusable = true}, SHIFT(1939), + [4454] = {.count = 1, .reusable = true}, SHIFT(1943), + [4456] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 2), + [4458] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 2), + [4460] = {.count = 1, .reusable = true}, SHIFT(1944), + [4462] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1945), + [4465] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(223), + [4468] = {.count = 2, .reusable = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(224), + [4471] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1946), + [4474] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(226), + [4477] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(227), + [4480] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(228), + [4483] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(229), + [4486] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 6), + [4488] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 6), + [4490] = {.count = 1, .reusable = true}, SHIFT(1949), + [4492] = {.count = 1, .reusable = true}, SHIFT(1951), + [4494] = {.count = 1, .reusable = true}, SHIFT(1952), + [4496] = {.count = 1, .reusable = true}, SHIFT(1953), + [4498] = {.count = 1, .reusable = false}, SHIFT(1954), + [4500] = {.count = 1, .reusable = true}, SHIFT(1954), + [4502] = {.count = 1, .reusable = false}, SHIFT(1955), + [4504] = {.count = 1, .reusable = true}, SHIFT(1955), + [4506] = {.count = 1, .reusable = true}, SHIFT(1956), + [4508] = {.count = 1, .reusable = true}, SHIFT(1957), + [4510] = {.count = 1, .reusable = true}, SHIFT(1958), + [4512] = {.count = 1, .reusable = true}, REDUCE(sym_subshell, 6), + [4514] = {.count = 1, .reusable = false}, REDUCE(sym_subshell, 6), + [4516] = {.count = 1, .reusable = true}, SHIFT(1959), + [4518] = {.count = 1, .reusable = true}, SHIFT(1960), + [4520] = {.count = 1, .reusable = true}, SHIFT(1961), + [4522] = {.count = 1, .reusable = false}, SHIFT(1962), + [4524] = {.count = 1, .reusable = true}, SHIFT(1962), + [4526] = {.count = 1, .reusable = false}, SHIFT(1963), + [4528] = {.count = 1, .reusable = true}, SHIFT(1963), + [4530] = {.count = 1, .reusable = true}, SHIFT(1964), + [4532] = {.count = 1, .reusable = true}, SHIFT(1965), + [4534] = {.count = 1, .reusable = true}, SHIFT(1966), + [4536] = {.count = 1, .reusable = true}, SHIFT(1967), + [4538] = {.count = 1, .reusable = true}, SHIFT(1968), + [4540] = {.count = 1, .reusable = true}, SHIFT(1969), + [4542] = {.count = 1, .reusable = false}, SHIFT(1970), + [4544] = {.count = 1, .reusable = true}, SHIFT(1970), + [4546] = {.count = 1, .reusable = false}, SHIFT(1971), + [4548] = {.count = 1, .reusable = true}, SHIFT(1971), + [4550] = {.count = 1, .reusable = true}, SHIFT(1972), + [4552] = {.count = 1, .reusable = true}, SHIFT(1973), + [4554] = {.count = 1, .reusable = true}, SHIFT(1974), + [4556] = {.count = 1, .reusable = true}, SHIFT(1975), + [4558] = {.count = 1, .reusable = true}, SHIFT(1976), + [4560] = {.count = 1, .reusable = true}, SHIFT(1977), + [4562] = {.count = 1, .reusable = false}, SHIFT(1978), + [4564] = {.count = 1, .reusable = true}, SHIFT(1978), + [4566] = {.count = 1, .reusable = false}, SHIFT(1979), + [4568] = {.count = 1, .reusable = true}, SHIFT(1979), + [4570] = {.count = 1, .reusable = true}, SHIFT(1980), + [4572] = {.count = 1, .reusable = true}, SHIFT(1981), + [4574] = {.count = 1, .reusable = true}, SHIFT(1982), + [4576] = {.count = 1, .reusable = true}, SHIFT(1983), + [4578] = {.count = 1, .reusable = true}, SHIFT(1984), + [4580] = {.count = 1, .reusable = true}, SHIFT(1985), + [4582] = {.count = 1, .reusable = false}, SHIFT(1986), + [4584] = {.count = 1, .reusable = true}, SHIFT(1986), + [4586] = {.count = 1, .reusable = false}, SHIFT(1987), + [4588] = {.count = 1, .reusable = true}, SHIFT(1987), + [4590] = {.count = 1, .reusable = true}, SHIFT(1988), + [4592] = {.count = 1, .reusable = true}, SHIFT(1989), + [4594] = {.count = 1, .reusable = true}, SHIFT(1990), + [4596] = {.count = 1, .reusable = true}, SHIFT(1991), + [4598] = {.count = 1, .reusable = true}, SHIFT(1992), + [4600] = {.count = 1, .reusable = true}, SHIFT(1993), + [4602] = {.count = 1, .reusable = false}, SHIFT(1994), + [4604] = {.count = 1, .reusable = true}, SHIFT(1994), + [4606] = {.count = 1, .reusable = false}, SHIFT(1995), + [4608] = {.count = 1, .reusable = true}, SHIFT(1995), + [4610] = {.count = 1, .reusable = true}, SHIFT(1996), + [4612] = {.count = 1, .reusable = true}, SHIFT(1997), + [4614] = {.count = 1, .reusable = true}, SHIFT(1998), + [4616] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 4), + [4618] = {.count = 1, .reusable = true}, SHIFT(1999), + [4620] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 5), + [4622] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1350), + [4625] = {.count = 1, .reusable = false}, SHIFT(2000), + [4627] = {.count = 1, .reusable = true}, SHIFT(2001), + [4629] = {.count = 1, .reusable = false}, SHIFT(2002), + [4631] = {.count = 1, .reusable = true}, SHIFT(2003), + [4633] = {.count = 1, .reusable = true}, SHIFT(2005), + [4635] = {.count = 1, .reusable = true}, SHIFT(2006), + [4637] = {.count = 1, .reusable = false}, SHIFT(2008), + [4639] = {.count = 1, .reusable = true}, SHIFT(2008), + [4641] = {.count = 1, .reusable = true}, SHIFT(2007), + [4643] = {.count = 1, .reusable = false}, SHIFT(2010), + [4645] = {.count = 1, .reusable = true}, SHIFT(2010), + [4647] = {.count = 1, .reusable = true}, SHIFT(2009), + [4649] = {.count = 1, .reusable = true}, SHIFT(2011), + [4651] = {.count = 1, .reusable = true}, SHIFT(2012), + [4653] = {.count = 1, .reusable = false}, SHIFT(2013), + [4655] = {.count = 1, .reusable = true}, SHIFT(2013), + [4657] = {.count = 1, .reusable = true}, SHIFT(2014), + [4659] = {.count = 1, .reusable = true}, SHIFT(2015), + [4661] = {.count = 1, .reusable = false}, SHIFT(2016), + [4663] = {.count = 1, .reusable = true}, SHIFT(2016), + [4665] = {.count = 1, .reusable = false}, SHIFT(2017), + [4667] = {.count = 1, .reusable = true}, SHIFT(2017), + [4669] = {.count = 1, .reusable = false}, SHIFT(2019), + [4671] = {.count = 1, .reusable = true}, SHIFT(2019), + [4673] = {.count = 1, .reusable = false}, SHIFT(2020), + [4675] = {.count = 1, .reusable = true}, SHIFT(2020), + [4677] = {.count = 1, .reusable = true}, SHIFT(2022), + [4679] = {.count = 1, .reusable = false}, SHIFT(2023), + [4681] = {.count = 1, .reusable = true}, SHIFT(2023), + [4683] = {.count = 1, .reusable = false}, SHIFT(2024), + [4685] = {.count = 1, .reusable = true}, SHIFT(2024), + [4687] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), + [4689] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), + [4691] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), + [4693] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), + [4695] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 5), + [4697] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 5), + [4699] = {.count = 1, .reusable = true}, SHIFT(2026), + [4701] = {.count = 1, .reusable = true}, SHIFT(2027), + [4703] = {.count = 1, .reusable = true}, SHIFT(2028), + [4705] = {.count = 1, .reusable = true}, SHIFT(2029), + [4707] = {.count = 1, .reusable = false}, SHIFT(2030), + [4709] = {.count = 1, .reusable = true}, SHIFT(2031), + [4711] = {.count = 1, .reusable = true}, SHIFT(2033), + [4713] = {.count = 1, .reusable = true}, SHIFT(2034), + [4715] = {.count = 1, .reusable = false}, SHIFT(2035), + [4717] = {.count = 1, .reusable = true}, SHIFT(2035), + [4719] = {.count = 1, .reusable = true}, SHIFT(2036), + [4721] = {.count = 1, .reusable = false}, SHIFT(2037), + [4723] = {.count = 1, .reusable = true}, SHIFT(2037), + [4725] = {.count = 1, .reusable = true}, SHIFT(2038), + [4727] = {.count = 1, .reusable = false}, SHIFT(2039), + [4729] = {.count = 1, .reusable = true}, SHIFT(2039), + [4731] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 3), + [4733] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 3), + [4735] = {.count = 1, .reusable = true}, SHIFT(2040), + [4737] = {.count = 1, .reusable = false}, SHIFT(2041), + [4739] = {.count = 1, .reusable = true}, SHIFT(2041), + [4741] = {.count = 1, .reusable = false}, SHIFT(2042), + [4743] = {.count = 1, .reusable = true}, SHIFT(2042), + [4745] = {.count = 1, .reusable = true}, SHIFT(2043), + [4747] = {.count = 1, .reusable = false}, SHIFT(2044), + [4749] = {.count = 1, .reusable = true}, SHIFT(2044), + [4751] = {.count = 1, .reusable = true}, REDUCE(sym_command_substitution, 6), + [4753] = {.count = 1, .reusable = false}, REDUCE(sym_command_substitution, 6), + [4755] = {.count = 1, .reusable = true}, REDUCE(sym_process_substitution, 6), + [4757] = {.count = 1, .reusable = false}, REDUCE(sym_process_substitution, 6), + [4759] = {.count = 1, .reusable = true}, SHIFT(2045), + [4761] = {.count = 1, .reusable = true}, SHIFT(2046), + [4763] = {.count = 1, .reusable = false}, SHIFT(2047), + [4765] = {.count = 1, .reusable = true}, SHIFT(2048), + [4767] = {.count = 1, .reusable = true}, SHIFT(2050), + [4769] = {.count = 1, .reusable = true}, SHIFT(2051), + [4771] = {.count = 1, .reusable = false}, SHIFT(2052), + [4773] = {.count = 1, .reusable = true}, SHIFT(2052), + [4775] = {.count = 1, .reusable = true}, SHIFT(2053), + [4777] = {.count = 1, .reusable = false}, SHIFT(2054), + [4779] = {.count = 1, .reusable = true}, SHIFT(2054), + [4781] = {.count = 1, .reusable = true}, SHIFT(2055), + [4783] = {.count = 1, .reusable = false}, SHIFT(2056), + [4785] = {.count = 1, .reusable = true}, SHIFT(2056), + [4787] = {.count = 1, .reusable = true}, SHIFT(2057), + [4789] = {.count = 1, .reusable = true}, SHIFT(2058), + [4791] = {.count = 1, .reusable = false}, SHIFT(2059), + [4793] = {.count = 1, .reusable = true}, SHIFT(2060), + [4795] = {.count = 1, .reusable = true}, SHIFT(2062), + [4797] = {.count = 1, .reusable = true}, SHIFT(2063), + [4799] = {.count = 1, .reusable = false}, SHIFT(2064), + [4801] = {.count = 1, .reusable = true}, SHIFT(2064), + [4803] = {.count = 1, .reusable = true}, SHIFT(2065), + [4805] = {.count = 1, .reusable = false}, SHIFT(2066), + [4807] = {.count = 1, .reusable = true}, SHIFT(2066), + [4809] = {.count = 1, .reusable = true}, SHIFT(2067), + [4811] = {.count = 1, .reusable = false}, SHIFT(2068), + [4813] = {.count = 1, .reusable = true}, SHIFT(2068), + [4815] = {.count = 1, .reusable = true}, SHIFT(2069), + [4817] = {.count = 1, .reusable = false}, SHIFT(2070), + [4819] = {.count = 1, .reusable = true}, SHIFT(2070), + [4821] = {.count = 1, .reusable = false}, SHIFT(2071), + [4823] = {.count = 1, .reusable = true}, SHIFT(2071), + [4825] = {.count = 1, .reusable = true}, SHIFT(2072), + [4827] = {.count = 1, .reusable = false}, SHIFT(2073), + [4829] = {.count = 1, .reusable = true}, SHIFT(2073), + [4831] = {.count = 1, .reusable = true}, SHIFT(2074), + [4833] = {.count = 1, .reusable = true}, SHIFT(2075), + [4835] = {.count = 1, .reusable = true}, SHIFT(2076), + [4837] = {.count = 1, .reusable = false}, SHIFT(2077), + [4839] = {.count = 1, .reusable = true}, SHIFT(2077), + [4841] = {.count = 1, .reusable = false}, SHIFT(2078), + [4843] = {.count = 1, .reusable = true}, SHIFT(2078), + [4845] = {.count = 1, .reusable = true}, SHIFT(2079), + [4847] = {.count = 1, .reusable = true}, SHIFT(2080), + [4849] = {.count = 1, .reusable = true}, SHIFT(2081), + [4851] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 7), + [4853] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 7), + [4855] = {.count = 1, .reusable = true}, SHIFT(2083), + [4857] = {.count = 1, .reusable = true}, SHIFT(2084), + [4859] = {.count = 1, .reusable = true}, SHIFT(2085), + [4861] = {.count = 1, .reusable = true}, SHIFT(2086), + [4863] = {.count = 1, .reusable = false}, SHIFT(2087), + [4865] = {.count = 1, .reusable = true}, SHIFT(2087), + [4867] = {.count = 1, .reusable = false}, SHIFT(2088), + [4869] = {.count = 1, .reusable = true}, SHIFT(2088), + [4871] = {.count = 1, .reusable = true}, SHIFT(2089), + [4873] = {.count = 1, .reusable = true}, SHIFT(2090), + [4875] = {.count = 1, .reusable = true}, SHIFT(2091), + [4877] = {.count = 1, .reusable = true}, SHIFT(2092), + [4879] = {.count = 1, .reusable = true}, SHIFT(2093), + [4881] = {.count = 1, .reusable = true}, SHIFT(2094), + [4883] = {.count = 1, .reusable = false}, SHIFT(2095), + [4885] = {.count = 1, .reusable = true}, SHIFT(2096), + [4887] = {.count = 1, .reusable = true}, SHIFT(2098), + [4889] = {.count = 1, .reusable = true}, SHIFT(2099), + [4891] = {.count = 1, .reusable = false}, SHIFT(2100), + [4893] = {.count = 1, .reusable = true}, SHIFT(2100), + [4895] = {.count = 1, .reusable = true}, SHIFT(2101), + [4897] = {.count = 1, .reusable = false}, SHIFT(2102), + [4899] = {.count = 1, .reusable = true}, SHIFT(2102), + [4901] = {.count = 1, .reusable = true}, SHIFT(2103), + [4903] = {.count = 1, .reusable = false}, SHIFT(2104), + [4905] = {.count = 1, .reusable = true}, SHIFT(2104), + [4907] = {.count = 1, .reusable = true}, SHIFT(2105), + [4909] = {.count = 1, .reusable = false}, SHIFT(2106), + [4911] = {.count = 1, .reusable = true}, SHIFT(2106), + [4913] = {.count = 1, .reusable = false}, SHIFT(2107), + [4915] = {.count = 1, .reusable = true}, SHIFT(2107), + [4917] = {.count = 1, .reusable = true}, SHIFT(2108), + [4919] = {.count = 1, .reusable = false}, SHIFT(2109), + [4921] = {.count = 1, .reusable = true}, SHIFT(2109), + [4923] = {.count = 1, .reusable = true}, SHIFT(2110), + [4925] = {.count = 1, .reusable = true}, SHIFT(2111), + [4927] = {.count = 1, .reusable = true}, SHIFT(2112), + [4929] = {.count = 1, .reusable = false}, SHIFT(2113), + [4931] = {.count = 1, .reusable = true}, SHIFT(2113), + [4933] = {.count = 1, .reusable = false}, SHIFT(2114), + [4935] = {.count = 1, .reusable = true}, SHIFT(2114), + [4937] = {.count = 1, .reusable = true}, SHIFT(2115), + [4939] = {.count = 1, .reusable = true}, SHIFT(2116), + [4941] = {.count = 1, .reusable = true}, SHIFT(2117), + [4943] = {.count = 1, .reusable = true}, SHIFT(2118), + [4945] = {.count = 1, .reusable = true}, SHIFT(2119), + [4947] = {.count = 1, .reusable = false}, REDUCE(sym_elif_clause, 4), + [4949] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), + [4951] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), + [4953] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 2), + [4955] = {.count = 1, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), + [4957] = {.count = 1, .reusable = true}, SHIFT(2120), + [4959] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), + [4961] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [4963] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [4965] = {.count = 1, .reusable = true}, SHIFT(2121), + [4967] = {.count = 1, .reusable = true}, SHIFT(2122), + [4969] = {.count = 1, .reusable = true}, SHIFT(2123), + [4971] = {.count = 1, .reusable = false}, SHIFT(2124), + [4973] = {.count = 1, .reusable = true}, SHIFT(2125), + [4975] = {.count = 1, .reusable = true}, SHIFT(2126), + [4977] = {.count = 1, .reusable = true}, SHIFT(2127), + [4979] = {.count = 1, .reusable = true}, SHIFT(2128), + [4981] = {.count = 1, .reusable = true}, SHIFT(2129), + [4983] = {.count = 1, .reusable = false}, SHIFT(2131), + [4985] = {.count = 1, .reusable = false}, SHIFT(2125), + [4987] = {.count = 1, .reusable = true}, SHIFT(2132), + [4989] = {.count = 1, .reusable = true}, SHIFT(2133), + [4991] = {.count = 1, .reusable = false}, SHIFT(2134), + [4993] = {.count = 1, .reusable = true}, SHIFT(2135), + [4995] = {.count = 1, .reusable = true}, SHIFT(2136), + [4997] = {.count = 1, .reusable = true}, SHIFT(2137), + [4999] = {.count = 1, .reusable = true}, SHIFT(2138), + [5001] = {.count = 1, .reusable = true}, SHIFT(2139), + [5003] = {.count = 1, .reusable = false}, SHIFT(2140), + [5005] = {.count = 1, .reusable = false}, SHIFT(2135), + [5007] = {.count = 1, .reusable = true}, SHIFT(2141), + [5009] = {.count = 1, .reusable = false}, SHIFT(2143), + [5011] = {.count = 1, .reusable = false}, SHIFT(2144), + [5013] = {.count = 1, .reusable = true}, SHIFT(2146), + [5015] = {.count = 1, .reusable = true}, SHIFT(2147), + [5017] = {.count = 1, .reusable = false}, SHIFT(2148), + [5019] = {.count = 1, .reusable = true}, SHIFT(2148), + [5021] = {.count = 1, .reusable = true}, SHIFT(2149), + [5023] = {.count = 1, .reusable = true}, SHIFT(2150), + [5025] = {.count = 1, .reusable = true}, SHIFT(2151), + [5027] = {.count = 1, .reusable = false}, SHIFT(2152), + [5029] = {.count = 1, .reusable = true}, SHIFT(2152), + [5031] = {.count = 1, .reusable = true}, SHIFT(2162), + [5033] = {.count = 1, .reusable = false}, SHIFT(2163), + [5035] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), + [5037] = {.count = 1, .reusable = false}, SHIFT(2164), + [5039] = {.count = 1, .reusable = true}, SHIFT(2165), + [5041] = {.count = 1, .reusable = true}, SHIFT(2164), + [5043] = {.count = 1, .reusable = true}, SHIFT(2166), + [5045] = {.count = 1, .reusable = false}, SHIFT(2167), + [5047] = {.count = 1, .reusable = true}, SHIFT(2167), + [5049] = {.count = 1, .reusable = true}, SHIFT(2168), + [5051] = {.count = 1, .reusable = true}, SHIFT(2163), + [5053] = {.count = 1, .reusable = false}, SHIFT(2171), + [5055] = {.count = 1, .reusable = true}, SHIFT(2172), + [5057] = {.count = 1, .reusable = true}, SHIFT(2173), + [5059] = {.count = 1, .reusable = false}, SHIFT(2173), + [5061] = {.count = 1, .reusable = true}, SHIFT(2175), + [5063] = {.count = 1, .reusable = true}, SHIFT(1920), + [5065] = {.count = 2, .reusable = true}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1596), + [5068] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 3), + [5070] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 3), + [5072] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 3), + [5074] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 3), + [5076] = {.count = 1, .reusable = true}, SHIFT(2181), + [5078] = {.count = 1, .reusable = true}, SHIFT(2182), + [5080] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 2), + [5082] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 2), + [5084] = {.count = 1, .reusable = true}, SHIFT(2186), + [5086] = {.count = 1, .reusable = true}, SHIFT(2188), + [5088] = {.count = 1, .reusable = true}, SHIFT(2190), + [5090] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 7), + [5092] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 7), + [5094] = {.count = 1, .reusable = true}, SHIFT(2191), + [5096] = {.count = 1, .reusable = true}, SHIFT(2192), + [5098] = {.count = 1, .reusable = true}, SHIFT(2193), + [5100] = {.count = 1, .reusable = true}, SHIFT(2194), + [5102] = {.count = 1, .reusable = true}, SHIFT(2195), + [5104] = {.count = 1, .reusable = true}, SHIFT(2196), + [5106] = {.count = 1, .reusable = true}, SHIFT(2197), + [5108] = {.count = 1, .reusable = true}, SHIFT(2198), + [5110] = {.count = 1, .reusable = true}, SHIFT(2199), + [5112] = {.count = 1, .reusable = true}, SHIFT(2200), + [5114] = {.count = 1, .reusable = true}, SHIFT(2201), + [5116] = {.count = 1, .reusable = true}, SHIFT(2202), + [5118] = {.count = 1, .reusable = true}, SHIFT(2203), + [5120] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 4), + [5122] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), + [5124] = {.count = 1, .reusable = true}, SHIFT(2204), + [5126] = {.count = 1, .reusable = true}, SHIFT(2205), + [5128] = {.count = 1, .reusable = false}, SHIFT(2206), + [5130] = {.count = 1, .reusable = true}, SHIFT(2207), + [5132] = {.count = 1, .reusable = true}, SHIFT(2209), + [5134] = {.count = 1, .reusable = true}, SHIFT(2210), + [5136] = {.count = 1, .reusable = false}, SHIFT(2211), + [5138] = {.count = 1, .reusable = true}, SHIFT(2211), + [5140] = {.count = 1, .reusable = true}, SHIFT(2212), + [5142] = {.count = 1, .reusable = false}, SHIFT(2213), + [5144] = {.count = 1, .reusable = true}, SHIFT(2213), + [5146] = {.count = 1, .reusable = true}, SHIFT(2214), + [5148] = {.count = 1, .reusable = false}, SHIFT(2215), + [5150] = {.count = 1, .reusable = true}, SHIFT(2215), + [5152] = {.count = 1, .reusable = true}, SHIFT(2216), + [5154] = {.count = 1, .reusable = false}, SHIFT(2217), + [5156] = {.count = 1, .reusable = true}, SHIFT(2217), + [5158] = {.count = 1, .reusable = false}, SHIFT(2218), + [5160] = {.count = 1, .reusable = true}, SHIFT(2218), + [5162] = {.count = 1, .reusable = true}, SHIFT(2219), + [5164] = {.count = 1, .reusable = false}, SHIFT(2220), + [5166] = {.count = 1, .reusable = true}, SHIFT(2220), + [5168] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 5), + [5170] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 5), + [5172] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7), + [5174] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7), + [5176] = {.count = 1, .reusable = true}, SHIFT(2221), + [5178] = {.count = 1, .reusable = true}, SHIFT(2222), + [5180] = {.count = 1, .reusable = true}, SHIFT(2223), + [5182] = {.count = 1, .reusable = false}, SHIFT(2224), + [5184] = {.count = 1, .reusable = true}, SHIFT(2224), + [5186] = {.count = 1, .reusable = false}, SHIFT(2225), + [5188] = {.count = 1, .reusable = true}, SHIFT(2225), + [5190] = {.count = 1, .reusable = true}, SHIFT(2226), + [5192] = {.count = 1, .reusable = true}, SHIFT(2227), + [5194] = {.count = 1, .reusable = true}, SHIFT(2228), + [5196] = {.count = 1, .reusable = true}, SHIFT(2229), + [5198] = {.count = 1, .reusable = true}, SHIFT(2230), + [5200] = {.count = 1, .reusable = true}, SHIFT(2231), + [5202] = {.count = 1, .reusable = false}, SHIFT(2232), + [5204] = {.count = 1, .reusable = true}, SHIFT(2232), + [5206] = {.count = 1, .reusable = false}, SHIFT(2233), + [5208] = {.count = 1, .reusable = true}, SHIFT(2233), + [5210] = {.count = 1, .reusable = true}, SHIFT(2234), + [5212] = {.count = 1, .reusable = true}, SHIFT(2235), + [5214] = {.count = 1, .reusable = true}, SHIFT(2236), + [5216] = {.count = 1, .reusable = true}, SHIFT(2237), + [5218] = {.count = 1, .reusable = false}, SHIFT(2238), + [5220] = {.count = 1, .reusable = true}, SHIFT(2238), + [5222] = {.count = 1, .reusable = false}, SHIFT(2239), + [5224] = {.count = 1, .reusable = true}, SHIFT(2239), + [5226] = {.count = 1, .reusable = true}, SHIFT(2240), + [5228] = {.count = 1, .reusable = true}, SHIFT(2241), + [5230] = {.count = 1, .reusable = true}, SHIFT(2242), + [5232] = {.count = 1, .reusable = true}, SHIFT(2243), + [5234] = {.count = 1, .reusable = true}, SHIFT(2244), + [5236] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 8), + [5238] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 8), + [5240] = {.count = 1, .reusable = true}, SHIFT(2246), + [5242] = {.count = 1, .reusable = true}, SHIFT(2247), + [5244] = {.count = 1, .reusable = true}, SHIFT(2248), + [5246] = {.count = 1, .reusable = true}, SHIFT(2249), + [5248] = {.count = 1, .reusable = true}, SHIFT(2250), + [5250] = {.count = 1, .reusable = true}, SHIFT(2251), + [5252] = {.count = 1, .reusable = false}, SHIFT(2252), + [5254] = {.count = 1, .reusable = true}, SHIFT(2252), + [5256] = {.count = 1, .reusable = false}, SHIFT(2253), + [5258] = {.count = 1, .reusable = true}, SHIFT(2253), + [5260] = {.count = 1, .reusable = true}, SHIFT(2254), + [5262] = {.count = 1, .reusable = true}, SHIFT(2255), + [5264] = {.count = 1, .reusable = true}, SHIFT(2256), + [5266] = {.count = 1, .reusable = true}, SHIFT(2257), + [5268] = {.count = 1, .reusable = true}, SHIFT(2258), + [5270] = {.count = 1, .reusable = true}, SHIFT(2259), + [5272] = {.count = 1, .reusable = true}, SHIFT(2260), + [5274] = {.count = 1, .reusable = true}, SHIFT(2261), + [5276] = {.count = 1, .reusable = true}, SHIFT(2262), + [5278] = {.count = 1, .reusable = false}, SHIFT(2263), + [5280] = {.count = 1, .reusable = true}, SHIFT(2264), + [5282] = {.count = 1, .reusable = true}, SHIFT(2265), + [5284] = {.count = 1, .reusable = true}, SHIFT(2266), + [5286] = {.count = 1, .reusable = true}, SHIFT(2267), + [5288] = {.count = 1, .reusable = true}, SHIFT(2268), + [5290] = {.count = 1, .reusable = true}, SHIFT(2269), + [5292] = {.count = 1, .reusable = true}, SHIFT(2270), + [5294] = {.count = 1, .reusable = false}, SHIFT(2272), + [5296] = {.count = 1, .reusable = false}, SHIFT(2273), + [5298] = {.count = 1, .reusable = true}, SHIFT(2275), + [5300] = {.count = 1, .reusable = true}, SHIFT(2276), + [5302] = {.count = 1, .reusable = false}, SHIFT(2277), + [5304] = {.count = 1, .reusable = true}, SHIFT(2277), + [5306] = {.count = 1, .reusable = true}, SHIFT(2278), + [5308] = {.count = 1, .reusable = true}, SHIFT(2279), + [5310] = {.count = 1, .reusable = true}, SHIFT(2280), + [5312] = {.count = 1, .reusable = false}, SHIFT(2281), + [5314] = {.count = 1, .reusable = true}, SHIFT(2281), + [5316] = {.count = 1, .reusable = false}, SHIFT(2291), + [5318] = {.count = 1, .reusable = true}, SHIFT(2292), + [5320] = {.count = 1, .reusable = false}, SHIFT(2294), + [5322] = {.count = 1, .reusable = false}, SHIFT(2295), + [5324] = {.count = 1, .reusable = true}, SHIFT(2297), + [5326] = {.count = 1, .reusable = true}, SHIFT(2298), + [5328] = {.count = 1, .reusable = false}, SHIFT(2299), + [5330] = {.count = 1, .reusable = true}, SHIFT(2299), + [5332] = {.count = 1, .reusable = true}, SHIFT(2300), + [5334] = {.count = 1, .reusable = true}, SHIFT(2301), + [5336] = {.count = 1, .reusable = true}, SHIFT(2302), + [5338] = {.count = 1, .reusable = false}, SHIFT(2303), + [5340] = {.count = 1, .reusable = true}, SHIFT(2303), + [5342] = {.count = 1, .reusable = false}, SHIFT(2313), + [5344] = {.count = 1, .reusable = true}, SHIFT(2314), + [5346] = {.count = 1, .reusable = false}, SHIFT(2316), + [5348] = {.count = 1, .reusable = false}, SHIFT(2317), + [5350] = {.count = 1, .reusable = true}, SHIFT(2318), + [5352] = {.count = 1, .reusable = true}, SHIFT(2319), + [5354] = {.count = 1, .reusable = true}, SHIFT(2320), + [5356] = {.count = 1, .reusable = false}, SHIFT(2321), + [5358] = {.count = 1, .reusable = true}, SHIFT(2321), + [5360] = {.count = 1, .reusable = true}, SHIFT(2322), + [5362] = {.count = 1, .reusable = false}, SHIFT(2324), + [5364] = {.count = 1, .reusable = true}, SHIFT(2324), + [5366] = {.count = 1, .reusable = true}, SHIFT(2323), + [5368] = {.count = 1, .reusable = true}, SHIFT(2325), + [5370] = {.count = 1, .reusable = false}, SHIFT(2327), + [5372] = {.count = 1, .reusable = true}, SHIFT(2327), + [5374] = {.count = 1, .reusable = true}, SHIFT(2326), + [5376] = {.count = 1, .reusable = false}, SHIFT(2328), + [5378] = {.count = 1, .reusable = true}, SHIFT(2329), + [5380] = {.count = 1, .reusable = true}, SHIFT(2328), + [5382] = {.count = 1, .reusable = false}, SHIFT(2333), + [5384] = {.count = 1, .reusable = true}, SHIFT(2333), + [5386] = {.count = 1, .reusable = false}, SHIFT(2337), + [5388] = {.count = 1, .reusable = true}, SHIFT(2338), + [5390] = {.count = 1, .reusable = true}, SHIFT(2337), + [5392] = {.count = 1, .reusable = false}, SHIFT(2342), + [5394] = {.count = 1, .reusable = true}, SHIFT(2342), + [5396] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), + [5398] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [5400] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [5402] = {.count = 1, .reusable = true}, SHIFT(2347), + [5404] = {.count = 1, .reusable = true}, SHIFT(2348), + [5406] = {.count = 1, .reusable = false}, SHIFT(2349), + [5408] = {.count = 1, .reusable = true}, SHIFT(2350), + [5410] = {.count = 1, .reusable = true}, SHIFT(2351), + [5412] = {.count = 1, .reusable = true}, SHIFT(2352), + [5414] = {.count = 1, .reusable = true}, SHIFT(2353), + [5416] = {.count = 1, .reusable = true}, SHIFT(2354), + [5418] = {.count = 1, .reusable = true}, SHIFT(2355), + [5420] = {.count = 1, .reusable = true}, SHIFT(2356), + [5422] = {.count = 1, .reusable = false}, SHIFT(2357), + [5424] = {.count = 1, .reusable = true}, SHIFT(2357), + [5426] = {.count = 1, .reusable = true}, SHIFT(2359), + [5428] = {.count = 1, .reusable = true}, SHIFT(2360), + [5430] = {.count = 1, .reusable = true}, SHIFT(2361), + [5432] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), + [5434] = {.count = 1, .reusable = true}, SHIFT(2363), + [5436] = {.count = 1, .reusable = true}, SHIFT(2367), + [5438] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4), + [5440] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4), + [5442] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 4), + [5444] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 4), + [5446] = {.count = 1, .reusable = true}, SHIFT(2370), + [5448] = {.count = 1, .reusable = true}, SHIFT(2371), + [5450] = {.count = 1, .reusable = true}, SHIFT(2374), + [5452] = {.count = 1, .reusable = true}, SHIFT(2378), + [5454] = {.count = 1, .reusable = true}, SHIFT(2379), + [5456] = {.count = 1, .reusable = true}, SHIFT(2383), + [5458] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 2), + [5460] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 2), + [5462] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8), + [5464] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 8), + [5466] = {.count = 1, .reusable = true}, SHIFT(2384), + [5468] = {.count = 1, .reusable = true}, SHIFT(2385), + [5470] = {.count = 1, .reusable = true}, SHIFT(2386), + [5472] = {.count = 1, .reusable = false}, SHIFT(2387), + [5474] = {.count = 1, .reusable = true}, SHIFT(2387), + [5476] = {.count = 1, .reusable = false}, SHIFT(2388), + [5478] = {.count = 1, .reusable = true}, SHIFT(2388), + [5480] = {.count = 1, .reusable = true}, SHIFT(2389), + [5482] = {.count = 1, .reusable = true}, SHIFT(2390), + [5484] = {.count = 1, .reusable = true}, SHIFT(2391), + [5486] = {.count = 1, .reusable = true}, SHIFT(2392), + [5488] = {.count = 1, .reusable = true}, SHIFT(2393), + [5490] = {.count = 1, .reusable = true}, SHIFT(2394), + [5492] = {.count = 1, .reusable = true}, SHIFT(2395), + [5494] = {.count = 1, .reusable = true}, SHIFT(2396), + [5496] = {.count = 1, .reusable = true}, SHIFT(2397), + [5498] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 9), + [5500] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 9), + [5502] = {.count = 1, .reusable = true}, SHIFT(2399), + [5504] = {.count = 1, .reusable = true}, SHIFT(2400), + [5506] = {.count = 1, .reusable = true}, SHIFT(2401), + [5508] = {.count = 1, .reusable = true}, SHIFT(2403), + [5510] = {.count = 1, .reusable = false}, SHIFT(2405), + [5512] = {.count = 1, .reusable = false}, SHIFT(2406), + [5514] = {.count = 1, .reusable = true}, SHIFT(2408), + [5516] = {.count = 1, .reusable = true}, SHIFT(2409), + [5518] = {.count = 1, .reusable = false}, SHIFT(2410), + [5520] = {.count = 1, .reusable = true}, SHIFT(2410), + [5522] = {.count = 1, .reusable = true}, SHIFT(2411), + [5524] = {.count = 1, .reusable = true}, SHIFT(2412), + [5526] = {.count = 1, .reusable = true}, SHIFT(2413), + [5528] = {.count = 1, .reusable = false}, SHIFT(2414), + [5530] = {.count = 1, .reusable = true}, SHIFT(2414), + [5532] = {.count = 1, .reusable = true}, SHIFT(2424), + [5534] = {.count = 1, .reusable = true}, SHIFT(2425), + [5536] = {.count = 1, .reusable = true}, SHIFT(2426), + [5538] = {.count = 1, .reusable = true}, SHIFT(2427), + [5540] = {.count = 1, .reusable = true}, SHIFT(2428), + [5542] = {.count = 1, .reusable = false}, SHIFT(2430), + [5544] = {.count = 1, .reusable = false}, SHIFT(2431), + [5546] = {.count = 1, .reusable = true}, SHIFT(2432), + [5548] = {.count = 1, .reusable = true}, SHIFT(2433), + [5550] = {.count = 1, .reusable = true}, SHIFT(2434), + [5552] = {.count = 1, .reusable = false}, SHIFT(2435), + [5554] = {.count = 1, .reusable = true}, SHIFT(2435), + [5556] = {.count = 1, .reusable = true}, SHIFT(2436), + [5558] = {.count = 1, .reusable = false}, SHIFT(2438), + [5560] = {.count = 1, .reusable = true}, SHIFT(2438), + [5562] = {.count = 1, .reusable = true}, SHIFT(2437), + [5564] = {.count = 1, .reusable = true}, SHIFT(2439), + [5566] = {.count = 1, .reusable = false}, SHIFT(2441), + [5568] = {.count = 1, .reusable = true}, SHIFT(2441), + [5570] = {.count = 1, .reusable = true}, SHIFT(2440), + [5572] = {.count = 1, .reusable = false}, SHIFT(2442), + [5574] = {.count = 1, .reusable = true}, SHIFT(2443), + [5576] = {.count = 1, .reusable = true}, SHIFT(2442), + [5578] = {.count = 1, .reusable = false}, SHIFT(2447), + [5580] = {.count = 1, .reusable = true}, SHIFT(2447), + [5582] = {.count = 1, .reusable = false}, SHIFT(2451), + [5584] = {.count = 1, .reusable = true}, SHIFT(2452), + [5586] = {.count = 1, .reusable = true}, SHIFT(2451), + [5588] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2121), + [5591] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2122), + [5594] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2123), + [5597] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2124), + [5600] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2125), + [5603] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2126), + [5606] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2127), + [5609] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2128), + [5612] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2129), + [5615] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2291), + [5618] = {.count = 2, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2125), + [5621] = {.count = 1, .reusable = true}, SHIFT(2456), + [5623] = {.count = 1, .reusable = false}, SHIFT(2458), + [5625] = {.count = 1, .reusable = false}, SHIFT(2459), + [5627] = {.count = 1, .reusable = true}, SHIFT(2460), + [5629] = {.count = 1, .reusable = true}, SHIFT(2461), + [5631] = {.count = 1, .reusable = true}, SHIFT(2462), + [5633] = {.count = 1, .reusable = false}, SHIFT(2463), + [5635] = {.count = 1, .reusable = true}, SHIFT(2463), + [5637] = {.count = 1, .reusable = true}, SHIFT(2464), + [5639] = {.count = 1, .reusable = false}, SHIFT(2466), + [5641] = {.count = 1, .reusable = true}, SHIFT(2466), + [5643] = {.count = 1, .reusable = true}, SHIFT(2465), + [5645] = {.count = 1, .reusable = true}, SHIFT(2467), + [5647] = {.count = 1, .reusable = false}, SHIFT(2469), + [5649] = {.count = 1, .reusable = true}, SHIFT(2469), + [5651] = {.count = 1, .reusable = true}, SHIFT(2468), + [5653] = {.count = 1, .reusable = false}, SHIFT(2470), + [5655] = {.count = 1, .reusable = true}, SHIFT(2471), + [5657] = {.count = 1, .reusable = true}, SHIFT(2470), + [5659] = {.count = 1, .reusable = false}, SHIFT(2475), + [5661] = {.count = 1, .reusable = true}, SHIFT(2475), + [5663] = {.count = 1, .reusable = false}, SHIFT(2479), + [5665] = {.count = 1, .reusable = true}, SHIFT(2480), + [5667] = {.count = 1, .reusable = true}, SHIFT(2479), + [5669] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2132), + [5672] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2133), + [5675] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2134), + [5678] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2135), + [5681] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2136), + [5684] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2137), + [5687] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2138), + [5690] = {.count = 2, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2139), + [5693] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2313), + [5696] = {.count = 2, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2135), + [5699] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2141), + [5702] = {.count = 1, .reusable = false}, SHIFT(2484), + [5704] = {.count = 1, .reusable = true}, SHIFT(2485), + [5706] = {.count = 1, .reusable = false}, SHIFT(2486), + [5708] = {.count = 1, .reusable = true}, SHIFT(2487), + [5710] = {.count = 1, .reusable = true}, SHIFT(2489), + [5712] = {.count = 1, .reusable = true}, SHIFT(2490), + [5714] = {.count = 1, .reusable = false}, SHIFT(2492), + [5716] = {.count = 1, .reusable = true}, SHIFT(2492), + [5718] = {.count = 1, .reusable = true}, SHIFT(2491), + [5720] = {.count = 1, .reusable = false}, SHIFT(2494), + [5722] = {.count = 1, .reusable = true}, SHIFT(2494), + [5724] = {.count = 1, .reusable = true}, SHIFT(2493), + [5726] = {.count = 1, .reusable = true}, SHIFT(2495), + [5728] = {.count = 1, .reusable = true}, SHIFT(2496), + [5730] = {.count = 1, .reusable = false}, SHIFT(2497), + [5732] = {.count = 1, .reusable = true}, SHIFT(2497), + [5734] = {.count = 1, .reusable = true}, SHIFT(2498), + [5736] = {.count = 1, .reusable = true}, SHIFT(2499), + [5738] = {.count = 1, .reusable = false}, SHIFT(2500), + [5740] = {.count = 1, .reusable = true}, SHIFT(2500), + [5742] = {.count = 1, .reusable = false}, SHIFT(2501), + [5744] = {.count = 1, .reusable = true}, SHIFT(2501), + [5746] = {.count = 1, .reusable = false}, SHIFT(2503), + [5748] = {.count = 1, .reusable = true}, SHIFT(2503), + [5750] = {.count = 1, .reusable = false}, SHIFT(2504), + [5752] = {.count = 1, .reusable = true}, SHIFT(2504), + [5754] = {.count = 1, .reusable = true}, SHIFT(2506), + [5756] = {.count = 1, .reusable = false}, SHIFT(2507), + [5758] = {.count = 1, .reusable = true}, SHIFT(2507), + [5760] = {.count = 1, .reusable = false}, SHIFT(2508), + [5762] = {.count = 1, .reusable = true}, SHIFT(2508), + [5764] = {.count = 1, .reusable = true}, SHIFT(2510), + [5766] = {.count = 1, .reusable = true}, SHIFT(2511), + [5768] = {.count = 1, .reusable = true}, SHIFT(2512), + [5770] = {.count = 1, .reusable = false}, SHIFT(2514), + [5772] = {.count = 1, .reusable = false}, SHIFT(2515), + [5774] = {.count = 1, .reusable = true}, SHIFT(2517), + [5776] = {.count = 1, .reusable = true}, SHIFT(2518), + [5778] = {.count = 1, .reusable = false}, SHIFT(2519), + [5780] = {.count = 1, .reusable = true}, SHIFT(2519), + [5782] = {.count = 1, .reusable = true}, SHIFT(2520), + [5784] = {.count = 1, .reusable = true}, SHIFT(2521), + [5786] = {.count = 1, .reusable = true}, SHIFT(2522), + [5788] = {.count = 1, .reusable = false}, SHIFT(2523), + [5790] = {.count = 1, .reusable = true}, SHIFT(2523), + [5792] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2162), + [5795] = {.count = 2, .reusable = false}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2167), + [5798] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2167), + [5801] = {.count = 2, .reusable = true}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2168), + [5804] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2171), + [5807] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2172), + [5810] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1921), + [5813] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1922), + [5816] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2173), + [5819] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1924), + [5822] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1925), + [5825] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1926), + [5828] = {.count = 2, .reusable = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(1927), + [5831] = {.count = 2, .reusable = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2173), + [5834] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), + [5836] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [5838] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [5840] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), + [5842] = {.count = 1, .reusable = true}, SHIFT(2533), + [5844] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 5), + [5846] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 5), + [5848] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 5), + [5850] = {.count = 1, .reusable = true}, REDUCE(sym_last_case_item, 5), + [5852] = {.count = 1, .reusable = true}, SHIFT(2534), + [5854] = {.count = 1, .reusable = true}, SHIFT(2535), + [5856] = {.count = 1, .reusable = true}, SHIFT(2536), + [5858] = {.count = 1, .reusable = true}, SHIFT(2541), + [5860] = {.count = 1, .reusable = true}, SHIFT(2542), + [5862] = {.count = 1, .reusable = true}, SHIFT(2546), + [5864] = {.count = 1, .reusable = true}, SHIFT(2547), + [5866] = {.count = 1, .reusable = true}, REDUCE(sym_c_style_for_statement, 10), + [5868] = {.count = 1, .reusable = false}, REDUCE(sym_c_style_for_statement, 10), + [5870] = {.count = 1, .reusable = true}, SHIFT(2548), + [5872] = {.count = 1, .reusable = true}, SHIFT(2549), + [5874] = {.count = 1, .reusable = false}, SHIFT(2551), + [5876] = {.count = 1, .reusable = false}, SHIFT(2552), + [5878] = {.count = 1, .reusable = true}, SHIFT(2553), + [5880] = {.count = 1, .reusable = true}, SHIFT(2554), + [5882] = {.count = 1, .reusable = true}, SHIFT(2555), + [5884] = {.count = 1, .reusable = false}, SHIFT(2556), + [5886] = {.count = 1, .reusable = true}, SHIFT(2556), + [5888] = {.count = 1, .reusable = true}, SHIFT(2557), + [5890] = {.count = 1, .reusable = false}, SHIFT(2559), + [5892] = {.count = 1, .reusable = true}, SHIFT(2559), + [5894] = {.count = 1, .reusable = true}, SHIFT(2558), + [5896] = {.count = 1, .reusable = true}, SHIFT(2560), + [5898] = {.count = 1, .reusable = false}, SHIFT(2562), + [5900] = {.count = 1, .reusable = true}, SHIFT(2562), + [5902] = {.count = 1, .reusable = true}, SHIFT(2561), + [5904] = {.count = 1, .reusable = false}, SHIFT(2563), + [5906] = {.count = 1, .reusable = true}, SHIFT(2564), + [5908] = {.count = 1, .reusable = true}, SHIFT(2563), + [5910] = {.count = 1, .reusable = false}, SHIFT(2568), + [5912] = {.count = 1, .reusable = true}, SHIFT(2568), + [5914] = {.count = 1, .reusable = false}, SHIFT(2572), + [5916] = {.count = 1, .reusable = true}, SHIFT(2573), + [5918] = {.count = 1, .reusable = true}, SHIFT(2572), + [5920] = {.count = 1, .reusable = true}, SHIFT(2577), + [5922] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2270), + [5925] = {.count = 1, .reusable = false}, SHIFT(2579), + [5927] = {.count = 1, .reusable = true}, SHIFT(2580), + [5929] = {.count = 1, .reusable = false}, SHIFT(2581), + [5931] = {.count = 1, .reusable = true}, SHIFT(2582), + [5933] = {.count = 1, .reusable = true}, SHIFT(2584), + [5935] = {.count = 1, .reusable = true}, SHIFT(2585), + [5937] = {.count = 1, .reusable = false}, SHIFT(2587), + [5939] = {.count = 1, .reusable = true}, SHIFT(2587), + [5941] = {.count = 1, .reusable = true}, SHIFT(2586), + [5943] = {.count = 1, .reusable = false}, SHIFT(2589), + [5945] = {.count = 1, .reusable = true}, SHIFT(2589), + [5947] = {.count = 1, .reusable = true}, SHIFT(2588), + [5949] = {.count = 1, .reusable = true}, SHIFT(2590), + [5951] = {.count = 1, .reusable = true}, SHIFT(2591), + [5953] = {.count = 1, .reusable = false}, SHIFT(2592), + [5955] = {.count = 1, .reusable = true}, SHIFT(2592), + [5957] = {.count = 1, .reusable = true}, SHIFT(2593), + [5959] = {.count = 1, .reusable = true}, SHIFT(2594), + [5961] = {.count = 1, .reusable = false}, SHIFT(2595), + [5963] = {.count = 1, .reusable = true}, SHIFT(2595), + [5965] = {.count = 1, .reusable = false}, SHIFT(2596), + [5967] = {.count = 1, .reusable = true}, SHIFT(2596), + [5969] = {.count = 1, .reusable = false}, SHIFT(2598), + [5971] = {.count = 1, .reusable = true}, SHIFT(2598), + [5973] = {.count = 1, .reusable = false}, SHIFT(2599), + [5975] = {.count = 1, .reusable = true}, SHIFT(2599), + [5977] = {.count = 1, .reusable = true}, SHIFT(2601), + [5979] = {.count = 1, .reusable = false}, SHIFT(2602), + [5981] = {.count = 1, .reusable = true}, SHIFT(2602), + [5983] = {.count = 1, .reusable = false}, SHIFT(2603), + [5985] = {.count = 1, .reusable = true}, SHIFT(2603), + [5987] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2292), + [5990] = {.count = 1, .reusable = false}, SHIFT(2605), + [5992] = {.count = 1, .reusable = true}, SHIFT(2606), + [5994] = {.count = 1, .reusable = false}, SHIFT(2607), + [5996] = {.count = 1, .reusable = true}, SHIFT(2608), + [5998] = {.count = 1, .reusable = true}, SHIFT(2610), + [6000] = {.count = 1, .reusable = true}, SHIFT(2611), + [6002] = {.count = 1, .reusable = false}, SHIFT(2613), + [6004] = {.count = 1, .reusable = true}, SHIFT(2613), + [6006] = {.count = 1, .reusable = true}, SHIFT(2612), + [6008] = {.count = 1, .reusable = false}, SHIFT(2615), + [6010] = {.count = 1, .reusable = true}, SHIFT(2615), + [6012] = {.count = 1, .reusable = true}, SHIFT(2614), + [6014] = {.count = 1, .reusable = true}, SHIFT(2616), + [6016] = {.count = 1, .reusable = true}, SHIFT(2617), + [6018] = {.count = 1, .reusable = false}, SHIFT(2618), + [6020] = {.count = 1, .reusable = true}, SHIFT(2618), + [6022] = {.count = 1, .reusable = true}, SHIFT(2619), + [6024] = {.count = 1, .reusable = true}, SHIFT(2620), + [6026] = {.count = 1, .reusable = false}, SHIFT(2621), + [6028] = {.count = 1, .reusable = true}, SHIFT(2621), + [6030] = {.count = 1, .reusable = false}, SHIFT(2622), + [6032] = {.count = 1, .reusable = true}, SHIFT(2622), + [6034] = {.count = 1, .reusable = false}, SHIFT(2624), + [6036] = {.count = 1, .reusable = true}, SHIFT(2624), + [6038] = {.count = 1, .reusable = false}, SHIFT(2625), + [6040] = {.count = 1, .reusable = true}, SHIFT(2625), + [6042] = {.count = 1, .reusable = true}, SHIFT(2627), + [6044] = {.count = 1, .reusable = false}, SHIFT(2628), + [6046] = {.count = 1, .reusable = true}, SHIFT(2628), + [6048] = {.count = 1, .reusable = false}, SHIFT(2629), + [6050] = {.count = 1, .reusable = true}, SHIFT(2629), + [6052] = {.count = 1, .reusable = true}, SHIFT(2631), + [6054] = {.count = 1, .reusable = true}, SHIFT(2632), + [6056] = {.count = 1, .reusable = false}, SHIFT(2633), + [6058] = {.count = 1, .reusable = true}, SHIFT(2634), + [6060] = {.count = 1, .reusable = true}, SHIFT(2636), + [6062] = {.count = 1, .reusable = true}, SHIFT(2637), + [6064] = {.count = 1, .reusable = false}, SHIFT(2638), + [6066] = {.count = 1, .reusable = true}, SHIFT(2638), + [6068] = {.count = 1, .reusable = true}, SHIFT(2639), + [6070] = {.count = 1, .reusable = false}, SHIFT(2640), + [6072] = {.count = 1, .reusable = true}, SHIFT(2640), + [6074] = {.count = 1, .reusable = true}, SHIFT(2641), + [6076] = {.count = 1, .reusable = false}, SHIFT(2642), + [6078] = {.count = 1, .reusable = true}, SHIFT(2642), + [6080] = {.count = 1, .reusable = true}, SHIFT(2643), + [6082] = {.count = 1, .reusable = false}, SHIFT(2644), + [6084] = {.count = 1, .reusable = true}, SHIFT(2644), + [6086] = {.count = 1, .reusable = false}, SHIFT(2645), + [6088] = {.count = 1, .reusable = true}, SHIFT(2645), + [6090] = {.count = 1, .reusable = true}, SHIFT(2646), + [6092] = {.count = 1, .reusable = false}, SHIFT(2647), + [6094] = {.count = 1, .reusable = true}, SHIFT(2647), + [6096] = {.count = 1, .reusable = true}, SHIFT(2648), + [6098] = {.count = 1, .reusable = false}, SHIFT(2650), + [6100] = {.count = 1, .reusable = false}, SHIFT(2651), + [6102] = {.count = 1, .reusable = true}, SHIFT(2652), + [6104] = {.count = 1, .reusable = true}, SHIFT(2653), + [6106] = {.count = 1, .reusable = true}, SHIFT(2654), + [6108] = {.count = 1, .reusable = false}, SHIFT(2655), + [6110] = {.count = 1, .reusable = true}, SHIFT(2655), + [6112] = {.count = 1, .reusable = true}, SHIFT(2656), + [6114] = {.count = 1, .reusable = false}, SHIFT(2658), + [6116] = {.count = 1, .reusable = true}, SHIFT(2658), + [6118] = {.count = 1, .reusable = true}, SHIFT(2657), + [6120] = {.count = 1, .reusable = true}, SHIFT(2659), + [6122] = {.count = 1, .reusable = false}, SHIFT(2661), + [6124] = {.count = 1, .reusable = true}, SHIFT(2661), + [6126] = {.count = 1, .reusable = true}, SHIFT(2660), + [6128] = {.count = 1, .reusable = false}, SHIFT(2662), + [6130] = {.count = 1, .reusable = true}, SHIFT(2663), + [6132] = {.count = 1, .reusable = true}, SHIFT(2662), + [6134] = {.count = 1, .reusable = false}, SHIFT(2667), + [6136] = {.count = 1, .reusable = true}, SHIFT(2667), + [6138] = {.count = 1, .reusable = false}, SHIFT(2671), + [6140] = {.count = 1, .reusable = true}, SHIFT(2672), + [6142] = {.count = 1, .reusable = true}, SHIFT(2671), + [6144] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6, .alias_sequence_id = 1), + [6146] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), + [6148] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), + [6150] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 6), + [6152] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 6), + [6154] = {.count = 1, .reusable = true}, REDUCE(sym_case_item, 6), + [6156] = {.count = 1, .reusable = true}, SHIFT(2676), + [6158] = {.count = 1, .reusable = true}, SHIFT(2677), + [6160] = {.count = 1, .reusable = true}, SHIFT(2680), + [6162] = {.count = 1, .reusable = true}, SHIFT(2681), + [6164] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2403), + [6167] = {.count = 1, .reusable = false}, SHIFT(2684), + [6169] = {.count = 1, .reusable = true}, SHIFT(2685), + [6171] = {.count = 1, .reusable = false}, SHIFT(2686), + [6173] = {.count = 1, .reusable = true}, SHIFT(2687), + [6175] = {.count = 1, .reusable = true}, SHIFT(2689), + [6177] = {.count = 1, .reusable = true}, SHIFT(2690), + [6179] = {.count = 1, .reusable = false}, SHIFT(2692), + [6181] = {.count = 1, .reusable = true}, SHIFT(2692), + [6183] = {.count = 1, .reusable = true}, SHIFT(2691), + [6185] = {.count = 1, .reusable = false}, SHIFT(2694), + [6187] = {.count = 1, .reusable = true}, SHIFT(2694), + [6189] = {.count = 1, .reusable = true}, SHIFT(2693), + [6191] = {.count = 1, .reusable = true}, SHIFT(2695), + [6193] = {.count = 1, .reusable = true}, SHIFT(2696), + [6195] = {.count = 1, .reusable = false}, SHIFT(2697), + [6197] = {.count = 1, .reusable = true}, SHIFT(2697), + [6199] = {.count = 1, .reusable = true}, SHIFT(2698), + [6201] = {.count = 1, .reusable = true}, SHIFT(2699), + [6203] = {.count = 1, .reusable = false}, SHIFT(2700), + [6205] = {.count = 1, .reusable = true}, SHIFT(2700), + [6207] = {.count = 1, .reusable = false}, SHIFT(2701), + [6209] = {.count = 1, .reusable = true}, SHIFT(2701), + [6211] = {.count = 1, .reusable = false}, SHIFT(2703), + [6213] = {.count = 1, .reusable = true}, SHIFT(2703), + [6215] = {.count = 1, .reusable = false}, SHIFT(2704), + [6217] = {.count = 1, .reusable = true}, SHIFT(2704), + [6219] = {.count = 1, .reusable = true}, SHIFT(2706), + [6221] = {.count = 1, .reusable = false}, SHIFT(2707), + [6223] = {.count = 1, .reusable = true}, SHIFT(2707), + [6225] = {.count = 1, .reusable = false}, SHIFT(2708), + [6227] = {.count = 1, .reusable = true}, SHIFT(2708), + [6229] = {.count = 1, .reusable = true}, SHIFT(2710), + [6231] = {.count = 1, .reusable = true}, SHIFT(2711), + [6233] = {.count = 1, .reusable = true}, SHIFT(2712), + [6235] = {.count = 1, .reusable = false}, SHIFT(2713), + [6237] = {.count = 1, .reusable = true}, SHIFT(2714), + [6239] = {.count = 1, .reusable = true}, SHIFT(2716), + [6241] = {.count = 1, .reusable = true}, SHIFT(2717), + [6243] = {.count = 1, .reusable = false}, SHIFT(2718), + [6245] = {.count = 1, .reusable = true}, SHIFT(2718), + [6247] = {.count = 1, .reusable = true}, SHIFT(2719), + [6249] = {.count = 1, .reusable = false}, SHIFT(2720), + [6251] = {.count = 1, .reusable = true}, SHIFT(2720), + [6253] = {.count = 1, .reusable = true}, SHIFT(2721), + [6255] = {.count = 1, .reusable = false}, SHIFT(2722), + [6257] = {.count = 1, .reusable = true}, SHIFT(2722), + [6259] = {.count = 1, .reusable = true}, SHIFT(2723), + [6261] = {.count = 1, .reusable = false}, SHIFT(2724), + [6263] = {.count = 1, .reusable = true}, SHIFT(2724), + [6265] = {.count = 1, .reusable = false}, SHIFT(2725), + [6267] = {.count = 1, .reusable = true}, SHIFT(2725), + [6269] = {.count = 1, .reusable = true}, SHIFT(2726), + [6271] = {.count = 1, .reusable = false}, SHIFT(2727), + [6273] = {.count = 1, .reusable = true}, SHIFT(2727), + [6275] = {.count = 1, .reusable = true}, SHIFT(2728), + [6277] = {.count = 1, .reusable = true}, SHIFT(2729), + [6279] = {.count = 1, .reusable = false}, SHIFT(2730), + [6281] = {.count = 1, .reusable = true}, SHIFT(2731), + [6283] = {.count = 1, .reusable = true}, SHIFT(2733), + [6285] = {.count = 1, .reusable = true}, SHIFT(2734), + [6287] = {.count = 1, .reusable = false}, SHIFT(2735), + [6289] = {.count = 1, .reusable = true}, SHIFT(2735), + [6291] = {.count = 1, .reusable = true}, SHIFT(2736), + [6293] = {.count = 1, .reusable = false}, SHIFT(2737), + [6295] = {.count = 1, .reusable = true}, SHIFT(2737), + [6297] = {.count = 1, .reusable = true}, SHIFT(2738), + [6299] = {.count = 1, .reusable = false}, SHIFT(2739), + [6301] = {.count = 1, .reusable = true}, SHIFT(2739), + [6303] = {.count = 1, .reusable = true}, SHIFT(2740), + [6305] = {.count = 1, .reusable = false}, SHIFT(2741), + [6307] = {.count = 1, .reusable = true}, SHIFT(2741), + [6309] = {.count = 1, .reusable = false}, SHIFT(2742), + [6311] = {.count = 1, .reusable = true}, SHIFT(2742), + [6313] = {.count = 1, .reusable = true}, SHIFT(2743), + [6315] = {.count = 1, .reusable = false}, SHIFT(2744), + [6317] = {.count = 1, .reusable = true}, SHIFT(2744), + [6319] = {.count = 1, .reusable = true}, SHIFT(2745), + [6321] = {.count = 1, .reusable = true}, SHIFT(2746), + [6323] = {.count = 1, .reusable = true}, SHIFT(2747), + [6325] = {.count = 1, .reusable = false}, SHIFT(2748), + [6327] = {.count = 1, .reusable = true}, SHIFT(2748), + [6329] = {.count = 1, .reusable = false}, SHIFT(2749), + [6331] = {.count = 1, .reusable = true}, SHIFT(2749), + [6333] = {.count = 1, .reusable = true}, SHIFT(2750), + [6335] = {.count = 1, .reusable = true}, SHIFT(2751), + [6337] = {.count = 1, .reusable = true}, SHIFT(2752), + [6339] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2512), + [6342] = {.count = 1, .reusable = false}, SHIFT(2753), + [6344] = {.count = 1, .reusable = true}, SHIFT(2754), + [6346] = {.count = 1, .reusable = false}, SHIFT(2755), + [6348] = {.count = 1, .reusable = true}, SHIFT(2756), + [6350] = {.count = 1, .reusable = true}, SHIFT(2758), + [6352] = {.count = 1, .reusable = true}, SHIFT(2759), + [6354] = {.count = 1, .reusable = false}, SHIFT(2761), + [6356] = {.count = 1, .reusable = true}, SHIFT(2761), + [6358] = {.count = 1, .reusable = true}, SHIFT(2760), + [6360] = {.count = 1, .reusable = false}, SHIFT(2763), + [6362] = {.count = 1, .reusable = true}, SHIFT(2763), + [6364] = {.count = 1, .reusable = true}, SHIFT(2762), + [6366] = {.count = 1, .reusable = true}, SHIFT(2764), + [6368] = {.count = 1, .reusable = true}, SHIFT(2765), + [6370] = {.count = 1, .reusable = false}, SHIFT(2766), + [6372] = {.count = 1, .reusable = true}, SHIFT(2766), + [6374] = {.count = 1, .reusable = true}, SHIFT(2767), + [6376] = {.count = 1, .reusable = true}, SHIFT(2768), + [6378] = {.count = 1, .reusable = false}, SHIFT(2769), + [6380] = {.count = 1, .reusable = true}, SHIFT(2769), + [6382] = {.count = 1, .reusable = false}, SHIFT(2770), + [6384] = {.count = 1, .reusable = true}, SHIFT(2770), + [6386] = {.count = 1, .reusable = false}, SHIFT(2772), + [6388] = {.count = 1, .reusable = true}, SHIFT(2772), + [6390] = {.count = 1, .reusable = false}, SHIFT(2773), + [6392] = {.count = 1, .reusable = true}, SHIFT(2773), + [6394] = {.count = 1, .reusable = true}, SHIFT(2775), + [6396] = {.count = 1, .reusable = false}, SHIFT(2776), + [6398] = {.count = 1, .reusable = true}, SHIFT(2776), + [6400] = {.count = 1, .reusable = false}, SHIFT(2777), + [6402] = {.count = 1, .reusable = true}, SHIFT(2777), + [6404] = {.count = 1, .reusable = true}, SHIFT(2779), + [6406] = {.count = 1, .reusable = true}, SHIFT(2780), + [6408] = {.count = 1, .reusable = true}, SHIFT(2781), + [6410] = {.count = 1, .reusable = true}, SHIFT(2782), + [6412] = {.count = 1, .reusable = false}, SHIFT(2783), + [6414] = {.count = 1, .reusable = true}, SHIFT(2784), + [6416] = {.count = 1, .reusable = true}, SHIFT(2786), + [6418] = {.count = 1, .reusable = true}, SHIFT(2787), + [6420] = {.count = 1, .reusable = false}, SHIFT(2788), + [6422] = {.count = 1, .reusable = true}, SHIFT(2788), + [6424] = {.count = 1, .reusable = true}, SHIFT(2789), + [6426] = {.count = 1, .reusable = false}, SHIFT(2790), + [6428] = {.count = 1, .reusable = true}, SHIFT(2790), + [6430] = {.count = 1, .reusable = true}, SHIFT(2791), + [6432] = {.count = 1, .reusable = false}, SHIFT(2792), + [6434] = {.count = 1, .reusable = true}, SHIFT(2792), + [6436] = {.count = 1, .reusable = true}, SHIFT(2793), + [6438] = {.count = 1, .reusable = false}, SHIFT(2794), + [6440] = {.count = 1, .reusable = true}, SHIFT(2794), + [6442] = {.count = 1, .reusable = false}, SHIFT(2795), + [6444] = {.count = 1, .reusable = true}, SHIFT(2795), + [6446] = {.count = 1, .reusable = true}, SHIFT(2796), + [6448] = {.count = 1, .reusable = false}, SHIFT(2797), + [6450] = {.count = 1, .reusable = true}, SHIFT(2797), + [6452] = {.count = 1, .reusable = true}, SHIFT(2798), + [6454] = {.count = 1, .reusable = true}, SHIFT(2799), + [6456] = {.count = 1, .reusable = true}, SHIFT(2800), + [6458] = {.count = 1, .reusable = false}, SHIFT(2801), + [6460] = {.count = 1, .reusable = true}, SHIFT(2801), + [6462] = {.count = 1, .reusable = false}, SHIFT(2802), + [6464] = {.count = 1, .reusable = true}, SHIFT(2802), + [6466] = {.count = 1, .reusable = true}, SHIFT(2803), + [6468] = {.count = 1, .reusable = true}, SHIFT(2804), + [6470] = {.count = 1, .reusable = true}, SHIFT(2805), + [6472] = {.count = 1, .reusable = true}, SHIFT(2806), + [6474] = {.count = 1, .reusable = true}, SHIFT(2807), + [6476] = {.count = 1, .reusable = true}, SHIFT(2808), + [6478] = {.count = 1, .reusable = false}, SHIFT(2809), + [6480] = {.count = 1, .reusable = true}, SHIFT(2809), + [6482] = {.count = 1, .reusable = false}, SHIFT(2810), + [6484] = {.count = 1, .reusable = true}, SHIFT(2810), + [6486] = {.count = 1, .reusable = true}, SHIFT(2811), + [6488] = {.count = 1, .reusable = true}, SHIFT(2812), + [6490] = {.count = 1, .reusable = true}, SHIFT(2813), + [6492] = {.count = 1, .reusable = true}, SHIFT(2814), + [6494] = {.count = 1, .reusable = true}, SHIFT(2815), + [6496] = {.count = 1, .reusable = true}, SHIFT(2816), + [6498] = {.count = 1, .reusable = true}, SHIFT(2817), + [6500] = {.count = 1, .reusable = false}, SHIFT(2818), + [6502] = {.count = 1, .reusable = true}, SHIFT(2819), + [6504] = {.count = 1, .reusable = true}, SHIFT(2821), + [6506] = {.count = 1, .reusable = true}, SHIFT(2822), + [6508] = {.count = 1, .reusable = false}, SHIFT(2823), + [6510] = {.count = 1, .reusable = true}, SHIFT(2823), + [6512] = {.count = 1, .reusable = true}, SHIFT(2824), + [6514] = {.count = 1, .reusable = false}, SHIFT(2825), + [6516] = {.count = 1, .reusable = true}, SHIFT(2825), + [6518] = {.count = 1, .reusable = true}, SHIFT(2826), + [6520] = {.count = 1, .reusable = false}, SHIFT(2827), + [6522] = {.count = 1, .reusable = true}, SHIFT(2827), + [6524] = {.count = 1, .reusable = true}, SHIFT(2828), + [6526] = {.count = 1, .reusable = false}, SHIFT(2829), + [6528] = {.count = 1, .reusable = true}, SHIFT(2829), + [6530] = {.count = 1, .reusable = false}, SHIFT(2830), + [6532] = {.count = 1, .reusable = true}, SHIFT(2830), + [6534] = {.count = 1, .reusable = true}, SHIFT(2831), + [6536] = {.count = 1, .reusable = false}, SHIFT(2832), + [6538] = {.count = 1, .reusable = true}, SHIFT(2832), + [6540] = {.count = 1, .reusable = true}, SHIFT(2833), + [6542] = {.count = 1, .reusable = true}, SHIFT(2834), + [6544] = {.count = 1, .reusable = true}, SHIFT(2835), + [6546] = {.count = 1, .reusable = false}, SHIFT(2836), + [6548] = {.count = 1, .reusable = true}, SHIFT(2836), + [6550] = {.count = 1, .reusable = false}, SHIFT(2837), + [6552] = {.count = 1, .reusable = true}, SHIFT(2837), + [6554] = {.count = 1, .reusable = true}, SHIFT(2838), + [6556] = {.count = 1, .reusable = true}, SHIFT(2839), + [6558] = {.count = 1, .reusable = true}, SHIFT(2840), + [6560] = {.count = 1, .reusable = true}, SHIFT(2841), + [6562] = {.count = 1, .reusable = true}, SHIFT(2842), + [6564] = {.count = 1, .reusable = true}, SHIFT(2843), + [6566] = {.count = 1, .reusable = true}, SHIFT(2844), + [6568] = {.count = 1, .reusable = true}, SHIFT(2845), + [6570] = {.count = 1, .reusable = true}, SHIFT(2846), + [6572] = {.count = 1, .reusable = true}, SHIFT(2847), + [6574] = {.count = 1, .reusable = false}, SHIFT(2848), + [6576] = {.count = 1, .reusable = true}, SHIFT(2848), + [6578] = {.count = 1, .reusable = false}, SHIFT(2849), + [6580] = {.count = 1, .reusable = true}, SHIFT(2849), + [6582] = {.count = 1, .reusable = true}, SHIFT(2850), + [6584] = {.count = 1, .reusable = true}, SHIFT(2851), + [6586] = {.count = 1, .reusable = true}, SHIFT(2852), + [6588] = {.count = 1, .reusable = true}, SHIFT(2853), + [6590] = {.count = 1, .reusable = true}, SHIFT(2854), + [6592] = {.count = 1, .reusable = true}, SHIFT(2855), + [6594] = {.count = 1, .reusable = true}, SHIFT(2856), }; void *tree_sitter_bash_external_scanner_create();